mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d-shader/hlsl: Add support for RWTexture1DArray.
This commit is contained in:
committed by
Alexandre Julliard
parent
ae9d29a377
commit
2c71c18879
Notes:
Alexandre Julliard
2023-10-19 23:22:47 +02:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Henri Verbeet (@hverbeet) Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/419
@@ -4722,6 +4722,7 @@ static struct hlsl_scope *get_loop_scope(struct hlsl_scope *scope)
|
||||
%token KW_RWBUFFER
|
||||
%token KW_RWSTRUCTUREDBUFFER
|
||||
%token KW_RWTEXTURE1D
|
||||
%token KW_RWTEXTURE1DARRAY
|
||||
%token KW_RWTEXTURE2D
|
||||
%token KW_RWTEXTURE3D
|
||||
%token KW_SAMPLER
|
||||
@@ -5547,6 +5548,10 @@ uav_type:
|
||||
{
|
||||
$$ = HLSL_SAMPLER_DIM_1D;
|
||||
}
|
||||
| KW_RWTEXTURE1DARRAY
|
||||
{
|
||||
$$ = HLSL_SAMPLER_DIM_1DARRAY;
|
||||
}
|
||||
| KW_RWTEXTURE2D
|
||||
{
|
||||
$$ = HLSL_SAMPLER_DIM_2D;
|
||||
@@ -5697,6 +5702,7 @@ type_no_void:
|
||||
{
|
||||
case HLSL_SAMPLER_DIM_BUFFER:
|
||||
case HLSL_SAMPLER_DIM_1D:
|
||||
case HLSL_SAMPLER_DIM_1DARRAY:
|
||||
case HLSL_SAMPLER_DIM_2D:
|
||||
case HLSL_SAMPLER_DIM_3D:
|
||||
if ($3->class == HLSL_CLASS_ARRAY)
|
||||
|
||||
Reference in New Issue
Block a user