diff options
author | Corbin Simpson <[email protected]> | 2009-05-01 05:54:53 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-05-01 05:54:53 -0700 |
commit | c11ad489e7432f3ed2fcaf5b15b8fe3538ae6d30 (patch) | |
tree | e2a1bb1fec400d7419a12f0f2532585ae8d61e86 /src/gallium/drivers/r300/r300_winsys.h | |
parent | d7f4ac9f34a72efe53a1a140557f1822afbadf16 (diff) |
r300-gallium, radeon-winsys: Space accounting.
It is no longer optional in current libdrm, so it was time to actually
start counting our BOs.
Diffstat (limited to 'src/gallium/drivers/r300/r300_winsys.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_winsys.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_winsys.h b/src/gallium/drivers/r300/r300_winsys.h index 393ba07012b..761aedebfcf 100644 --- a/src/gallium/drivers/r300/r300_winsys.h +++ b/src/gallium/drivers/r300/r300_winsys.h @@ -53,6 +53,22 @@ struct r300_winsys { /* GB pipe count */ uint32_t gb_pipes; + /* GART size. */ + uint32_t gart_size; + + /* VRAM size. */ + uint32_t vram_size; + + /* Add a pipe_buffer to the list of buffer objects to validate. */ + void (*add_buffer)(struct r300_winsys* winsys, + struct pipe_buffer* pbuffer, + uint32_t rd, + uint32_t wd); + + /* Revalidate all currently setup pipe_buffers. + * Returns TRUE if a flush is required. */ + boolean (*validate)(struct r300_winsys* winsys); + /* Check to see if there's room for commands. */ boolean (*check_cs)(struct r300_winsys* winsys, int size); |