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
!166
vkd3d-shader/hlsl: Fix missing extern resource names.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
vkd3d-shader/hlsl: Fix missing extern resource names.
fcasas/vkd3d:fix_externs_name
into
master
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Francisco Casas
requested to merge
fcasas/vkd3d:fix_externs_name
into
master
2 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Merge request reports
Compare
master
version 1
0141e549
2 years ago
master (base)
and
latest version
latest version
3f9cd58f
1 commit,
2 years ago
version 1
0141e549
1 commit,
2 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
libs/vkd3d-shader/hlsl_sm4.c
+
1
−
1
Options
@@ -653,7 +653,7 @@ static void write_sm4_rdef(struct hlsl_ctx *ctx, struct dxbc_writer *dxbc)
var
=
extern_resources
[
i
];
string_offset
=
put_string
(
&
buffer
,
var
->
name
);
set_u32
(
&
buffer
,
resources_offset
+
i
++
*
8
*
sizeof
(
uint32_t
),
string_offset
);
set_u32
(
&
buffer
,
resources_offset
+
i
*
8
*
sizeof
(
uint32_t
),
string_offset
);
}
LIST_FOR_EACH_ENTRY
(
cbuffer
,
&
ctx
->
buffers
,
struct
hlsl_buffer
,
entry
)
Loading