From: Brian Paul Date: Sat, 28 Feb 2015 15:43:16 +0000 (-0700) Subject: i965: add GLSL_TYPE_DOUBLE switch case to silence warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=213c41bf5d7911a0964c43ccc4192ab3672d0ea5;p=mesa.git i965: add GLSL_TYPE_DOUBLE switch case to silence warning Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp index 0eab053e167..57c4d66b8ad 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp @@ -1250,6 +1250,7 @@ fs_visitor::emit_assignment_writes(fs_reg &l, fs_reg &r, case GLSL_TYPE_ATOMIC_UINT: break; + case GLSL_TYPE_DOUBLE: case GLSL_TYPE_VOID: case GLSL_TYPE_ERROR: case GLSL_TYPE_INTERFACE: