diff options
author | Rob Clark <[email protected]> | 2014-05-14 11:06:21 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2014-05-14 21:20:29 -0400 |
commit | e1896948da317406fd0fc27096952badf1d3cffc (patch) | |
tree | 38afc119a23c75a8686cdc1d6625593dfbed356a /src/gallium/drivers/freedreno/freedreno_util.h | |
parent | ac2a8e3c9d5958010d53fedc5a4460492d9628bc (diff) |
freedreno/a3xx: add debug flag to expose glsl130
We are starting to add integer support to the compiler, which does not
get exercised with glsl feature level 120 and without advertising
integer support. But doing so breaks too many things right now. So
for now use a debug flag to conditionally expose the functionality
while it is in development.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_util.h')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_util.h b/src/gallium/drivers/freedreno/freedreno_util.h index b57702c54c8..26e4231cdc4 100644 --- a/src/gallium/drivers/freedreno/freedreno_util.h +++ b/src/gallium/drivers/freedreno/freedreno_util.h @@ -65,6 +65,7 @@ enum adreno_stencil_op fd_stencil_op(unsigned op); #define FD_DBG_NOOPT 0x0200 #define FD_DBG_OPTMSGS 0x0400 #define FD_DBG_OPTDUMP 0x0800 +#define FD_DBG_GLSL130 0x1000 extern int fd_mesa_debug; extern bool fd_binning_enabled; |