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
6eb2d9ce
Commit
6eb2d9ce
authored
7 years ago
by
Józef Kucia
Browse files
Options
Downloads
Patches
Plain Diff
libs/vkd3d-shader: Translate ieq instruction.
parent
6fa98eb7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libs/vkd3d-shader/spirv.c
+4
-0
4 additions, 0 deletions
libs/vkd3d-shader/spirv.c
with
4 additions
and
0 deletions
libs/vkd3d-shader/spirv.c
+
4
−
0
View file @
6eb2d9ce
...
...
@@ -1994,6 +1994,9 @@ static void vkd3d_dxbc_compiler_emit_comparison_instruction(struct vkd3d_dxbc_co
case
VKD3DSIH_EQ
:
op
=
SpvOpFOrdEqual
;
break
;
case
VKD3DSIH_IEQ
:
op
=
SpvOpIEqual
;
break
;
case
VKD3DSIH_NE
:
op
=
SpvOpFUnordNotEqual
;
break
;
...
...
@@ -2147,6 +2150,7 @@ void vkd3d_dxbc_compiler_handle_instruction(struct vkd3d_dxbc_compiler *compiler
vkd3d_dxbc_compiler_emit_dot
(
compiler
,
instruction
);
break
;
case
VKD3DSIH_EQ
:
case
VKD3DSIH_IEQ
:
case
VKD3DSIH_NE
:
vkd3d_dxbc_compiler_emit_comparison_instruction
(
compiler
,
instruction
);
break
;
...
...
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