Searched refs:kMaxVertexAttributes (Results 1 – 5 of 5) sorted by relevance
69 static const int kMaxVertexAttributes = 16;71 std::array<std::vector<char>, kMaxVertexAttributes> mPointerData = {};
223 m_vaoStateMap[array] = VAOState(0, nullptr, kMaxVertexAttributes); in addVertexArrayObject()228 if (index > kMaxVertexAttributes) return; in enableArr()234 if (index > kMaxVertexAttributes) return nullptr; in getPointer()256 for (uint32_t i = 0; i < kMaxVertexAttributes; ++i) { in postLoadRestoreCtx()543 bool needEnablingPostDraw[kMaxVertexAttributes]; in drawWithEmulations()631 for (int i = 0; i < kMaxVertexAttributes; ++i) { in drawWithEmulations()640 for (uint32_t i = 0; i < kMaxVertexAttributes; ++i) { in setupArraysPointers()706 if (attribindex > kMaxVertexAttributes) return; in setVertexAttribBindingIndex()712 if (attribindex > kMaxVertexAttributes) return; in setVertexAttribFormat()
2226 *params = kMaxVertexAttributes; in s_glStateQueryTv()
74 for (uint32_t i = 0; i < kMaxVertexAttributes; ++i) { in VAOState()99 for (uint32_t i = 0; i < kMaxVertexAttributes; ++i) { in onSave()366 for (uint32_t i = 0; i < kMaxVertexAttributes; ++i) { in vertexAttributesBufferBacked()967 if (attribIndex > kMaxVertexAttributes) return nullptr; in setPointer()1003 if ((uint32_t)arr > kMaxVertexAttributes) return false; in isArrEnabled()1801 if (glSupport.maxVertexAttribs > kMaxVertexAttributes) { in initCapsLocked()1802 glSupport.maxVertexAttribs = kMaxVertexAttributes; in initCapsLocked()
35 static constexpr int kMaxVertexAttributes = 16; variable