Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1c682aa2
Commit
1c682aa2
authored
Dec 09, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Reduce usage of long integral types in view.c.
parent
2a0133ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
view.c
dlls/wined3d/view.c
+2
-2
No files found.
dlls/wined3d/view.c
View file @
1c682aa2
...
...
@@ -1800,7 +1800,7 @@ struct wined3d_uav_clear_constants_vk
};
static
VkPipeline
create_uav_pipeline
(
struct
wined3d_context_vk
*
context_vk
,
struct
wined3d_pipeline_layout_vk
*
layout
,
const
DWORD
*
byte_code
,
size_t
byte_code_size
,
struct
wined3d_pipeline_layout_vk
*
layout
,
const
unsigned
int
*
byte_code
,
size_t
byte_code_size
,
enum
wined3d_shader_resource_type
resource_type
)
{
VkComputePipelineCreateInfo
pipeline_info
;
...
...
@@ -1815,7 +1815,7 @@ static VkPipeline create_uav_pipeline(struct wined3d_context_vk *context_vk,
vk_info
=
context_vk
->
vk_info
;
context
=
&
context_vk
->
c
;
shader_desc
.
byte_code
=
byte_code
;
shader_desc
.
byte_code
=
(
const
DWORD
*
)
byte_code
;
shader_desc
.
byte_code_size
=
byte_code_size
;
shader_module
=
(
VkShaderModule
)
context
->
device
->
adapter
->
shader_backend
->
shader_compile
(
context
,
&
shader_desc
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment