nir: Add GLSL_TYPE_INT64 and GLSL_TYPE_UINT64 to glsl_get_bit_size

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Connor Abbott <cwabbott0@gmail.com>
This commit is contained in:
Ian Romanick
2016-09-01 14:11:32 -07:00
parent 81952814a3
commit 48e122244b

View File

@@ -92,6 +92,8 @@ glsl_get_bit_size(const struct glsl_type *type)
return 32;
case GLSL_TYPE_DOUBLE:
case GLSL_TYPE_INT64:
case GLSL_TYPE_UINT64:
return 64;
default: