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
Merge requests
!282
hlsl: Replace bare list pointers with hlsl_block, part 5.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
hlsl: Replace bare list pointers with hlsl_block, part 5.
zfigura/vkd3d:pr1
into
master
Overview
0
Commits
5
Pipelines
2
Changes
1
Merged
Elizabeth Figura
requested to merge
zfigura/vkd3d:pr1
into
master
1 year ago
Overview
0
Commits
5
Pipelines
2
Changes
1
Expand
Merge request reports
Viewing commit
f95ab2a5
Prev
Next
Show latest version
1 file
+
16
−
24
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
f95ab2a5
vkd3d-shader/hlsl: Pass an hlsl_block pointer to add_assignment().
· f95ab2a5
Elizabeth Figura
authored
2 years ago
libs/vkd3d-shader/hlsl.h
+
1
−
1
Options
@@ -1074,7 +1074,7 @@ struct vkd3d_string_buffer *hlsl_component_to_string(struct hlsl_ctx *ctx, const
struct
vkd3d_string_buffer
*
hlsl_modifiers_to_string
(
struct
hlsl_ctx
*
ctx
,
unsigned
int
modifiers
);
const
char
*
hlsl_node_type_to_string
(
enum
hlsl_ir_node_type
type
);
struct
hlsl_ir_node
*
hlsl_add_conditional
(
struct
hlsl_ctx
*
ctx
,
struct
list
*
instrs
,
struct
hlsl_ir_node
*
hlsl_add_conditional
(
struct
hlsl_ctx
*
ctx
,
struct
hlsl_block
*
block
,
struct
hlsl_ir_node
*
condition
,
struct
hlsl_ir_node
*
if_true
,
struct
hlsl_ir_node
*
if_false
);
void
hlsl_add_function
(
struct
hlsl_ctx
*
ctx
,
char
*
name
,
struct
hlsl_ir_function_decl
*
decl
);
bool
hlsl_add_var
(
struct
hlsl_ctx
*
ctx
,
struct
hlsl_ir_var
*
decl
,
bool
local_var
);
Loading