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
!1454
vkd3d-shader/msl: Do not leak resources when failing to initialize the generator.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
vkd3d-shader/msl: Do not leak resources when failing to initialize the generator.
giomasce/vkd3d:vulcano
into
master
Overview
0
Commits
1
Pipelines
3
Changes
1
Merged
Giovanni Mascellani
requested to merge
giomasce/vkd3d:vulcano
into
master
1 week ago
Overview
0
Commits
1
Pipelines
3
Changes
1
Expand
Spin-off of
!1448 (merged)
.
Merge request reports
Compare
master
version 1
db74551f
1 week ago
master (base)
and
latest version
latest version
7fb28881
1 commit,
1 week ago
version 1
db74551f
1 commit,
1 week ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
libs/vkd3d-shader/msl.c
+
1
−
1
Options
@@ -1292,7 +1292,7 @@ static int msl_generator_init(struct msl_generator *gen, struct vsir_program *pr
{
msl_compiler_error
(
gen
,
VKD3D_SHADER_ERROR_MSL_INTERNAL
,
"Internal compiler error: Unhandled shader type %#x."
,
type
);
return
VKD3D_ERROR_INVALID_SHADER
;
gen
->
prefix
=
"unknown"
;
}
gen
->
interface_info
=
vkd3d_find_struct
(
compile_info
->
next
,
INTERFACE_INFO
);
Loading