summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp
diff options
context:
space:
mode:
authorPaul Berry <stereotype441@gmail.com>2013-03-20 11:54:33 -0700
committerPaul Berry <stereotype441@gmail.com>2013-08-23 11:02:37 -0700
commit5fb13d871e062354a77a427b3a3fe7f3d6908e5a (patch)
treec13618d79b499d5597837d83175ef4e2f3749856 /src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp
parent52bac6e4ffb898d2222a59c9ee3c8d0a46426e20 (diff)
downloadexternal_mesa3d-5fb13d871e062354a77a427b3a3fe7f3d6908e5a.zip
external_mesa3d-5fb13d871e062354a77a427b3a3fe7f3d6908e5a.tar.gz
external_mesa3d-5fb13d871e062354a77a427b3a3fe7f3d6908e5a.tar.bz2
i965: Stop including brw_vs.h from brw_vec4.h.
This is backwards from what we are going to want in the long term, which is: - brw_vec4.h declares general-purpose vec4 infrastructure needed by both VS and GS - brw_vs.h includes brw_vec4.h and adds VS-specific parts. - brw_gs.h includes brw_vec4.h and adds GS-specific parts. Note that at the moment brw_vec.h contains a fair amount of VS-specific declarations--I plan to address that in a later patch. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp b/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp
index 10a9c57..0b27383 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp
@@ -27,6 +27,7 @@ extern "C" {
} /* extern "C" */
#include "brw_vec4.h"
+#include "brw_vs.h"
using namespace brw;