Home
last modified time | relevance | path

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

/external/mesa3d/src/glx/
Dpixelstore.c85 state->storePack.rowLength = a; in __indirect_glPixelStoref()
93 state->storePack.imageHeight = a; in __indirect_glPixelStoref()
101 state->storePack.skipRows = a; in __indirect_glPixelStoref()
109 state->storePack.skipPixels = a; in __indirect_glPixelStoref()
117 state->storePack.skipImages = a; in __indirect_glPixelStoref()
126 state->storePack.alignment = a; in __indirect_glPixelStoref()
134 state->storePack.swapEndian = (param != 0); in __indirect_glPixelStoref()
137 state->storePack.lsbFirst = (param != 0); in __indirect_glPixelStoref()
233 state->storePack.rowLength = param; in __indirect_glPixelStorei()
240 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.c84 sp->storePack = state->storePack; in __indirect_glPushClientAttrib()
113 state->storePack = sp->storePack; in __indirect_glPopClientAttrib()
Dsingle2.c251 *data = (GLintptr) state->storePack.rowLength; in get_client_data()
254 *data = (GLintptr) state->storePack.imageHeight; in get_client_data()
257 *data = (GLintptr) state->storePack.skipRows; in get_client_data()
260 *data = (GLintptr) state->storePack.skipPixels; in get_client_data()
263 *data = (GLintptr) state->storePack.skipImages; in get_client_data()
266 *data = (GLintptr) state->storePack.alignment; in get_client_data()
269 *data = (GLintptr) state->storePack.swapEndian; in get_client_data()
272 *data = (GLintptr) state->storePack.lsbFirst; in get_client_data()
Dsinglepix.c56 __GLX_SINGLE_PUT_CHAR(12, state->storePack.swapEndian); in __indirect_glGetSeparableFilter()
144 *(int8_t *) (pc + 12) = state->storePack.swapEndian; in gl_dispatch_stub_GetSeparableFilterEXT()
Dindirect_glx.c398 state->storePack.alignment = 4; in indirect_create_context()
Dglxclient.h191 __GLXpixelStoreMode storePack, storeUnpack; member