blob: 4646adc00454a5e4704c4d26f6507cdaaf1c17e9 [file] [log] [blame]
bsalomon@google.com6918d482013-03-07 19:09:11 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "GrGLVertexArray.h"
cdaltone2e71c22016-04-07 18:13:29 -07009#include "GrGLBuffer.h"
jvanverth39edf762014-12-22 11:44:19 -080010#include "GrGLGpu.h"
bsalomon@google.com6918d482013-03-07 19:09:11 +000011
cdalton793dc262016-02-08 10:11:47 -080012struct AttribLayout {
csmartdaltonb37cb232017-02-08 14:56:27 -050013 bool fNormalized; // Only used by floating point types.
14 uint8_t fCount;
15 uint16_t fType;
cdalton793dc262016-02-08 10:11:47 -080016};
bsalomon@google.com6918d482013-03-07 19:09:11 +000017
csmartdaltonb37cb232017-02-08 14:56:27 -050018GR_STATIC_ASSERT(4 == sizeof(AttribLayout));
cdalton793dc262016-02-08 10:11:47 -080019
csmartdaltonb37cb232017-02-08 14:56:27 -050020static AttribLayout attrib_layout(GrVertexAttribType type) {
21 switch (type) {
22 case kFloat_GrVertexAttribType:
23 return {false, 1, GR_GL_FLOAT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040024 case kFloat2_GrVertexAttribType:
csmartdaltonb37cb232017-02-08 14:56:27 -050025 return {false, 2, GR_GL_FLOAT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040026 case kFloat3_GrVertexAttribType:
csmartdaltonb37cb232017-02-08 14:56:27 -050027 return {false, 3, GR_GL_FLOAT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040028 case kFloat4_GrVertexAttribType:
csmartdaltonb37cb232017-02-08 14:56:27 -050029 return {false, 4, GR_GL_FLOAT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040030 case kHalf_GrVertexAttribType:
Brian Osmand4c29702018-09-14 16:16:55 -040031 return {false, 1, GR_GL_HALF_FLOAT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040032 case kHalf2_GrVertexAttribType:
Brian Osmand4c29702018-09-14 16:16:55 -040033 return {false, 2, GR_GL_HALF_FLOAT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040034 case kHalf3_GrVertexAttribType:
Brian Osmand4c29702018-09-14 16:16:55 -040035 return {false, 3, GR_GL_HALF_FLOAT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040036 case kHalf4_GrVertexAttribType:
Brian Osmand4c29702018-09-14 16:16:55 -040037 return {false, 4, GR_GL_HALF_FLOAT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040038 case kInt2_GrVertexAttribType:
csmartdaltonb37cb232017-02-08 14:56:27 -050039 return {false, 2, GR_GL_INT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040040 case kInt3_GrVertexAttribType:
csmartdaltonb37cb232017-02-08 14:56:27 -050041 return {false, 3, GR_GL_INT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040042 case kInt4_GrVertexAttribType:
csmartdaltonb37cb232017-02-08 14:56:27 -050043 return {false, 4, GR_GL_INT};
Ruiqi Maob609e6d2018-07-17 10:19:38 -040044 case kByte_GrVertexAttribType:
45 return {false, 1, GR_GL_BYTE};
46 case kByte2_GrVertexAttribType:
47 return {false, 2, GR_GL_BYTE};
48 case kByte3_GrVertexAttribType:
49 return {false, 3, GR_GL_BYTE};
50 case kByte4_GrVertexAttribType:
51 return {false, 4, GR_GL_BYTE};
52 case kUByte_GrVertexAttribType:
53 return {false, 1, GR_GL_UNSIGNED_BYTE};
54 case kUByte2_GrVertexAttribType:
55 return {false, 2, GR_GL_UNSIGNED_BYTE};
56 case kUByte3_GrVertexAttribType:
57 return {false, 3, GR_GL_UNSIGNED_BYTE};
58 case kUByte4_GrVertexAttribType:
59 return {false, 4, GR_GL_UNSIGNED_BYTE};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040060 case kUByte_norm_GrVertexAttribType:
csmartdaltonb37cb232017-02-08 14:56:27 -050061 return {true, 1, GR_GL_UNSIGNED_BYTE};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040062 case kUByte4_norm_GrVertexAttribType:
csmartdaltonb37cb232017-02-08 14:56:27 -050063 return {true, 4, GR_GL_UNSIGNED_BYTE};
Chris Daltona045eea2017-10-24 13:22:10 -060064 case kShort2_GrVertexAttribType:
65 return {false, 2, GR_GL_SHORT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040066 case kUShort2_GrVertexAttribType:
Robert Phillips8296e752017-08-25 08:45:21 -040067 return {false, 2, GR_GL_UNSIGNED_SHORT};
Chris Daltona045eea2017-10-24 13:22:10 -060068 case kUShort2_norm_GrVertexAttribType:
69 return {true, 2, GR_GL_UNSIGNED_SHORT};
csmartdaltonb37cb232017-02-08 14:56:27 -050070 case kInt_GrVertexAttribType:
71 return {false, 1, GR_GL_INT};
72 case kUint_GrVertexAttribType:
73 return {false, 1, GR_GL_UNSIGNED_INT};
74 }
Ben Wagnerb4aab9a2017-08-16 10:53:04 -040075 SK_ABORT("Unknown vertex attrib type");
csmartdaltonb37cb232017-02-08 14:56:27 -050076 return {false, 0, 0};
77};
bsalomon6df86402015-06-01 10:41:49 -070078
79void GrGLAttribArrayState::set(GrGLGpu* gpu,
bsalomon@google.com6918d482013-03-07 19:09:11 +000080 int index,
csmartdalton485a1202016-07-13 10:16:32 -070081 const GrBuffer* vertexBuffer,
Brian Osman4a3f5c82018-09-18 16:16:38 -040082 GrVertexAttribType cpuType,
83 GrSLType gpuType,
bsalomon@google.com6918d482013-03-07 19:09:11 +000084 GrGLsizei stride,
Chris Dalton1d616352017-05-31 12:51:23 -060085 size_t offsetInBytes,
86 int divisor) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000087 SkASSERT(index >= 0 && index < fAttribArrayStates.count());
Chris Dalton1d616352017-05-31 12:51:23 -060088 SkASSERT(0 == divisor || gpu->caps()->instanceAttribSupport());
bsalomon@google.com6918d482013-03-07 19:09:11 +000089 AttribArrayState* array = &fAttribArrayStates[index];
robertphillips8abb3702016-08-31 14:04:06 -070090 if (array->fVertexBufferUniqueID != vertexBuffer->uniqueID() ||
Brian Osman4a3f5c82018-09-18 16:16:38 -040091 array->fCPUType != cpuType ||
92 array->fGPUType != gpuType ||
bsalomon@google.com6918d482013-03-07 19:09:11 +000093 array->fStride != stride ||
Chris Dalton8e45b4f2017-05-05 14:00:56 -040094 array->fOffset != offsetInBytes) {
cdaltone2e71c22016-04-07 18:13:29 -070095 gpu->bindBuffer(kVertex_GrBufferType, vertexBuffer);
Brian Osman4a3f5c82018-09-18 16:16:38 -040096 const AttribLayout& layout = attrib_layout(cpuType);
Chris Dalton8e45b4f2017-05-05 14:00:56 -040097 const GrGLvoid* offsetAsPtr = reinterpret_cast<const GrGLvoid*>(offsetInBytes);
Brian Osman4a3f5c82018-09-18 16:16:38 -040098 if (GrSLTypeIsFloatType(gpuType)) {
cdalton793dc262016-02-08 10:11:47 -080099 GR_GL_CALL(gpu->glInterface(), VertexAttribPointer(index,
100 layout.fCount,
101 layout.fType,
102 layout.fNormalized,
103 stride,
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400104 offsetAsPtr));
cdalton793dc262016-02-08 10:11:47 -0800105 } else {
106 SkASSERT(gpu->caps()->shaderCaps()->integerSupport());
107 SkASSERT(!layout.fNormalized);
108 GR_GL_CALL(gpu->glInterface(), VertexAttribIPointer(index,
109 layout.fCount,
110 layout.fType,
111 stride,
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400112 offsetAsPtr));
cdalton793dc262016-02-08 10:11:47 -0800113 }
robertphillips8abb3702016-08-31 14:04:06 -0700114 array->fVertexBufferUniqueID = vertexBuffer->uniqueID();
Brian Osman4a3f5c82018-09-18 16:16:38 -0400115 array->fCPUType = cpuType;
116 array->fGPUType = gpuType;
dchengc4d196c2016-02-06 15:08:54 -0800117 array->fStride = stride;
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400118 array->fOffset = offsetInBytes;
bsalomon@google.com6918d482013-03-07 19:09:11 +0000119 }
Chris Dalton1d616352017-05-31 12:51:23 -0600120 if (gpu->caps()->instanceAttribSupport() && array->fDivisor != divisor) {
121 SkASSERT(0 == divisor || 1 == divisor); // not necessarily a requirement but what we expect.
122 GR_GL_CALL(gpu->glInterface(), VertexAttribDivisor(index, divisor));
123 array->fDivisor = divisor;
124 }
bsalomon@google.com6918d482013-03-07 19:09:11 +0000125}
126
Chris Dalton27059d32018-01-23 14:06:50 -0700127void GrGLAttribArrayState::enableVertexArrays(const GrGLGpu* gpu, int enabledCount,
Brian Salomon802cb312018-06-08 18:05:20 -0400128 GrPrimitiveRestart enablePrimitiveRestart) {
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400129 SkASSERT(enabledCount <= fAttribArrayStates.count());
Chris Dalton27059d32018-01-23 14:06:50 -0700130
131 if (!fEnableStateIsValid || enabledCount != fNumEnabledArrays) {
132 int firstIdxToEnable = fEnableStateIsValid ? fNumEnabledArrays : 0;
133 for (int i = firstIdxToEnable; i < enabledCount; ++i) {
134 GR_GL_CALL(gpu->glInterface(), EnableVertexAttribArray(i));
135 }
136
137 int endIdxToDisable = fEnableStateIsValid ? fNumEnabledArrays : fAttribArrayStates.count();
138 for (int i = enabledCount; i < endIdxToDisable; ++i) {
139 GR_GL_CALL(gpu->glInterface(), DisableVertexAttribArray(i));
140 }
141
142 fNumEnabledArrays = enabledCount;
Chris Dalton1d616352017-05-31 12:51:23 -0600143 }
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400144
Brian Salomon802cb312018-06-08 18:05:20 -0400145 SkASSERT(GrPrimitiveRestart::kNo == enablePrimitiveRestart ||
Chris Dalton27059d32018-01-23 14:06:50 -0700146 gpu->caps()->usePrimitiveRestart());
147
148 if (gpu->caps()->usePrimitiveRestart() &&
149 (!fEnableStateIsValid || enablePrimitiveRestart != fPrimitiveRestartEnabled)) {
Brian Salomon802cb312018-06-08 18:05:20 -0400150 if (GrPrimitiveRestart::kYes == enablePrimitiveRestart) {
Chris Dalton27059d32018-01-23 14:06:50 -0700151 GR_GL_CALL(gpu->glInterface(), Enable(GR_GL_PRIMITIVE_RESTART_FIXED_INDEX));
152 } else {
153 GR_GL_CALL(gpu->glInterface(), Disable(GR_GL_PRIMITIVE_RESTART_FIXED_INDEX));
154 }
155
156 fPrimitiveRestartEnabled = enablePrimitiveRestart;
bsalomon@google.com6918d482013-03-07 19:09:11 +0000157 }
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400158
Chris Dalton27059d32018-01-23 14:06:50 -0700159 fEnableStateIsValid = true;
bsalomon@google.com6918d482013-03-07 19:09:11 +0000160}
161
162///////////////////////////////////////////////////////////////////////////////////////////////////
163
bsalomon8780bc62015-05-13 09:56:37 -0700164GrGLVertexArray::GrGLVertexArray(GrGLint id, int attribCount)
165 : fID(id)
bsalomon@google.com6918d482013-03-07 19:09:11 +0000166 , fAttribArrays(attribCount)
cdaltone2e71c22016-04-07 18:13:29 -0700167 , fIndexBufferUniqueID(SK_InvalidUniqueID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +0000168}
169
bsalomon8780bc62015-05-13 09:56:37 -0700170GrGLAttribArrayState* GrGLVertexArray::bind(GrGLGpu* gpu) {
bsalomon@google.com6918d482013-03-07 19:09:11 +0000171 if (0 == fID) {
halcanary96fcdcc2015-08-27 07:41:13 -0700172 return nullptr;
bsalomon@google.com6918d482013-03-07 19:09:11 +0000173 }
bsalomon8780bc62015-05-13 09:56:37 -0700174 gpu->bindVertexArray(fID);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000175 return &fAttribArrays;
176}
skia.committer@gmail.com754a3eb2013-03-08 07:01:25 +0000177
csmartdalton485a1202016-07-13 10:16:32 -0700178GrGLAttribArrayState* GrGLVertexArray::bindWithIndexBuffer(GrGLGpu* gpu, const GrBuffer* ibuff) {
bsalomon8780bc62015-05-13 09:56:37 -0700179 GrGLAttribArrayState* state = this->bind(gpu);
robertphillips8abb3702016-08-31 14:04:06 -0700180 if (state && fIndexBufferUniqueID != ibuff->uniqueID()) {
csmartdalton485a1202016-07-13 10:16:32 -0700181 if (ibuff->isCPUBacked()) {
182 GR_GL_CALL(gpu->glInterface(), BindBuffer(GR_GL_ELEMENT_ARRAY_BUFFER, 0));
183 } else {
184 const GrGLBuffer* glBuffer = static_cast<const GrGLBuffer*>(ibuff);
185 GR_GL_CALL(gpu->glInterface(), BindBuffer(GR_GL_ELEMENT_ARRAY_BUFFER,
186 glBuffer->bufferID()));
187 }
robertphillips8abb3702016-08-31 14:04:06 -0700188 fIndexBufferUniqueID = ibuff->uniqueID();
bsalomon@google.com6918d482013-03-07 19:09:11 +0000189 }
190 return state;
191}
192
bsalomon@google.com6918d482013-03-07 19:09:11 +0000193void GrGLVertexArray::invalidateCachedState() {
commit-bot@chromium.orgce6da4d2013-09-09 14:55:37 +0000194 fAttribArrays.invalidate();
Robert Phillips294870f2016-11-11 12:38:40 -0500195 fIndexBufferUniqueID.makeInvalid();
bsalomon@google.com6918d482013-03-07 19:09:11 +0000196}