| /xsrc/external/mit/xf86-video-openchrome/dist/src/ |
| via_memmgr.c | 55 viaOffScreenLinear(struct buffer_object *obj, ScrnInfoPtr pScrn, 66 obj->offset = linear->offset * depth; 67 obj->handle = (unsigned long) linear; 68 obj->domain = TTM_PL_FLAG_VRAM; 69 obj->size = size; 77 struct buffer_object *obj = NULL; local 101 obj = drm_bo_alloc(pScrn, pitch * height, alignment, domain); 102 if (!obj->pitch) 103 obj->pitch = pitch; 104 return obj; 110 struct buffer_object *obj = NULL; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| st_cb_memoryobjects.h | 43 st_memory_object(struct gl_memory_object *obj) 45 return (struct st_memory_object *)obj;
|
| st_cb_semaphoreobjects.h | 40 st_semaphore_object(struct gl_semaphore_object *obj) 42 return (struct st_semaphore_object *)obj;
|
| st_cb_xformfb.h | 40 st_transform_feedback_draw_init(struct gl_transform_feedback_object *obj,
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| st_cb_memoryobjects.h | 40 st_memory_object(struct gl_memory_object *obj) 42 return (struct st_memory_object *)obj;
|
| st_cb_semaphoreobjects.h | 40 st_semaphore_object(struct gl_semaphore_object *obj) 42 return (struct st_semaphore_object *)obj;
|
| st_cb_xformfb.h | 40 st_transform_feedback_draw_init(struct gl_transform_feedback_object *obj,
|
| st_cb_bufferobjects.h | 52 st_buffer_object(struct gl_buffer_object *obj) 54 return (struct st_buffer_object *) obj;
|
| /xsrc/external/mit/mesa-demos/dist/src/tests/ |
| bufferobj.c | 54 static void DrawObject( const struct object *obj ) 56 if (Have_ARB_vertex_array_object && obj->ArrayObjectID) { 57 glBindVertexArray(obj->ArrayObjectID); 59 if (obj->NumElements > 0) { 61 glBindBufferARB(GL_ELEMENT_ARRAY_BUFFER_ARB, obj->ElementsBufferID); 62 glDrawRangeElements(GL_LINE_LOOP, 0, obj->MaxElement, 63 obj->NumElements, GL_UNSIGNED_INT, NULL); 68 glDrawArrays(GL_LINE_LOOP, 0, obj->NumVerts); 76 glBindBufferARB(GL_ARRAY_BUFFER_ARB, obj->VertexBufferID); 77 glVertexPointer(3, GL_FLOAT, obj->VertexStride, (const void *) (size_t) obj->VertexOffset) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/ |
| radeon_buffer_objects.c | 36 get_radeon_buffer_object(struct gl_buffer_object *obj) 38 return (struct radeon_buffer_object *) obj; 45 struct radeon_buffer_object *obj = CALLOC_STRUCT(radeon_buffer_object); local 47 _mesa_initialize_buffer_object(ctx, &obj->Base, name); 49 obj->bo = NULL; 51 return &obj->Base; 59 struct gl_buffer_object *obj) 61 struct radeon_buffer_object *radeon_obj = get_radeon_buffer_object(obj); 65 if (obj->Mappings[i].Pointer) { 74 _mesa_delete_buffer_object(ctx, obj); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/ |
| radeon_buffer_objects.c | 36 get_radeon_buffer_object(struct gl_buffer_object *obj) 38 return (struct radeon_buffer_object *) obj; 45 struct radeon_buffer_object *obj = CALLOC_STRUCT(radeon_buffer_object); local 47 _mesa_initialize_buffer_object(ctx, &obj->Base, name); 49 obj->bo = NULL; 51 return &obj->Base; 59 struct gl_buffer_object *obj) 61 struct radeon_buffer_object *radeon_obj = get_radeon_buffer_object(obj); 65 if (obj->Mappings[i].Pointer) { 74 _mesa_delete_buffer_object(ctx, obj); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/ |
| nouveau_bufferobj.c | 35 get_bufferobj_map(struct gl_context *ctx, struct gl_buffer_object *obj, 38 struct nouveau_bufferobj *nbo = to_nouveau_bufferobj(obj); 66 nouveau_bufferobj_del(struct gl_context *ctx, struct gl_buffer_object *obj) 68 struct nouveau_bufferobj *nbo = to_nouveau_bufferobj(obj); 78 struct gl_buffer_object *obj) 80 struct nouveau_bufferobj *nbo = to_nouveau_bufferobj(obj); 83 obj->Size = size; 84 obj->Usage = usage; 85 obj->StorageFlags = storageFlags; 108 memcpy(get_bufferobj_map(ctx, obj, NOUVEAU_BO_WR), data, size) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/ |
| nouveau_bufferobj.c | 34 get_bufferobj_map(struct gl_context *ctx, struct gl_buffer_object *obj, 37 struct nouveau_bufferobj *nbo = to_nouveau_bufferobj(obj); 65 nouveau_bufferobj_del(struct gl_context *ctx, struct gl_buffer_object *obj) 67 struct nouveau_bufferobj *nbo = to_nouveau_bufferobj(obj); 77 struct gl_buffer_object *obj) 79 struct nouveau_bufferobj *nbo = to_nouveau_bufferobj(obj); 82 obj->Size = size; 83 obj->Usage = usage; 84 obj->StorageFlags = storageFlags; 107 memcpy(get_bufferobj_map(ctx, obj, NOUVEAU_BO_WR), data, size) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/egl/main/ |
| egldriver.h | 53 static inline struct drvtype *drvtype(const egltype *obj) \ 65 _EGL_DRIVER_TYPECAST(drvname ## _driver, _EGLDriver, obj) \ 67 _EGL_DRIVER_TYPECAST(drvname ## _display, _EGLDisplay, obj->DriverData) \ 68 _EGL_DRIVER_TYPECAST(drvname ## _context, _EGLContext, obj) \ 69 _EGL_DRIVER_TYPECAST(drvname ## _surface, _EGLSurface, obj) \ 70 _EGL_DRIVER_TYPECAST(drvname ## _config, _EGLConfig, obj)
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/api/ |
| interop.cpp | 51 return obj(event).status() == CL_COMPLETE; 54 obj(event).wait(); 63 return obj(event).fence();
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/util/ |
| lazy.hpp | 110 lazy(T x) : obj(new detail::strict_lazy<T>(x)) { 118 lazy(F &&f) : obj(new detail::deferred_lazy< 132 lazy(const lazy &other) : obj(obj->clone()) { 135 lazy(lazy &&other) : obj(NULL) { 136 std::swap(obj, other.obj); 140 delete obj; 145 std::swap(obj, other.obj); 157 detail::basic_lazy<T> *obj; member in class:clover::lazy [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/api/ |
| interop.cpp | 51 return obj(event).status() == CL_COMPLETE; 54 obj(event).wait(); 63 return obj(event).fence();
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/util/ |
| lazy.hpp | 110 lazy(T x) : obj(new detail::strict_lazy<T>(x)) { 118 lazy(F &&f) : obj(new detail::deferred_lazy< 132 lazy(const lazy &other) : obj(obj->clone()) { 135 lazy(lazy &&other) : obj(NULL) { 136 std::swap(obj, other.obj); 140 delete obj; 145 std::swap(obj, other.obj); 157 detail::basic_lazy<T> *obj; member in class:clover::lazy [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| transformfeedback.c | 59 struct gl_transform_feedback_object *obj = data; local 60 if (obj->Active && obj->program == callback_data->prog) 93 struct gl_transform_feedback_object *obj) 95 if (*ptr == obj) 115 if (obj) { 116 assert(obj->RefCount > 0); 119 obj->RefCount++; 120 obj->EverBound = GL_TRUE; 121 *ptr = obj; 160 struct gl_transform_feedback_object *obj = local 229 struct gl_transform_feedback_object *obj; local 394 struct gl_transform_feedback_object *obj; local 536 struct gl_transform_feedback_object *obj; local 698 struct gl_transform_feedback_object *obj; local 743 struct gl_transform_feedback_object *obj; local 768 struct gl_transform_feedback_object *obj; local 835 struct gl_transform_feedback_object *obj; local 1078 struct gl_transform_feedback_object *obj local 1139 struct gl_transform_feedback_object *obj; local 1162 struct gl_transform_feedback_object *obj; local 1224 struct gl_transform_feedback_object *obj local 1277 struct gl_transform_feedback_object *obj; local 1322 struct gl_transform_feedback_object *obj; local 1350 struct gl_transform_feedback_object *obj; local 1376 struct gl_transform_feedback_object *obj; local 1405 struct gl_transform_feedback_object *obj; local [all...] |
| performance_query.c | 420 struct gl_perf_query_object *obj; local 455 obj = ctx->Driver.NewPerfQueryObject(ctx, queryid_to_index(queryId)); 456 if (obj == NULL) { 461 obj->Id = id; 462 obj->Active = false; 463 obj->Ready = false; 465 _mesa_HashInsert(ctx->PerfQuery.Objects, id, obj, true); 474 struct gl_perf_query_object *obj = lookup_object(ctx, queryHandle); local 481 if (obj == NULL) { 492 if (obj->Active 509 struct gl_perf_query_object *obj = lookup_object(ctx, queryHandle); local 562 struct gl_perf_query_object *obj = lookup_object(ctx, queryHandle); local 595 struct gl_perf_query_object *obj = lookup_object(ctx, queryHandle); local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| transformfeedback.c | 56 struct gl_transform_feedback_object *obj = data; local 57 if (obj->Active && obj->program == callback_data->prog) 90 struct gl_transform_feedback_object *obj) 92 if (*ptr == obj) 112 if (obj) { 113 assert(obj->RefCount > 0); 116 obj->RefCount++; 117 obj->EverBound = GL_TRUE; 118 *ptr = obj; 158 struct gl_transform_feedback_object *obj = local 206 struct gl_transform_feedback_object *obj; local 387 struct gl_transform_feedback_object *obj; local 527 struct gl_transform_feedback_object *obj; local 689 struct gl_transform_feedback_object *obj; local 732 struct gl_transform_feedback_object *obj; local 755 struct gl_transform_feedback_object *obj; local 820 struct gl_transform_feedback_object *obj; local 1066 struct gl_transform_feedback_object *obj local 1128 struct gl_transform_feedback_object *obj; local 1151 struct gl_transform_feedback_object *obj; local 1213 struct gl_transform_feedback_object *obj local 1265 struct gl_transform_feedback_object *obj; local 1309 struct gl_transform_feedback_object *obj; local 1337 struct gl_transform_feedback_object *obj; local 1363 struct gl_transform_feedback_object *obj; local 1392 struct gl_transform_feedback_object *obj; local [all...] |
| performance_query.c | 414 struct gl_perf_query_object *obj; local 449 obj = ctx->Driver.NewPerfQueryObject(ctx, queryid_to_index(queryId)); 450 if (obj == NULL) { 455 obj->Id = id; 456 obj->Active = false; 457 obj->Ready = false; 459 _mesa_HashInsert(ctx->PerfQuery.Objects, id, obj); 468 struct gl_perf_query_object *obj = lookup_object(ctx, queryHandle); local 475 if (obj == NULL) { 486 if (obj->Active 503 struct gl_perf_query_object *obj = lookup_object(ctx, queryHandle); local 556 struct gl_perf_query_object *obj = lookup_object(ctx, queryHandle); local 589 struct gl_perf_query_object *obj = lookup_object(ctx, queryHandle); local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/ |
| intel_tex_obj.h | 73 intel_texture_object(struct gl_texture_object *obj) 75 return (struct intel_texture_object *) obj;
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/ |
| intel_tex_obj.h | 73 intel_texture_object(struct gl_texture_object *obj) 75 return (struct intel_texture_object *) obj;
|
| /xsrc/external/mit/freetype/dist/builds/compiler/ |
| win-lcc.mk | 23 # .o, .tco, .obj, etc., depending on the platform. 25 O := obj 26 SO := obj
|