diff options
author | Dave Airlie <[email protected]> | 2014-08-14 18:49:20 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2015-02-20 09:44:28 +1000 |
commit | c442d0961e4ec6dcc304d652b637bb60687ce3cb (patch) | |
tree | 0d4c25dbe3df3475f43d22e7877d03290d2fdece /src/mesa/drivers/dri/i965/brw_shader.cpp | |
parent | 75f6ed617fcdf0b28381c59e4d4a3030678d7faa (diff) |
i965: just avoid warnings with fp64
This just fills in some blanks to avoid warnings in the i965 driver.
Reviewed-by: Chris Forbes <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_shader.cpp')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_shader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_shader.cpp b/src/mesa/drivers/dri/i965/brw_shader.cpp index 71146c56c5f..b0e9c82265c 100644 --- a/src/mesa/drivers/dri/i965/brw_shader.cpp +++ b/src/mesa/drivers/dri/i965/brw_shader.cpp @@ -308,6 +308,7 @@ brw_type_for_base_type(const struct glsl_type *type) case GLSL_TYPE_VOID: case GLSL_TYPE_ERROR: case GLSL_TYPE_INTERFACE: + case GLSL_TYPE_DOUBLE: unreachable("not reached"); } |