diff options
author | Corbin Simpson <[email protected]> | 2009-01-21 23:48:47 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-01 23:30:25 -0800 |
commit | 0ff7cb7c89f0c9ac4e363296e53eada008717252 (patch) | |
tree | 72ad1cdeb16490e1321da351b1ae8a81ebc1eafb /src/gallium/drivers/r300/r300_chipset.h | |
parent | 7d63ff93cbf0f342c3736f4c8fae75157a62f0ea (diff) |
r300: Add num_vert_pipes (and remove busted num_pipes.)
Diffstat (limited to 'src/gallium/drivers/r300/r300_chipset.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_chipset.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gallium/drivers/r300/r300_chipset.h b/src/gallium/drivers/r300/r300_chipset.h index c2d7ad3414c..548d7a6c500 100644 --- a/src/gallium/drivers/r300/r300_chipset.h +++ b/src/gallium/drivers/r300/r300_chipset.h @@ -32,8 +32,10 @@ struct r300_capabilities { uint32_t pci_id; /* Chipset family */ int family; - /* The number of Graphics Backend (GB) pipes */ - int num_pipes; + /* The number of vertex pipes */ + int num_vert_pipes; + /* The number of fragment pipes */ + int num_frag_pipes; /* Whether or not TCL is physically present */ boolean has_tcl; /* Whether or not this is an RV515 or newer; R500s have many features: @@ -100,4 +102,4 @@ static const char* chip_families[] = { void r300_parse_chipset(uint32_t pci_id, struct r300_capabilities* caps); -#endif /* R300_CHIPSET_H */
\ No newline at end of file +#endif /* R300_CHIPSET_H */ |