Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/swrast/
Ds_texfetch.c76 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/
Dradeon_texstate.c912 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/
Dr200_texstate.c1292 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/
Dreadpix.c225 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()
Dtexstore.c115 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/
D7.10.rst286 - mesa: remove assertion w/ undeclared variable texelBytes