Skip to content
Snippets Groups Projects
Commit df2d6d35 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard
Browse files

vkd3d-shader/hlsl: Use unsigned type for the 'dword' alias.

parent 89121766
No related branches found
Tags wine-0.9.54
No related merge requests found
......@@ -2837,7 +2837,7 @@ static void declare_predefined_types(struct hlsl_ctx *ctx)
}
effect_types[] =
{
{"dword", HLSL_CLASS_SCALAR, HLSL_TYPE_INT, 1, 1},
{"dword", HLSL_CLASS_SCALAR, HLSL_TYPE_UINT, 1, 1},
{"FLOAT", HLSL_CLASS_SCALAR, HLSL_TYPE_FLOAT, 1, 1},
{"VECTOR", HLSL_CLASS_VECTOR, HLSL_TYPE_FLOAT, 4, 1},
{"MATRIX", HLSL_CLASS_MATRIX, HLSL_TYPE_FLOAT, 4, 4},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment