mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-17 07:00:20 +01:00
i965: Add more MAX_*_URB_ENTRY_SIZE_BYTES #defines.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Abdiel Janulgue <abdiel.janulgue@linux.intel.com>
This commit is contained in:
parent
874a1ed813
commit
e9b0fa496c
1 changed files with 6 additions and 0 deletions
|
|
@ -1938,8 +1938,14 @@ enum brw_message_target {
|
|||
|
||||
/* Gen7 "GS URB Entry Allocation Size" is a U9-1 field, so the maximum gs_size
|
||||
* is 2^9, or 512. It's counted in multiples of 64 bytes.
|
||||
*
|
||||
* Identical for VS, DS, and HS.
|
||||
*/
|
||||
#define GEN7_MAX_GS_URB_ENTRY_SIZE_BYTES (512*64)
|
||||
#define GEN7_MAX_DS_URB_ENTRY_SIZE_BYTES (512*64)
|
||||
#define GEN7_MAX_HS_URB_ENTRY_SIZE_BYTES (512*64)
|
||||
#define GEN7_MAX_VS_URB_ENTRY_SIZE_BYTES (512*64)
|
||||
|
||||
/* Gen6 "GS URB Entry Allocation Size" is defined as a number of 1024-bit
|
||||
* (128 bytes) URB rows and the maximum allowed value is 5 rows.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue