HomeSort by relevance Sort by last modified time
    Searched refs:ArrayObj (Results 1 - 18 of 18) sorted by null

  /art/test/081-hot-exceptions/src/
Main.java 18 static class ArrayObj {
27 ArrayObj arrayObj2 = new ArrayObj();
  /external/mesa3d/src/mesa/main/
api_validate.c 117 if (ctx->Array.ArrayObj->_Enabled == 0x0 || !ctx->VertexProgram._Current)
126 if (!ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_POS].Enabled)
149 return (ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_POS].Enabled ||
150 ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC0].Enabled);
189 ib.obj = ctx->Array.ArrayObj->ElementArrayBufferObj;
194 max + basevertex >= ctx->Array.ArrayObj->_MaxElement) {
197 max, ctx->Array.ArrayObj->_MaxElement);
342 if (_mesa_is_bufferobj(ctx->Array.ArrayObj->ElementArrayBufferObj)) {
345 if (index_bytes(type, count) > ctx->Array.ArrayObj->ElementArrayBufferObj->Size) {
399 if (_mesa_is_bufferobj(ctx->Array.ArrayObj->ElementArrayBufferObj))
    [all...]
getstring.c 217 *params = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_POS].Ptr;
222 *params = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_NORMAL].Ptr;
227 *params = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_COLOR0].Ptr;
232 *params = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_COLOR1].Ptr;
237 *params = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_FOG].Ptr;
242 *params = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_COLOR_INDEX].Ptr;
247 *params = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_TEX(clientUnit)].Ptr;
252 *params = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_EDGEFLAG].Ptr;
268 *params = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_POINT_SIZE].Ptr;
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...]
attrib.c 29 #include "arrayobj.h"
    [all...]
arrayobj.c 30 * \file arrayobj.c
49 #include "arrayobj.h"
125 * Set ptr to arrayObj w/ reference counting.
132 struct gl_array_object *arrayObj)
134 assert(*ptr != arrayObj);
145 printf("ArrayObj %p %d DECR to %d\n",
160 if (arrayObj) {
162 _glthread_LOCK_MUTEX(arrayObj->Mutex);
163 if (arrayObj->RefCount == 0) {
170 arrayObj->RefCount++
    [all...]
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...]
nvprogram.c 368 array = &ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC(index)];
412 array = &ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC(index)];
456 array = &ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC(index)];
511 *pointer = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC(index)].Ptr;
state.c 36 #include "arrayobj.h"
561 _mesa_update_array_object_max_element(ctx, ctx->Array.ArrayObj);
578 ctx->Array.ArrayObj->NewArrays = 0x0;
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...]
get.c     [all...]
context.c 84 #include "arrayobj.h"
    [all...]
api_arrayelt.c     [all...]
ffvertex_prog.c 233 if (ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_POINT_SIZE].Enabled)
    [all...]
mtypes.h     [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...]
vbo_save_api.c     [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c 38 #include "main/arrayobj.h"
165 struct gl_array_object *ArrayObj;
223 GLuint ArrayObj;
234 GLuint ArrayObj;
249 GLuint ArrayObj;
259 GLuint ArrayObj;
271 GLuint ArrayObj;
292 GLuint ArrayObj;
310 GLuint ArrayObj;
320 GLuint ArrayObj;
    [all...]

Completed in 410 milliseconds