diff options
author | Corbin Simpson <[email protected]> | 2009-01-22 13:34:21 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-01 23:30:25 -0800 |
commit | ecb7f29f74c8f7456302267fe31b1de4bcc103c5 (patch) | |
tree | 1f86aac7d7a005755dc7e9a00796e43a3ea9919b /src/gallium/drivers/r300/r300_winsys.h | |
parent | 90a96cb2addf48b3b48c039a8dc6de9e53bfb6df (diff) |
amd/r300: Wire up GETPARAM ioctls.
Whoo, stuff is starting to look cleaner and cleaner.
Diffstat (limited to 'src/gallium/drivers/r300/r300_winsys.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_winsys.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_winsys.h b/src/gallium/drivers/r300/r300_winsys.h index 319152c8536..867d65b7de1 100644 --- a/src/gallium/drivers/r300/r300_winsys.h +++ b/src/gallium/drivers/r300/r300_winsys.h @@ -41,6 +41,9 @@ struct r300_winsys { /* PCI ID */ uint32_t pci_id; + /* GB pipe count */ + uint32_t gb_pipes; + /* CS object. This is very much like Intel's batchbuffer. * Fill it full of dwords and relocs and then submit. * Repeat as needed. */ @@ -89,4 +92,4 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen, } #endif -#endif /* R300_WINSYS_H */
\ No newline at end of file +#endif /* R300_WINSYS_H */ |