diff options
author | Emil Velikov <[email protected]> | 2017-03-09 00:44:29 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-03-13 11:16:34 +0000 |
commit | d0d4a5f43b4dd79bd7bfff7c7deaade10bfebf7c (patch) | |
tree | 33a1f2d1a4dab3ea994124436ae2a7c629b130d9 /src/mesa/drivers/dri/i965/brw_util.c | |
parent | a72ac981605d34be5b9da3d9ee8e43b81c5a5296 (diff) |
i965: split EU defines to brw_eu_defines.h
Split out the EU defines from the 'generic' ones, as the former are more
compiler oriented.
With a later commit we'll move brw_eu_defines.h alongside the compiler
infra to src/intel/. Pulling all the defines in there seems overzealous.
Some defines are used by both i965 and the i965 compiler. Those are
moved to brw_eu_defines.h, and annotated accordingly. The i965 users
were updated to have the extre include to indicate that.
With future work we might provide a better, split but for now this seems
reasonable.
Cc: Kenneth Graunke <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_util.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_util.c b/src/mesa/drivers/dri/i965/brw_util.c index f190a68cade..811932a57e5 100644 --- a/src/mesa/drivers/dri/i965/brw_util.c +++ b/src/mesa/drivers/dri/i965/brw_util.c @@ -32,6 +32,7 @@ #include "brw_util.h" #include "brw_defines.h" +#include "brw_eu_defines.h" GLuint brw_translate_blend_equation( GLenum mode ) { |