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
80667b9f
Commit
80667b9f
authored
Dec 22, 2022
by
Zebediah Figura
Committed by
Alexandre Julliard
Jul 11, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Move struct wined3d_sampler_vk to wined3d_vk.h.
parent
0559f440
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
19 deletions
+19
-19
wined3d_private.h
dlls/wined3d/wined3d_private.h
+2
-19
wined3d_vk.h
dlls/wined3d/wined3d_vk.h
+17
-0
No files found.
dlls/wined3d/wined3d_private.h
View file @
80667b9f
...
...
@@ -4325,25 +4325,6 @@ void wined3d_sampler_gl_init(struct wined3d_sampler_gl *sampler_gl,
struct
wined3d_device
*
device
,
const
struct
wined3d_sampler_desc
*
desc
,
void
*
parent
,
const
struct
wined3d_parent_ops
*
parent_ops
)
DECLSPEC_HIDDEN
;
#include "wined3d_vk.h"
struct
wined3d_sampler_vk
{
struct
wined3d_sampler
s
;
VkDescriptorImageInfo
vk_image_info
;
uint64_t
command_buffer_id
;
};
static
inline
struct
wined3d_sampler_vk
*
wined3d_sampler_vk
(
struct
wined3d_sampler
*
sampler
)
{
return
CONTAINING_RECORD
(
sampler
,
struct
wined3d_sampler_vk
,
s
);
}
void
wined3d_sampler_vk_init
(
struct
wined3d_sampler_vk
*
sampler_vk
,
struct
wined3d_device
*
device
,
const
struct
wined3d_sampler_desc
*
desc
,
void
*
parent
,
const
struct
wined3d_parent_ops
*
parent_ops
)
DECLSPEC_HIDDEN
;
struct
wined3d_vertex_declaration_element
{
const
struct
wined3d_format
*
format
;
...
...
@@ -4795,6 +4776,8 @@ HRESULT wined3d_buffer_gl_init(struct wined3d_buffer_gl *buffer_gl, struct wined
const
struct
wined3d_buffer_desc
*
desc
,
const
struct
wined3d_sub_resource_data
*
data
,
void
*
parent
,
const
struct
wined3d_parent_ops
*
parent_ops
)
DECLSPEC_HIDDEN
;
#include "wined3d_vk.h"
struct
wined3d_buffer_vk
{
struct
wined3d_buffer
b
;
...
...
dlls/wined3d/wined3d_vk.h
View file @
80667b9f
...
...
@@ -842,4 +842,21 @@ void wined3d_texture_vk_make_generic(struct wined3d_texture_vk *texture_vk,
BOOL
wined3d_texture_vk_prepare_texture
(
struct
wined3d_texture_vk
*
texture_vk
,
struct
wined3d_context_vk
*
context_vk
)
DECLSPEC_HIDDEN
;
struct
wined3d_sampler_vk
{
struct
wined3d_sampler
s
;
VkDescriptorImageInfo
vk_image_info
;
uint64_t
command_buffer_id
;
};
static
inline
struct
wined3d_sampler_vk
*
wined3d_sampler_vk
(
struct
wined3d_sampler
*
sampler
)
{
return
CONTAINING_RECORD
(
sampler
,
struct
wined3d_sampler_vk
,
s
);
}
void
wined3d_sampler_vk_init
(
struct
wined3d_sampler_vk
*
sampler_vk
,
struct
wined3d_device
*
device
,
const
struct
wined3d_sampler_desc
*
desc
,
void
*
parent
,
const
struct
wined3d_parent_ops
*
parent_ops
)
DECLSPEC_HIDDEN
;
#endif
/* __WINE_WINED3D_VK */
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