Home
last modified time | relevance | path

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

/third_party/mesa3d/src/glx/
Dpixel.c281 GLint sourceRowSize, sourcePadding, sourceSkip; in EmptyBitmap() local
301 sourcePadding = (sourceRowSize % 4); in EmptyBitmap()
302 if (sourcePadding) { in EmptyBitmap()
303 sourceSkip = 4 - sourcePadding; in EmptyBitmap()
403 GLint elementsPerRow, sourceRowSize, sourcePadding, h, i; in __glEmptyImage() local
432 sourcePadding = (sourceRowSize % 4); in __glEmptyImage()
433 if (sourcePadding) { in __glEmptyImage()
434 sourceRowSize += 4 - sourcePadding; in __glEmptyImage()
443 if ((rowSize == sourceRowSize) && (sourcePadding == 0)) { in __glEmptyImage()