blob: 6b12a3fa219c8c1fb8048d8ec2958df17cef9c5e [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};
Brian Osmana5c578f2018-09-19 14:19:02 -040066 case kShort4_GrVertexAttribType:
67 return {false, 4, GR_GL_SHORT};
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040068 case kUShort2_GrVertexAttribType:
Robert Phillips8296e752017-08-25 08:45:21 -040069 return {false, 2, GR_GL_UNSIGNED_SHORT};
Chris Daltona045eea2017-10-24 13:22:10 -060070 case kUShort2_norm_GrVertexAttribType:
71 return {true, 2, GR_GL_UNSIGNED_SHORT};
csmartdaltonb37cb232017-02-08 14:56:27 -050072 case kInt_GrVertexAttribType:
73 return {false, 1, GR_GL_INT};
74 case kUint_GrVertexAttribType:
75 return {false, 1, GR_GL_UNSIGNED_INT};
76 }
Ben Wagnerb4aab9a2017-08-16 10:53:04 -040077 SK_ABORT("Unknown vertex attrib type");
csmartdaltonb37cb232017-02-08 14:56:27 -050078 return {false, 0, 0};
79};
bsalomon6df86402015-06-01 10:41:49 -070080
81void GrGLAttribArrayState::set(GrGLGpu* gpu,
bsalomon@google.com6918d482013-03-07 19:09:11 +000082 int index,
csmartdalton485a1202016-07-13 10:16:32 -070083 const GrBuffer* vertexBuffer,
Brian Osman4a3f5c82018-09-18 16:16:38 -040084 GrVertexAttribType cpuType,
85 GrSLType gpuType,
bsalomon@google.com6918d482013-03-07 19:09:11 +000086 GrGLsizei stride,
Chris Dalton1d616352017-05-31 12:51:23 -060087 size_t offsetInBytes,
88 int divisor) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000089 SkASSERT(index >= 0 && index < fAttribArrayStates.count());
Chris Dalton1d616352017-05-31 12:51:23 -060090 SkASSERT(0 == divisor || gpu->caps()->instanceAttribSupport());
bsalomon@google.com6918d482013-03-07 19:09:11 +000091 AttribArrayState* array = &fAttribArrayStates[index];
robertphillips8abb3702016-08-31 14:04:06 -070092 if (array->fVertexBufferUniqueID != vertexBuffer->uniqueID() ||
Brian Osman4a3f5c82018-09-18 16:16:38 -040093 array->fCPUType != cpuType ||
94 array->fGPUType != gpuType ||
bsalomon@google.com6918d482013-03-07 19:09:11 +000095 array->fStride != stride ||
Chris Dalton8e45b4f2017-05-05 14:00:56 -040096 array->fOffset != offsetInBytes) {
Brian Salomonae64c192019-02-05 09:41:37 -050097 gpu->bindBuffer(GrGpuBufferType::kVertex, vertexBuffer);
Brian Osman4a3f5c82018-09-18 16:16:38 -040098 const AttribLayout& layout = attrib_layout(cpuType);
Chris Dalton8e45b4f2017-05-05 14:00:56 -040099 const GrGLvoid* offsetAsPtr = reinterpret_cast<const GrGLvoid*>(offsetInBytes);
Brian Osman4a3f5c82018-09-18 16:16:38 -0400100 if (GrSLTypeIsFloatType(gpuType)) {
cdalton793dc262016-02-08 10:11:47 -0800101 GR_GL_CALL(gpu->glInterface(), VertexAttribPointer(index,
102 layout.fCount,
103 layout.fType,
104 layout.fNormalized,
105 stride,
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400106 offsetAsPtr));
cdalton793dc262016-02-08 10:11:47 -0800107 } else {
108 SkASSERT(gpu->caps()->shaderCaps()->integerSupport());
109 SkASSERT(!layout.fNormalized);
110 GR_GL_CALL(gpu->glInterface(), VertexAttribIPointer(index,
111 layout.fCount,
112 layout.fType,
113 stride,
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400114 offsetAsPtr));
cdalton793dc262016-02-08 10:11:47 -0800115 }
robertphillips8abb3702016-08-31 14:04:06 -0700116 array->fVertexBufferUniqueID = vertexBuffer->uniqueID();
Brian Osman4a3f5c82018-09-18 16:16:38 -0400117 array->fCPUType = cpuType;
118 array->fGPUType = gpuType;
dchengc4d196c2016-02-06 15:08:54 -0800119 array->fStride = stride;
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400120 array->fOffset = offsetInBytes;
bsalomon@google.com6918d482013-03-07 19:09:11 +0000121 }
Chris Dalton1d616352017-05-31 12:51:23 -0600122 if (gpu->caps()->instanceAttribSupport() && array->fDivisor != divisor) {
123 SkASSERT(0 == divisor || 1 == divisor); // not necessarily a requirement but what we expect.
124 GR_GL_CALL(gpu->glInterface(), VertexAttribDivisor(index, divisor));
125 array->fDivisor = divisor;
126 }
bsalomon@google.com6918d482013-03-07 19:09:11 +0000127}
128
Chris Dalton27059d32018-01-23 14:06:50 -0700129void GrGLAttribArrayState::enableVertexArrays(const GrGLGpu* gpu, int enabledCount,
Brian Salomon802cb312018-06-08 18:05:20 -0400130 GrPrimitiveRestart enablePrimitiveRestart) {
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400131 SkASSERT(enabledCount <= fAttribArrayStates.count());
Chris Dalton27059d32018-01-23 14:06:50 -0700132
133 if (!fEnableStateIsValid || enabledCount != fNumEnabledArrays) {
134 int firstIdxToEnable = fEnableStateIsValid ? fNumEnabledArrays : 0;
135 for (int i = firstIdxToEnable; i < enabledCount; ++i) {
136 GR_GL_CALL(gpu->glInterface(), EnableVertexAttribArray(i));
137 }
138
139 int endIdxToDisable = fEnableStateIsValid ? fNumEnabledArrays : fAttribArrayStates.count();
140 for (int i = enabledCount; i < endIdxToDisable; ++i) {
141 GR_GL_CALL(gpu->glInterface(), DisableVertexAttribArray(i));
142 }
143
144 fNumEnabledArrays = enabledCount;
Chris Dalton1d616352017-05-31 12:51:23 -0600145 }
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400146
Brian Salomon802cb312018-06-08 18:05:20 -0400147 SkASSERT(GrPrimitiveRestart::kNo == enablePrimitiveRestart ||
Chris Dalton27059d32018-01-23 14:06:50 -0700148 gpu->caps()->usePrimitiveRestart());
149
150 if (gpu->caps()->usePrimitiveRestart() &&
151 (!fEnableStateIsValid || enablePrimitiveRestart != fPrimitiveRestartEnabled)) {
Brian Salomon802cb312018-06-08 18:05:20 -0400152 if (GrPrimitiveRestart::kYes == enablePrimitiveRestart) {
Chris Dalton27059d32018-01-23 14:06:50 -0700153 GR_GL_CALL(gpu->glInterface(), Enable(GR_GL_PRIMITIVE_RESTART_FIXED_INDEX));
154 } else {
155 GR_GL_CALL(gpu->glInterface(), Disable(GR_GL_PRIMITIVE_RESTART_FIXED_INDEX));
156 }
157
158 fPrimitiveRestartEnabled = enablePrimitiveRestart;
bsalomon@google.com6918d482013-03-07 19:09:11 +0000159 }
Chris Dalton8e45b4f2017-05-05 14:00:56 -0400160
Chris Dalton27059d32018-01-23 14:06:50 -0700161 fEnableStateIsValid = true;
bsalomon@google.com6918d482013-03-07 19:09:11 +0000162}
163
164///////////////////////////////////////////////////////////////////////////////////////////////////
165
bsalomon8780bc62015-05-13 09:56:37 -0700166GrGLVertexArray::GrGLVertexArray(GrGLint id, int attribCount)
167 : fID(id)
bsalomon@google.com6918d482013-03-07 19:09:11 +0000168 , fAttribArrays(attribCount)
cdaltone2e71c22016-04-07 18:13:29 -0700169 , fIndexBufferUniqueID(SK_InvalidUniqueID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +0000170}
171
bsalomon8780bc62015-05-13 09:56:37 -0700172GrGLAttribArrayState* GrGLVertexArray::bind(GrGLGpu* gpu) {
bsalomon@google.com6918d482013-03-07 19:09:11 +0000173 if (0 == fID) {
halcanary96fcdcc2015-08-27 07:41:13 -0700174 return nullptr;
bsalomon@google.com6918d482013-03-07 19:09:11 +0000175 }
bsalomon8780bc62015-05-13 09:56:37 -0700176 gpu->bindVertexArray(fID);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000177 return &fAttribArrays;
178}
skia.committer@gmail.com754a3eb2013-03-08 07:01:25 +0000179
csmartdalton485a1202016-07-13 10:16:32 -0700180GrGLAttribArrayState* GrGLVertexArray::bindWithIndexBuffer(GrGLGpu* gpu, const GrBuffer* ibuff) {
bsalomon8780bc62015-05-13 09:56:37 -0700181 GrGLAttribArrayState* state = this->bind(gpu);
robertphillips8abb3702016-08-31 14:04:06 -0700182 if (state && fIndexBufferUniqueID != ibuff->uniqueID()) {
csmartdalton485a1202016-07-13 10:16:32 -0700183 if (ibuff->isCPUBacked()) {
184 GR_GL_CALL(gpu->glInterface(), BindBuffer(GR_GL_ELEMENT_ARRAY_BUFFER, 0));
185 } else {
186 const GrGLBuffer* glBuffer = static_cast<const GrGLBuffer*>(ibuff);
187 GR_GL_CALL(gpu->glInterface(), BindBuffer(GR_GL_ELEMENT_ARRAY_BUFFER,
188 glBuffer->bufferID()));
189 }
robertphillips8abb3702016-08-31 14:04:06 -0700190 fIndexBufferUniqueID = ibuff->uniqueID();
bsalomon@google.com6918d482013-03-07 19:09:11 +0000191 }
192 return state;
193}
194
bsalomon@google.com6918d482013-03-07 19:09:11 +0000195void GrGLVertexArray::invalidateCachedState() {
commit-bot@chromium.orgce6da4d2013-09-09 14:55:37 +0000196 fAttribArrays.invalidate();
Robert Phillips294870f2016-11-11 12:38:40 -0500197 fIndexBufferUniqueID.makeInvalid();
bsalomon@google.com6918d482013-03-07 19:09:11 +0000198}