mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d-shader: Write SM1 constant definitions.
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
committed by
Alexandre Julliard
parent
d0ab65c7a1
commit
16e549e579
@@ -407,6 +407,11 @@ struct hlsl_profile_info
|
||||
bool software;
|
||||
};
|
||||
|
||||
struct hlsl_vec4
|
||||
{
|
||||
float f[4];
|
||||
};
|
||||
|
||||
struct hlsl_ctx
|
||||
{
|
||||
const struct hlsl_profile_info *profile;
|
||||
@@ -440,6 +445,12 @@ struct hlsl_ctx
|
||||
} builtin_types;
|
||||
|
||||
struct list static_initializers;
|
||||
|
||||
struct hlsl_constant_defs
|
||||
{
|
||||
struct hlsl_vec4 *values;
|
||||
size_t count, size;
|
||||
} constant_defs;
|
||||
};
|
||||
|
||||
enum hlsl_error_level
|
||||
|
||||
Reference in New Issue
Block a user