• Home
  • Raw
  • Download

Lines Matching refs:GLint

83 FillBitmap(struct glx_context * gc, GLint width, GLint height,  in FillBitmap()
87 GLint rowLength = state->storeUnpack.rowLength; in FillBitmap()
88 GLint alignment = state->storeUnpack.alignment; in FillBitmap()
89 GLint skipPixels = state->storeUnpack.skipPixels; in FillBitmap()
90 GLint skipRows = state->storeUnpack.skipRows; in FillBitmap()
91 GLint lsbFirst = state->storeUnpack.lsbFirst; in FillBitmap()
92 GLint elementsLeft, bitOffset, currentByte, nextByte, highBitMask; in FillBitmap()
93 GLint lowBitMask, i; in FillBitmap()
94 GLint components, groupsPerRow, rowSize, padding, elementsPerRow; in FillBitmap()
164 __glFillImage(struct glx_context * gc, GLint dim, GLint width, GLint height, in __glFillImage()
165 GLint depth, GLenum format, GLenum type, in __glFillImage()
169 GLint rowLength = state->storeUnpack.rowLength; in __glFillImage()
170 GLint imageHeight = state->storeUnpack.imageHeight; in __glFillImage()
171 GLint alignment = state->storeUnpack.alignment; in __glFillImage()
172 GLint skipPixels = state->storeUnpack.skipPixels; in __glFillImage()
173 GLint skipRows = state->storeUnpack.skipRows; in __glFillImage()
174 GLint skipImages = state->storeUnpack.skipImages; in __glFillImage()
175 GLint swapBytes = state->storeUnpack.swapEndian; in __glFillImage()
176 GLint components, elementSize, rowSize, padding, groupsPerRow, groupSize; in __glFillImage()
177 GLint elementsPerRow, imageSize, rowsPerImage, h, i, j, k; in __glFillImage()
271 EmptyBitmap(struct glx_context * gc, GLint width, GLint height, in EmptyBitmap()
275 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()
280 GLint components, groupsPerRow, rowSize, padding, elementsPerRow; in EmptyBitmap()
281 GLint sourceRowSize, sourcePadding, sourceSkip; in EmptyBitmap()
283 GLint elementsLeft, bitOffset, currentByte, highBitMask, lowBitMask; in EmptyBitmap()
284 GLint writeMask, i; in EmptyBitmap()
391 __glEmptyImage(struct glx_context * gc, GLint dim, GLint width, GLint height, in __glEmptyImage()
392 GLint depth, GLenum format, GLenum type, in __glEmptyImage()
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()
401 GLint skipImages = state->storePack.skipImages; in __glEmptyImage()
402 GLint components, elementSize, rowSize, padding, groupsPerRow, groupSize; in __glEmptyImage()
403 GLint elementsPerRow, sourceRowSize, sourcePadding, h, i; in __glEmptyImage()
404 GLint imageSize, rowsPerImage; in __glEmptyImage()