Home
last modified time | relevance | path

Searched refs:storePack (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/glx/
Dpixelstore.c86 state->storePack.rowLength = a; in __indirect_glPixelStoref()
94 state->storePack.imageHeight = a; in __indirect_glPixelStoref()
102 state->storePack.skipRows = a; in __indirect_glPixelStoref()
110 state->storePack.skipPixels = a; in __indirect_glPixelStoref()
118 state->storePack.skipImages = a; in __indirect_glPixelStoref()
127 state->storePack.alignment = a; in __indirect_glPixelStoref()
135 state->storePack.swapEndian = (param != 0); in __indirect_glPixelStoref()
138 state->storePack.lsbFirst = (param != 0); in __indirect_glPixelStoref()
234 state->storePack.rowLength = param; in __indirect_glPixelStorei()
241 state->storePack.imageHeight = param; in __indirect_glPixelStorei()
[all …]
Dpixel.c275 GLint rowLength = state->storePack.rowLength; in EmptyBitmap()
276 GLint alignment = state->storePack.alignment; in EmptyBitmap()
277 GLint skipPixels = state->storePack.skipPixels; in EmptyBitmap()
278 GLint skipRows = state->storePack.skipRows; in EmptyBitmap()
279 GLint lsbFirst = state->storePack.lsbFirst; in EmptyBitmap()
396 GLint rowLength = state->storePack.rowLength; in __glEmptyImage()
397 GLint imageHeight = state->storePack.imageHeight; in __glEmptyImage()
398 GLint alignment = state->storePack.alignment; in __glEmptyImage()
399 GLint skipPixels = state->storePack.skipPixels; in __glEmptyImage()
400 GLint skipRows = state->storePack.skipRows; in __glEmptyImage()
[all …]
Dclientattrib.c88 sp->storePack = state->storePack; in __indirect_glPushClientAttrib()
117 state->storePack = sp->storePack; in __indirect_glPopClientAttrib()
Dsingle2.c249 *data = (GLintptr) state->storePack.rowLength; in get_client_data()
252 *data = (GLintptr) state->storePack.imageHeight; in get_client_data()
255 *data = (GLintptr) state->storePack.skipRows; in get_client_data()
258 *data = (GLintptr) state->storePack.skipPixels; in get_client_data()
261 *data = (GLintptr) state->storePack.skipImages; in get_client_data()
264 *data = (GLintptr) state->storePack.alignment; in get_client_data()
267 *data = (GLintptr) state->storePack.swapEndian; in get_client_data()
270 *data = (GLintptr) state->storePack.lsbFirst; in get_client_data()
Dsinglepix.c55 __GLX_SINGLE_PUT_CHAR(12, state->storePack.swapEndian); in __indirect_glGetSeparableFilter()
143 *(int8_t *) (pc + 12) = state->storePack.swapEndian; in gl_dispatch_stub_GetSeparableFilterEXT()
Dindirect_glx.c415 state->storePack.alignment = 4; in indirect_create_context()
Dglxclient.h203 __GLXpixelStoreMode storePack, storeUnpack; member