diff options
author | Matt Turner <[email protected]> | 2014-02-21 23:52:24 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-02-21 23:53:36 -0800 |
commit | 7770b026937948e1be3ed55f9ff97e6521c500df (patch) | |
tree | 8daa810c11ed2abb680905a7d698990e7ccdef1a /src/mesa/drivers/dri/i965/brw_shader.h | |
parent | 760c6777a0530b4894dec564cdf218f5364b4df1 (diff) |
Revert "i965/fs: Make fs_reg's type an enum for better debugging."
This reverts commit 5ceadd29b0af835d741bcf09b9622c628e549ae6.
I rebased and apparently failed to build test.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=75355
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_shader.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_shader.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_shader.h b/src/mesa/drivers/dri/i965/brw_shader.h index bbbeb326861..4d98cbcdbb5 100644 --- a/src/mesa/drivers/dri/i965/brw_shader.h +++ b/src/mesa/drivers/dri/i965/brw_shader.h @@ -23,7 +23,6 @@ #include <stdint.h> #include "brw_defines.h" -#include "brw_reg.h" #include "main/compiler.h" #include "glsl/ir.h" @@ -100,7 +99,7 @@ uint32_t brw_texture_offset(struct gl_context *ctx, ir_constant *offset); #endif /* __cplusplus */ -enum brw_reg_type brw_type_for_base_type(const struct glsl_type *type); +int brw_type_for_base_type(const struct glsl_type *type); uint32_t brw_conditional_for_comparison(unsigned int op); uint32_t brw_math_function(enum opcode op); const char *brw_instruction_name(enum opcode op); |