HomeSort by relevance Sort by last modified time
    Searched defs:arrayObj (Results 1 - 6 of 6) sorted by null

  /external/mesa3d/src/mesa/main/
enable.c 57 struct gl_array_object *arrayObj = ctx->Array.ArrayObj;
63 var = &arrayObj->VertexAttrib[VERT_ATTRIB_POS].Enabled;
67 var = &arrayObj->VertexAttrib[VERT_ATTRIB_NORMAL].Enabled;
71 var = &arrayObj->VertexAttrib[VERT_ATTRIB_COLOR0].Enabled;
75 var = &arrayObj->VertexAttrib[VERT_ATTRIB_COLOR_INDEX].Enabled;
79 var = &arrayObj->VertexAttrib[VERT_ATTRIB_TEX(ctx->Array.ActiveTexture)].Enabled;
83 var = &arrayObj->VertexAttrib[VERT_ATTRIB_EDGEFLAG].Enabled;
87 var = &arrayObj->VertexAttrib[VERT_ATTRIB_FOG].Enabled;
91 var = &arrayObj->VertexAttrib[VERT_ATTRIB_COLOR1].Enabled
    [all...]
bufferobj.c 81 return &ctx->Array.ArrayObj->ElementArrayBufferObj;
311 ASSERT(ctx->Array.ArrayObj->ElementArrayBufferObj != bufObj);
312 ASSERT(ctx->Array.ArrayObj->Vertex.BufferObj != bufObj);
862 struct gl_array_object *arrayObj = ctx->Array.ArrayObj;
875 for (j = 0; j < Elements(arrayObj->VertexAttrib); j++) {
876 unbind(ctx, &arrayObj->VertexAttrib[j].BufferObj, bufObj);
882 if (arrayObj->ElementArrayBufferObj == bufObj) {
    [all...]
varray.c 39 #include "arrayobj.h"
147 && (ctx->Array.ArrayObj == ctx->Array.DefaultArrayObj)) {
248 if (ptr != NULL && ctx->Array.ArrayObj->ARBsemantics &&
256 array = &ctx->Array.ArrayObj->VertexAttrib[attrib];
271 ctx->Array.ArrayObj->NewArrays |= VERT_BIT(attrib);
534 struct gl_array_object *arrayObj;
544 arrayObj = ctx->Array.ArrayObj;
546 ASSERT(VERT_ATTRIB_GENERIC(index) < Elements(arrayObj->VertexAttrib));
548 if (!arrayObj->VertexAttrib[VERT_ATTRIB_GENERIC(index)].Enabled)
    [all...]
api_arrayelt.c     [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_exec_array.c 289 struct gl_array_object *arrayObj = ctx->Array.ArrayObj;
293 if (_mesa_is_bufferobj(ctx->Array.ArrayObj->ElementArrayBufferObj)) {
295 ctx->Array.ArrayObj->ElementArrayBufferObj->Size,
297 ctx->Array.ArrayObj->ElementArrayBufferObj);
320 for (k = 0; k < Elements(arrayObj->VertexAttrib); k++) {
321 check_array_data(ctx, &arrayObj->VertexAttrib[k], k, j);
325 if (_mesa_is_bufferobj(arrayObj->ElementArrayBufferObj)) {
326 ctx->Driver.UnmapBuffer(ctx, ctx->Array.ArrayObj->ElementArrayBufferObj);
329 for (k = 0; k < Elements(arrayObj->VertexAttrib); k++)
    [all...]
  /frameworks/base/core/jni/android/graphics/
Graphics.cpp 503 jbyteArray arrayObj = (jbyteArray) env->CallObjectMethod(gVMRuntime,
509 SkASSERT(arrayObj);
510 jbyte* addr = (jbyte*) env->CallLongMethod(gVMRuntime, gVMRuntime_addressOf, arrayObj);
515 android::Bitmap* wrapper = new android::Bitmap(env, arrayObj, (void*) addr,

Completed in 525 milliseconds