summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/Makefile.sources
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2015-09-30 14:54:55 -0700
committerKenneth Graunke <[email protected]>2015-12-07 14:48:54 -0800
commit7a1735680007a78b0a56107871e4afdc33985604 (patch)
tree08e3f4eb65bdda5717a30427bd3a3f4f2e33b499 /src/mesa/drivers/dri/i965/Makefile.sources
parent63b850403c90f33c295d3ad6be4ad749d4ea6274 (diff)
i965: Create new files for HS/DS/TE state upload code.
For now, this just splits the existing code to disable these stages into separate atoms/files. We can then replace it with real code. v2: Bump the render atoms in this patch so it compiles (in my branch, I'd bumped it in an earlier patch). 61 seems to be the minimum that works, which doesn't match the old value + the number of atoms I added in this patch, so apparently we had some slop before. v3: Actually disable the DS unit on Gen8+. Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Kristian Høgsberg <[email protected]> [v1] Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r--src/mesa/drivers/dri/i965/Makefile.sources6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources
index 5e805fa3531..29f0b755ad7 100644
--- a/src/mesa/drivers/dri/i965/Makefile.sources
+++ b/src/mesa/drivers/dri/i965/Makefile.sources
@@ -180,11 +180,13 @@ i965_FILES = \
gen6_wm_state.c \
gen7_blorp.cpp \
gen7_cs_state.c \
- gen7_disable.c \
+ gen7_ds_state.c \
gen7_gs_state.c \
+ gen7_hs_state.c \
gen7_misc_state.c \
gen7_sf_state.c \
gen7_sol_state.c \
+ gen7_te_state.c \
gen7_urb.c \
gen7_viewport_state.c \
gen7_vs_state.c \
@@ -194,7 +196,9 @@ i965_FILES = \
gen8_depth_state.c \
gen8_disable.c \
gen8_draw_upload.c \
+ gen8_ds_state.c \
gen8_gs_state.c \
+ gen8_hs_state.c \
gen8_misc_state.c \
gen8_multisample_state.c \
gen8_ps_state.c \