diff options
author | Marek Olšák <maraeo@gmail.com> | 2011-09-27 01:10:20 +0200 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2011-09-30 23:19:52 +0200 |
commit | 363ff844753c46ac9c13866627e096b091ea81f8 (patch) | |
tree | 3f5a9adeda3243ea6724c55a2ba75f65be7e6cce /src/gallium/drivers/r600/r600.h | |
parent | af8eb5c851a9d566059ae9e37745614cd96b9a13 (diff) | |
download | external_mesa3d-363ff844753c46ac9c13866627e096b091ea81f8.zip external_mesa3d-363ff844753c46ac9c13866627e096b091ea81f8.tar.gz external_mesa3d-363ff844753c46ac9c13866627e096b091ea81f8.tar.bz2 |
winsys/radeon: move GEM domains out of the drivers into winsys
The drivers don't need to care about the domains. All they need to set
are the bind and usage flags. This simplifies the winsys too.
This also fixes on r600g:
- fbo-depth-GL_DEPTH_COMPONENT32F-copypixels
- fbo-depth-GL_DEPTH_COMPONENT16-copypixels
- fbo-depth-GL_DEPTH_COMPONENT24-copypixels
- fbo-depth-GL_DEPTH_COMPONENT32-copypixels
- fbo-depth-GL_DEPTH24_STENCIL8-copypixels
I can't explain it.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'src/gallium/drivers/r600/r600.h')
-rw-r--r-- | src/gallium/drivers/r600/r600.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600.h b/src/gallium/drivers/r600/r600.h index f35fb17..37b6e96 100644 --- a/src/gallium/drivers/r600/r600.h +++ b/src/gallium/drivers/r600/r600.h @@ -88,9 +88,6 @@ struct r600_resource { /* Winsys objects. */ struct pb_buffer *buf; struct radeon_winsys_cs_handle *cs_buf; - - /* Resource state. */ - unsigned domains; }; /* R600/R700 STATES */ |