Home
last modified time | relevance | path

Searched refs:ubptr (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/mesa/main/
Dglthread_marshal.h715 GLubyte *ubptr; in _mesa_glthread_CallLists() local
729 ubptr = (GLubyte *) lists; in _mesa_glthread_CallLists()
731 _mesa_glthread_CallList(ctx, base + ubptr[i]); in _mesa_glthread_CallLists()
759 ubptr = (GLubyte *) lists; in _mesa_glthread_CallLists()
762 (GLint)ubptr[2 * i] * 256 + in _mesa_glthread_CallLists()
763 (GLint)ubptr[2 * i + 1]); in _mesa_glthread_CallLists()
767 ubptr = (GLubyte *) lists; in _mesa_glthread_CallLists()
770 (GLint)ubptr[3 * i] * 65536 + in _mesa_glthread_CallLists()
771 (GLint)ubptr[3 * i + 1] * 256 + in _mesa_glthread_CallLists()
772 (GLint)ubptr[3 * i + 2]); in _mesa_glthread_CallLists()
[all …]
Ddlist.c13545 GLubyte *ubptr; in replace_op_vertex_list_recursively() local
13558 ubptr = (GLubyte *) get_pointer(&n[3]); in replace_op_vertex_list_recursively()
13560 … replace_op_vertex_list_recursively(ctx, _mesa_lookup_list(ctx, (int)ubptr[i], true)); in replace_op_vertex_list_recursively()
13588 ubptr = (GLubyte *) get_pointer(&n[3]); in replace_op_vertex_list_recursively()
13591 _mesa_lookup_list(ctx, (int)ubptr[2 * i] * 256 + in replace_op_vertex_list_recursively()
13592 … (int)ubptr[2 * i + 1], true)); in replace_op_vertex_list_recursively()
13596 ubptr = (GLubyte *) get_pointer(&n[3]); in replace_op_vertex_list_recursively()
13599 _mesa_lookup_list(ctx, (int)ubptr[3 * i] * 65536 + in replace_op_vertex_list_recursively()
13600 (int)ubptr[3 * i + 1] * 256 + in replace_op_vertex_list_recursively()
13601 (int)ubptr[3 * i + 2], true)); in replace_op_vertex_list_recursively()
[all …]