zink: add DOUBLE glsl type for streamout export

not used yet but someday

Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15327>
This commit is contained in:
Mike Blumenkrantz 2022-03-08 15:43:10 -05:00 committed by Marge Bot
parent 68267aeab8
commit b53ee02192
1 changed files with 3 additions and 0 deletions

View File

@ -1323,6 +1323,9 @@ get_output_type(struct ntv_context *ctx, unsigned register_index, unsigned num_c
case GLSL_TYPE_UINT:
return get_uvec_type(ctx, 32, num_components);
case GLSL_TYPE_DOUBLE:
return get_fvec_type(ctx, 64, num_components);
default:
break;
}