mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-04-13 05:43:18 -07:00
vkd3d-shader/spirv: Emit a trace instead of a warning message for ignored alignment.
This commit is contained in:
parent
e340855122
commit
f47ac703ab
Notes:
Alexandre Julliard
2024-05-13 22:58:15 +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/857
@ -3617,8 +3617,9 @@ static void spirv_compiler_emit_dereference_register(struct spirv_compiler *comp
|
|||||||
indexes[index_count++] = spirv_compiler_emit_register_addressing(compiler, ®->idx[0]);
|
indexes[index_count++] = spirv_compiler_emit_register_addressing(compiler, ®->idx[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Alignment is supported only in the Kernel execution model and is an optimisation only. */
|
||||||
if (reg->alignment)
|
if (reg->alignment)
|
||||||
WARN("Ignoring alignment %u.\n", reg->alignment);
|
TRACE("Ignoring alignment %u.\n", reg->alignment);
|
||||||
|
|
||||||
if (index_count)
|
if (index_count)
|
||||||
{
|
{
|
||||||
@ -5904,8 +5905,9 @@ static void spirv_compiler_emit_dcl_indexable_temp(struct spirv_compiler *compil
|
|||||||
vsir_register_init(®, VKD3DSPR_IDXTEMP, VKD3D_DATA_FLOAT, 1);
|
vsir_register_init(®, VKD3DSPR_IDXTEMP, VKD3D_DATA_FLOAT, 1);
|
||||||
reg.idx[0].offset = temp->register_idx;
|
reg.idx[0].offset = temp->register_idx;
|
||||||
|
|
||||||
|
/* Alignment is supported only in the Kernel execution model and is an optimisation only. */
|
||||||
if (temp->alignment)
|
if (temp->alignment)
|
||||||
WARN("Ignoring alignment %u.\n", temp->alignment);
|
TRACE("Ignoring alignment %u.\n", temp->alignment);
|
||||||
|
|
||||||
function_location = spirv_compiler_get_current_function_location(compiler);
|
function_location = spirv_compiler_get_current_function_location(compiler);
|
||||||
vkd3d_spirv_begin_function_stream_insertion(builder, function_location);
|
vkd3d_spirv_begin_function_stream_insertion(builder, function_location);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user