vkd3d-shader/hlsl: Improvements to static expression evaluation.
1 unresolved thread
1 unresolved thread
vkd3d-shader/hlsl: Support evaluated expressions for sample count in multisampled textures declarations.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com
Merge request reports
Activity
mentioned in merge request wine!3172 (merged)
1108 1108 unsigned int ret = 0; 1109 1109 bool progress; 1110 1110 1111 LIST_FOR_EACH_ENTRY(node, &block->instrs, struct hlsl_ir_node, entry) 1112 { 1113 switch (node->type) 1114 { 1115 case HLSL_IR_CONSTANT: 1116 case HLSL_IR_EXPR: 1117 case HLSL_IR_SWIZZLE: 1118 case HLSL_IR_LOAD: 1119 continue; 1120 default: 1121 hlsl_error(ctx, &node->loc, VKD3D_SHADER_ERROR_HLSL_INVALID_SYNTAX, 1122 "Expected literal expression."); Done. Maybe they have evaluation logic separate from optimization/elimination passes like we do now. I also added a test for index access, and that does not work yet probably because of some limitation of copy propagation/folding logic. But it's not filtered out too early now at least.
added 16 commits
-
24fadbe0...d5a0b3af - 14 commits from branch
wine:master
- bf1e6304 - vkd3d-shader/hlsl: Support evaluated expressions for sample count in...
- 7f51265e - vkd3d-shader/hlsl: Disallow certain instruction types from constant expressions.
-
24fadbe0...d5a0b3af - 14 commits from branch
added 19 commits
-
7f51265e...73d422a0 - 17 commits from branch
wine:master
- a65c0b0e - vkd3d-shader/hlsl: Support evaluated expressions for sample count in...
- 06040d2a - vkd3d-shader/hlsl: Disallow certain instruction types from constant expressions.
-
7f51265e...73d422a0 - 17 commits from branch
Please register or sign in to reply