diff options
author | Marek Olšák <[email protected]> | 2010-06-02 06:25:02 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-06-02 06:26:15 +0200 |
commit | bb45a15168e6c6678776fea5d8d0085454089260 (patch) | |
tree | 99f05d1a7b7829e8f57e04945e42c8c453c04a8e /src/gallium/drivers/r300/r300_winsys.h | |
parent | 19498be935328e284c7f0e456fc04cca8d465d4c (diff) |
r300g: use r300_buffer_domain everywhere
Diffstat (limited to 'src/gallium/drivers/r300/r300_winsys.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_winsys.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/r300/r300_winsys.h b/src/gallium/drivers/r300/r300_winsys.h index d59a45a00a9..6ce218923b1 100644 --- a/src/gallium/drivers/r300/r300_winsys.h +++ b/src/gallium/drivers/r300/r300_winsys.h @@ -101,8 +101,8 @@ struct r300_winsys_screen { /* Add a pipe_resource to the list of buffer objects to validate. */ boolean (*add_buffer)(struct r300_winsys_screen *winsys, struct r300_winsys_buffer *buf, - uint32_t rd, - uint32_t wd); + enum r300_buffer_domain rd, + enum r300_buffer_domain wd); /* Revalidate all currently setup pipe_buffers. @@ -130,8 +130,8 @@ struct r300_winsys_screen { /* Write a relocated dword to the command buffer. */ void (*write_cs_reloc)(struct r300_winsys_screen *winsys, struct r300_winsys_buffer *buf, - uint32_t rd, - uint32_t wd, + enum r300_buffer_domain rd, + enum r300_buffer_domain wd, uint32_t flags); /* Finish a command emit. */ |