[Mesa-dev] [PATCH 18/21] gallium/radeon: implement sparse buffer creation

Nicolai Hähnle nhaehnle at gmail.com
Wed Feb 8 12:43:00 UTC 2017


From: Nicolai Hähnle <nicolai.haehnle at amd.com>

---
 src/gallium/drivers/radeon/r600_buffer_common.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/gallium/drivers/radeon/r600_buffer_common.c b/src/gallium/drivers/radeon/r600_buffer_common.c
index da6f020..cf24ee2 100644
--- a/src/gallium/drivers/radeon/r600_buffer_common.c
+++ b/src/gallium/drivers/radeon/r600_buffer_common.c
@@ -538,6 +538,8 @@ struct pipe_resource *r600_buffer_create(struct pipe_screen *screen,
 
 	if (templ->bind & PIPE_BIND_SHARED)
 		rbuffer->flags |= RADEON_FLAG_HANDLE;
+	if (templ->flags & PIPE_RESOURCE_FLAG_SPARSE)
+		rbuffer->flags |= RADEON_FLAG_SPARSE;
 
 	if (!r600_alloc_resource(rscreen, rbuffer)) {
 		FREE(rbuffer);
-- 
2.9.3



More information about the mesa-dev mailing list