mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
vkd3d-shader: Allocate the $Params buffer in hlsl_ctx_init().
For clarity. Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e292351fa9
commit
1ed82b9fc4
@ -1664,6 +1664,9 @@ static bool hlsl_ctx_init(struct hlsl_ctx *ctx, const struct hlsl_profile_info *
|
||||
if (!(ctx->globals_buffer = hlsl_new_buffer(ctx, HLSL_BUFFER_CONSTANT,
|
||||
hlsl_strdup(ctx, "$Globals"), NULL, ctx->location)))
|
||||
return false;
|
||||
if (!(ctx->params_buffer = hlsl_new_buffer(ctx, HLSL_BUFFER_CONSTANT,
|
||||
hlsl_strdup(ctx, "$Params"), NULL, ctx->location)))
|
||||
return false;
|
||||
ctx->cur_buffer = ctx->globals_buffer;
|
||||
|
||||
return true;
|
||||
|
@ -456,7 +456,7 @@ struct hlsl_ctx
|
||||
struct list extern_vars;
|
||||
|
||||
struct list buffers;
|
||||
struct hlsl_buffer *cur_buffer, *globals_buffer;
|
||||
struct hlsl_buffer *cur_buffer, *globals_buffer, *params_buffer;
|
||||
struct list types;
|
||||
struct rb_tree functions;
|
||||
const struct hlsl_ir_function_decl *cur_function;
|
||||
|
@ -1142,27 +1142,16 @@ static void calculate_buffer_offset(struct hlsl_ir_var *var)
|
||||
|
||||
static void allocate_buffers(struct hlsl_ctx *ctx)
|
||||
{
|
||||
struct hlsl_buffer *buffer, *params_buffer;
|
||||
struct hlsl_buffer *buffer;
|
||||
struct hlsl_ir_var *var;
|
||||
uint32_t index = 0;
|
||||
|
||||
if (!(params_buffer = hlsl_new_buffer(ctx, HLSL_BUFFER_CONSTANT,
|
||||
hlsl_strdup(ctx, "$Params"), NULL, ctx->location)))
|
||||
return;
|
||||
|
||||
/* The $Globals and $Params buffers should be allocated first, before all
|
||||
* explicit buffers. */
|
||||
list_remove(¶ms_buffer->entry);
|
||||
list_add_head(&ctx->buffers, ¶ms_buffer->entry);
|
||||
list_remove(&ctx->globals_buffer->entry);
|
||||
list_add_head(&ctx->buffers, &ctx->globals_buffer->entry);
|
||||
|
||||
LIST_FOR_EACH_ENTRY(var, &ctx->extern_vars, struct hlsl_ir_var, extern_entry)
|
||||
{
|
||||
if (var->is_uniform)
|
||||
{
|
||||
if (var->is_param)
|
||||
var->buffer = params_buffer;
|
||||
var->buffer = ctx->params_buffer;
|
||||
|
||||
calculate_buffer_offset(var);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user