diff options
Diffstat (limited to 'src/gallium/drivers/radeonsi/r600_texture.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/r600_texture.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/r600_texture.c b/src/gallium/drivers/radeonsi/r600_texture.c index aa307fb1a22..53452c892c2 100644 --- a/src/gallium/drivers/radeonsi/r600_texture.c +++ b/src/gallium/drivers/radeonsi/r600_texture.c @@ -462,8 +462,9 @@ r600_texture_create_object(struct pipe_screen *screen, if (rtex->cmask.size) { /* Initialize the cmask to 0xCC (= compressed state). */ - char *map = rscreen->b.ws->buffer_map(resource->cs_buf, NULL, PIPE_TRANSFER_WRITE); - memset(map + rtex->cmask.offset, 0xCC, rtex->cmask.size); + r600_screen_clear_buffer(&rscreen->b, &resource->b.b, + rtex->cmask.offset, rtex->cmask.size, + 0xCCCCCCCC); } if (rscreen->b.debug_flags & DBG_TEX_DEPTH && rtex->is_depth) { |