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
065ef0c5
Commit
065ef0c5
authored
10 months ago
by
Conor McCarthy
Committed by
Alexandre Julliard
10 months ago
Browse files
Options
Downloads
Patches
Plain Diff
vkd3d-shader/spirv: Implement the WAVE_IS_FIRST_LANE instruction.
parent
c30976e5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!856
vkd3d-shader/dxil: Wave ops part 3.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libs/vkd3d-shader/spirv.c
+21
-0
21 additions, 0 deletions
libs/vkd3d-shader/spirv.c
tests/hlsl/wave-ops-uint.shader_test
+2
-2
2 additions, 2 deletions
tests/hlsl/wave-ops-uint.shader_test
with
23 additions
and
2 deletions
libs/vkd3d-shader/spirv.c
+
21
−
0
View file @
065ef0c5
...
...
@@ -1768,6 +1768,13 @@ static uint32_t vkd3d_spirv_build_op_group_nonuniform_ballot_bit_count(struct vk
result_type
,
vkd3d_spirv_get_op_scope_subgroup
(
builder
),
group_op
,
val_id
);
}
static
uint32_t
vkd3d_spirv_build_op_group_nonuniform_elect
(
struct
vkd3d_spirv_builder
*
builder
)
{
vkd3d_spirv_enable_capability
(
builder
,
SpvCapabilityGroupNonUniform
);
return
vkd3d_spirv_build_op_tr1
(
builder
,
&
builder
->
function_stream
,
SpvOpGroupNonUniformElect
,
vkd3d_spirv_get_op_type_bool
(
builder
),
vkd3d_spirv_get_op_scope_subgroup
(
builder
));
}
static
uint32_t
vkd3d_spirv_build_op_glsl_std450_tr1
(
struct
vkd3d_spirv_builder
*
builder
,
enum
GLSLstd450
op
,
uint32_t
result_type
,
uint32_t
operand
)
{
...
...
@@ -9904,6 +9911,17 @@ static void spirv_compiler_emit_wave_bit_count(struct spirv_compiler *compiler,
spirv_compiler_emit_store_dst
(
compiler
,
dst
,
val_id
);
}
static
void
spirv_compiler_emit_wave_is_first_lane
(
struct
spirv_compiler
*
compiler
,
const
struct
vkd3d_shader_instruction
*
instruction
)
{
struct
vkd3d_spirv_builder
*
builder
=
&
compiler
->
spirv_builder
;
const
struct
vkd3d_shader_dst_param
*
dst
=
instruction
->
dst
;
uint32_t
val_id
;
val_id
=
vkd3d_spirv_build_op_group_nonuniform_elect
(
builder
);
spirv_compiler_emit_store_dst
(
compiler
,
dst
,
val_id
);
}
/* This function is called after declarations are processed. */
static
void
spirv_compiler_emit_main_prolog
(
struct
spirv_compiler
*
compiler
)
{
...
...
@@ -10272,6 +10290,9 @@ static int spirv_compiler_handle_instruction(struct spirv_compiler *compiler,
case
VKD3DSIH_WAVE_ALL_BIT_COUNT
:
spirv_compiler_emit_wave_bit_count
(
compiler
,
instruction
);
break
;
case
VKD3DSIH_WAVE_IS_FIRST_LANE
:
spirv_compiler_emit_wave_is_first_lane
(
compiler
,
instruction
);
break
;
case
VKD3DSIH_DCL
:
case
VKD3DSIH_DCL_HS_MAX_TESSFACTOR
:
case
VKD3DSIH_DCL_INPUT_CONTROL_POINT_COUNT
:
...
...
This diff is collapsed.
Click to expand it.
tests/hlsl/wave-ops-uint.shader_test
+
2
−
2
View file @
065ef0c5
...
...
@@ -24,7 +24,7 @@ void main(uint id : SV_GroupIndex)
}
[test]
todo
dispatch 4 1 1
dispatch 4 1 1
probe uav 1 (0) rui (1)
probe uav 1 (1) rui (0)
probe uav 1 (2) rui (0)
...
...
@@ -46,7 +46,7 @@ void main(uint id : SV_GroupIndex)
}
[test]
todo
dispatch 4 1 1
dispatch 4 1 1
probe uav 1 (0) rui (0)
probe uav 1 (1) rui (1)
probe uav 1 (2) rui (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