Home
last modified time | relevance | path

Searched refs:kMaxVertexAttributes (Results 1 – 5 of 5) sorted by relevance

/hardware/google/gfxstream/host/apigen-codec-common/
DGLDecoderContextData.h69 static const int kMaxVertexAttributes = 16;
71 std::array<std::vector<char>, kMaxVertexAttributes> mPointerData = {};
/hardware/google/gfxstream/host/gl/glestranslator/GLES_V2/
DGLESv2Context.cpp223 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()
DGLESv2Imp.cpp2226 *params = kMaxVertexAttributes; in s_glStateQueryTv()
/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/
DGLEScontext.cpp74 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()
/hardware/google/gfxstream/host/gl/glestranslator/include/GLcommon/
DGLEScontext.h35 static constexpr int kMaxVertexAttributes = 16; variable