Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
vkd3d
Manage
Activity
Members
Labels
Plan
Wiki
Bugzilla
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wine
vkd3d
Merge requests
!462
vkd3d-shader/ir: Keep track of hull shader phases.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
vkd3d-shader/ir: Keep track of hull shader phases.
giomasce/vkd3d:stromboli
into
master
Overview
0
Commits
7
Pipelines
4
Changes
1
Merged
Giovanni Mascellani
requested to merge
giomasce/vkd3d:stromboli
into
master
1 year ago
Overview
0
Commits
7
Pipelines
4
Changes
1
Expand
Merge request reports
Viewing commit
b02edc98
Show latest version
1 file
+
6
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Unverified
b02edc98
vkd3d-shader/ir: Validate index count for IMMCONST64 registers.
· b02edc98
Giovanni Mascellani
authored
1 year ago
libs/vkd3d-shader/ir.c
+
6
−
0
Options
@@ -1554,6 +1554,12 @@ static void vsir_validate_register(struct validation_context *ctx,
reg
->
idx_count
);
break
;
case
VKD3DSPR_IMMCONST64
:
if
(
reg
->
idx_count
!=
0
)
validator_error
(
ctx
,
VKD3D_SHADER_ERROR_VSIR_INVALID_INDEX_COUNT
,
"Invalid index count %u for a IMMCONST64 register."
,
reg
->
idx_count
);
break
;
default:
break
;
}
Loading