• Home
  • Raw
  • Download

Lines Matching refs:dstMap

1066       GLubyte *dstMap;  in store_texsubimage()  local
1072 mapMode, &dstMap, &dstRowStride); in store_texsubimage()
1073 if (dstMap) { in store_texsubimage()
1081 &dstMap, in store_texsubimage()
1148 clear_image_to_zero(GLubyte *dstMap, GLint dstRowStride, in clear_image_to_zero() argument
1155 memset(dstMap, 0, clearValueSize * width); in clear_image_to_zero()
1156 dstMap += dstRowStride; in clear_image_to_zero()
1161 clear_image_to_value(GLubyte *dstMap, GLint dstRowStride, in clear_image_to_value() argument
1170 memcpy(dstMap, clearValue, clearValueSize); in clear_image_to_value()
1171 dstMap += clearValueSize; in clear_image_to_value()
1173 dstMap += dstRowStride - clearValueSize * width; in clear_image_to_value()
1187 GLubyte *dstMap; in _mesa_store_cleartexsubimage() local
1199 &dstMap, &dstRowStride); in _mesa_store_cleartexsubimage()
1200 if (dstMap == NULL) { in _mesa_store_cleartexsubimage()
1206 clear_image_to_value(dstMap, dstRowStride, in _mesa_store_cleartexsubimage()
1211 clear_image_to_zero(dstMap, dstRowStride, in _mesa_store_cleartexsubimage()
1336 GLubyte *dstMap; in _mesa_store_compressed_texsubimage() local
1362 &dstMap, &dstRowStride); in _mesa_store_compressed_texsubimage()
1364 if (dstMap) { in _mesa_store_compressed_texsubimage()
1369 memcpy(dstMap, src, store.CopyBytesPerRow * store.CopyRowsPerSlice); in _mesa_store_compressed_texsubimage()
1374 memcpy(dstMap, src, store.CopyBytesPerRow); in _mesa_store_compressed_texsubimage()
1375 dstMap += dstRowStride; in _mesa_store_compressed_texsubimage()