From: Connor Abbott Date: Tue, 28 Jul 2015 22:51:40 +0000 (-0700) Subject: i965/fs: fix type_size() for doubles X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1f51aada3fbf73ffe601f743b5244df63e17f9d5;p=mesa.git i965/fs: fix type_size() for doubles Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 241fca946c7..d0ce79d101a 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -485,6 +485,8 @@ type_size_scalar(const struct glsl_type *type) case GLSL_TYPE_FLOAT: case GLSL_TYPE_BOOL: return type->components(); + case GLSL_TYPE_DOUBLE: + return type->components() * 2; case GLSL_TYPE_ARRAY: return type_size_scalar(type->fields.array) * type->length; case GLSL_TYPE_STRUCT: @@ -507,7 +509,6 @@ type_size_scalar(const struct glsl_type *type) case GLSL_TYPE_VOID: case GLSL_TYPE_ERROR: case GLSL_TYPE_INTERFACE: - case GLSL_TYPE_DOUBLE: case GLSL_TYPE_FUNCTION: unreachable("not reached"); }