Searched refs:arrayID (Results 1 – 4 of 4) sorted by relevance
/third_party/skia/src/gpu/gl/ |
D | GrGLGpu.h | 635 void setVertexArrayID(GrGLGpu* gpu, GrGLuint arrayID) { in setVertexArrayID() argument 637 SkASSERT(0 == arrayID); in setVertexArrayID() 640 if (!fBoundVertexArrayIDIsValid || arrayID != fBoundVertexArrayID) { in setVertexArrayID() 641 GR_GL_CALL(gpu->glInterface(), BindVertexArray(arrayID)); in setVertexArrayID() 643 fBoundVertexArrayID = arrayID; in setVertexArrayID()
|
D | GrGLVertexArray.h | 117 GrGLuint arrayID() const { return fID; } in arrayID() function
|
D | GrGLGpu.cpp | 3928 GrGLuint arrayID; in bindInternalVertexArray() local 3929 GR_GL_CALL(gpu->glInterface(), GenVertexArrays(1, &arrayID)); in bindInternalVertexArray() 3931 fCoreProfileVertexArray = new GrGLVertexArray(arrayID, attrCount); in bindInternalVertexArray()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
D | svga_tgsi_vgpu10.c | 532 unsigned arrayID, unsigned first, unsigned count, 4877 const unsigned arrayID = MIN2(decl->Array.ArrayID, MAX_TEMP_ARRAYS); in emit_vgpu10_declaration() local 4878 assert(arrayID < ARRAY_SIZE(emit->temp_arrays)); in emit_vgpu10_declaration() 4881 create_temp_array(emit, arrayID, decl->Range.First, in emit_vgpu10_declaration() 5565 unsigned arrayID, unsigned first, unsigned count, in create_temp_array() argument 5570 emit->num_temp_arrays = MAX2(emit->num_temp_arrays, arrayID + 1); in create_temp_array() 5574 emit->temp_arrays[arrayID].start = first; in create_temp_array() 5575 emit->temp_arrays[arrayID].size = count; in create_temp_array() 5579 emit->temp_map[tempIndex].arrayId = arrayID; in create_temp_array() 5741 unsigned arrayID = in emit_temporaries_declaration() local [all …]
|