Searched refs:texelBytes (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/mesa/swrast/ |
D | s_texfetch.c | 76 GLuint texelBytes = _mesa_get_format_bytes(swImage->Base.TexFormat); in fetch_compressed() local 78 assert(swImage->RowStride * bw % texelBytes == 0); in fetch_compressed() 81 swImage->RowStride * bw / texelBytes, in fetch_compressed()
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_texstate.c | 912 GLint log2Width, log2Height, texelBytes; in setup_hardware_state() local 922 texelBytes = _mesa_get_format_bytes(firstImage->TexFormat); in setup_hardware_state() 977 t->pp_txpitch = ((firstImage->Width * texelBytes) + 63) & ~(63); in setup_hardware_state()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_texstate.c | 1292 GLint log2Width, log2Height, log2Depth, texelBytes; in setup_hardware_state() local 1302 texelBytes = _mesa_get_format_bytes(firstImage->TexFormat); in setup_hardware_state() 1307 log2Depth, texelBytes, firstImage->TexFormat); in setup_hardware_state() 1396 t->pp_txpitch = ((firstImage->Width * texelBytes) + 63) & ~(63); in setup_hardware_state()
|
/external/mesa3d/src/mesa/main/ |
D | readpix.c | 225 int dstStride, stride, j, texelBytes, bytesPerRow; in readpixels_memcpy() local 243 texelBytes = _mesa_get_format_bytes(rb->Format); in readpixels_memcpy() 244 bytesPerRow = texelBytes * width; in readpixels_memcpy()
|
D | texstore.c | 115 const GLuint texelBytes = _mesa_get_format_bytes(dstFormat); in _mesa_memcpy_texture() local 116 const GLint bytesPerRow = srcWidth * texelBytes; in _mesa_memcpy_texture()
|
/external/mesa3d/docs/relnotes/ |
D | 7.10.rst | 286 - mesa: remove assertion w/ undeclared variable texelBytes
|