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
!91
Two more fixes for functions.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Two more fixes for functions.
zfigura/vkd3d:pr0
into
master
Overview
0
Commits
2
Pipelines
2
Changes
2
Merged
Elizabeth Figura
requested to merge
zfigura/vkd3d:pr0
into
master
2 years ago
Overview
0
Commits
2
Pipelines
2
Changes
2
Expand
Merge request reports
Viewing commit
0e60f4cc
Prev
Next
Show latest version
2 files
+
3
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
0e60f4cc
vkd3d-shader/hlsl: Always set ctx->cur_function in the func_prototype_no_attrs rule.
· 0e60f4cc
Elizabeth Figura
authored
2 years ago
Fixes:
4c46075d
libs/vkd3d-shader/hlsl.y
+
2
−
1
Options
@@ -4138,12 +4138,13 @@ func_prototype_no_attrs:
{
if (!($$.decl = hlsl_new_func_decl(ctx, type, &$5, &$7.semantic, &@3)))
YYABORT;
ctx->cur_function = $$.decl;
hlsl_add_function(ctx, $3, $$.decl);
$$.first = true;
}
ctx->cur_function = $$.decl;
}
func_prototype:
Loading