diff options
Diffstat (limited to 'src/gallium/drivers/r300')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.h | 2 | ||||
-rw-r--r-- | src/gallium/drivers/r300/r300_cs.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h index 22025157764..667d3fd3306 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -449,7 +449,7 @@ struct r300_context { /* The submission context. */ struct radeon_winsys_ctx *ctx; /* The command stream. */ - struct radeon_winsys_cs *cs; + struct radeon_cmdbuf *cs; /* Screen. */ struct r300_screen *screen; diff --git a/src/gallium/drivers/r300/r300_cs.h b/src/gallium/drivers/r300/r300_cs.h index 727b9e22475..560b77533cf 100644 --- a/src/gallium/drivers/r300/r300_cs.h +++ b/src/gallium/drivers/r300/r300_cs.h @@ -39,7 +39,7 @@ */ #define CS_LOCALS(context) \ - struct radeon_winsys_cs *cs_copy = (context)->cs; \ + struct radeon_cmdbuf *cs_copy = (context)->cs; \ struct radeon_winsys *cs_winsys = (context)->rws; \ int cs_count = 0; (void) cs_count; (void) cs_winsys; |