Searched refs:srcRow (Results 1 - 9 of 9) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_blit.c301 GLint srcRow = IROUND(srcRowF);
304 assert(srcRow >= 0);
305 assert(srcRow < srcHeight);
308 srcRow = srcHeight - 1 - srcRow;
312 if (prevY != srcRow) {
313 GLubyte *srcRowStart = srcMap + srcRowStride * srcRow;
338 prevY = srcRow;
632 GLfloat srcRow = (dstRow + 0.5F) / dstHeight * srcHeight - 0.5F; local in function:blit_linear
633 GLint srcRow0 = MAX2(0, IFLOOR(srcRow));
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_blit.c301 GLint srcRow = lroundf(srcRowF);
304 assert(srcRow >= 0);
305 assert(srcRow < srcHeight);
308 srcRow = srcHeight - 1 - srcRow;
312 if (prevY != srcRow) {
313 GLubyte *srcRowStart = srcMap + srcRowStride * srcRow;
338 prevY = srcRow;
632 GLfloat srcRow = (dstRow + 0.5F) / dstHeight * srcHeight - 0.5F; local in function:blit_linear
633 GLint srcRow0 = MAX2(0, util_ifloor(srcRow));
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dimage.c405 const GLubyte *srcRow = (const GLubyte *) local in function:_mesa_expand_bitmap
414 const GLubyte *src = srcRow;
461 srcRow += srcStride;
H A Dtexstore.c132 const GLubyte *srcRow = srcImage; local in function:_mesa_memcpy_texture
135 memcpy(dstRow, srcRow, bytesPerRow);
137 srcRow += srcRowStride;
H A Dteximage.c778 GLint srcRow = 7 - (i % 8);
781 GLubyte texel = (message[srcRow][srcCol]=='X') ? 255 : 70;
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dimage.c405 const GLubyte *srcRow = (const GLubyte *) local in function:_mesa_expand_bitmap
414 const GLubyte *src = srcRow;
461 srcRow += srcStride;
H A Dtexstore.c132 const GLubyte *srcRow = srcImage; local in function:_mesa_memcpy_texture
135 memcpy(dstRow, srcRow, bytesPerRow);
137 srcRow += srcRowStride;
H A Dteximage.c761 GLint srcRow = 7 - (i % 8);
764 GLubyte texel = (message[srcRow][srcCol]=='X') ? 255 : 70;
/xsrc/external/mit/MesaLib.old/src/mesa/main/
H A Dformat_unpack.c7194 const GLubyte *srcRow; local in function:_mesa_unpack_rgba_block
7200 srcRow = ((const GLubyte *) src) + srcRowStride * y + srcPixStride * x;
7204 _mesa_unpack_rgba_row(format, width, srcRow, (GLfloat (*)[4]) dstRow);
7207 srcRow += srcRowStride;

Completed in 38 milliseconds