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
!650
tests/shader-runner: Add a 64-bit switch test.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
tests/shader-runner: Add a 64-bit switch test.
cmccarthy/vkd3d:switch_64
into
master
Overview
0
Commits
1
Pipelines
3
Changes
1
Merged
Conor McCarthy
requested to merge
cmccarthy/vkd3d:switch_64
into
master
1 year ago
Overview
0
Commits
1
Pipelines
3
Changes
1
Expand
Merge request reports
Compare
master
version 1
ffd80142
1 year ago
master (base)
and
latest version
latest version
7d51a7d9
1 commit,
1 year ago
version 1
ffd80142
1 commit,
1 year ago
1 file
+
33
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
tests/hlsl/switch.shader_test
+
33
−
0
Options
@@ -616,3 +616,36 @@ if(sm<4) uniform 0 float4 1 0 3 1
if(sm>=4) uniform 0 uint4 1 0 3 1
draw quad
probe all rgba (3.0, 4.0, 5.0, 6.0)
[require]
shader model >= 6.0
[pixel shader]
uint64_t2 v;
float4 main() : sv_target
{
// Need three cases because dxcompiler optimises two case values to a pair of vselect instructions.
switch (v.x)
{
case 0:
return 3.0;
case 0x100000002:
return 4.0;
case 3:
return 2.0;
default:
return 5.0;
}
}
[test]
uniform 0 uint64_t2 2 0
draw quad
probe all rgba (5.0, 5.0, 5.0, 5.0)
uniform 0 uint64_t2 0x100000002 0
draw quad
probe all rgba (4.0, 4.0, 4.0, 4.0)
uniform 0 uint64_t2 0 0
draw quad
probe all rgba (3.0, 3.0, 3.0, 3.0)
Loading