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
Commits
1b7340a6
Commit
1b7340a6
authored
1 month ago
by
Conor McCarthy
Committed by
Henri Verbeet
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
tests/hlsl: Add a numeric types 16-bit test.
parent
49a683f2
No related branches found
No related tags found
1 merge request
!1368
tests/hlsl: Native 16-bit tests part 2.
Pipeline
#37629
skipped
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/hlsl/numeric-types.shader_test
+23
-0
23 additions, 0 deletions
tests/hlsl/numeric-types.shader_test
with
23 additions
and
0 deletions
tests/hlsl/numeric-types.shader_test
+
23
−
0
View file @
1b7340a6
...
...
@@ -100,3 +100,26 @@ float4 main() : sv_target
13.0, 14.0, 15.0);
return m[1];
}
[require]
shader model >= 6.2
native-16-bit
[pixel shader]
float4 main() : sv_target
{
half4 a = {0, 1, 2, 3};
half2 b = {4, 5};
int16_t3 c = {6.4, 7, 8};
int16_t d = 9.4;
uint16_t4x2 e = {14.4, 15, 16, 17, 18, 19, 20, 21};
vector<half, 3> g = {22, 23, 24};
matrix<uint16_t, 3, 2> h = {25.4, 26, 27, 28, 29, 30};
return mul(e, b) + a + c.xyzx + d + g.xxyz + h[2].xyxy;
}
[test]
draw quad
probe (0, 0) rgba (197.0, 218.0, 238.0, 257.0)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment