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
166186ba
Commit
166186ba
authored
Dec 22, 2022
by
Zebediah Figura
Committed by
Alexandre Julliard
Jul 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Move the wined3d_vk.h include to individual files.
parent
49e437a0
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
15 additions
and
2 deletions
+15
-2
adapter_vk.c
dlls/wined3d/adapter_vk.c
+1
-0
buffer.c
dlls/wined3d/buffer.c
+1
-0
context_vk.c
dlls/wined3d/context_vk.c
+1
-0
device.c
dlls/wined3d/device.c
+1
-0
query.c
dlls/wined3d/query.c
+1
-0
resource.c
dlls/wined3d/resource.c
+1
-0
sampler.c
dlls/wined3d/sampler.c
+1
-0
shader_spirv.c
dlls/wined3d/shader_spirv.c
+1
-0
swapchain.c
dlls/wined3d/swapchain.c
+1
-0
texture.c
dlls/wined3d/texture.c
+1
-0
utils.c
dlls/wined3d/utils.c
+1
-0
view.c
dlls/wined3d/view.c
+1
-0
wined3d_main.c
dlls/wined3d/wined3d_main.c
+2
-0
wined3d_private.h
dlls/wined3d/wined3d_private.h
+0
-2
wined3d_vk.h
dlls/wined3d/wined3d_vk.h
+1
-0
No files found.
dlls/wined3d/adapter_vk.c
View file @
166186ba
...
...
@@ -17,6 +17,7 @@
*/
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
...
...
dlls/wined3d/buffer.c
View file @
166186ba
...
...
@@ -23,6 +23,7 @@
*/
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
...
...
dlls/wined3d/context_vk.c
View file @
166186ba
...
...
@@ -23,6 +23,7 @@
*/
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
...
...
dlls/wined3d/device.c
View file @
166186ba
...
...
@@ -25,6 +25,7 @@
*/
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
WINE_DECLARE_DEBUG_CHANNEL
(
d3d_perf
);
...
...
dlls/wined3d/query.c
View file @
166186ba
...
...
@@ -19,6 +19,7 @@
*/
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
...
...
dlls/wined3d/resource.c
View file @
166186ba
...
...
@@ -22,6 +22,7 @@
*/
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
WINE_DECLARE_DEBUG_CHANNEL
(
d3d_perf
);
...
...
dlls/wined3d/sampler.c
View file @
166186ba
...
...
@@ -18,6 +18,7 @@
*/
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
...
...
dlls/wined3d/shader_spirv.c
View file @
166186ba
...
...
@@ -18,6 +18,7 @@
*/
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d_shader
);
...
...
dlls/wined3d/swapchain.c
View file @
166186ba
...
...
@@ -21,6 +21,7 @@
*/
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
WINE_DECLARE_DEBUG_CHANNEL
(
d3d_perf
);
...
...
dlls/wined3d/texture.c
View file @
166186ba
...
...
@@ -21,6 +21,7 @@
*/
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
WINE_DECLARE_DEBUG_CHANNEL
(
d3d_perf
);
...
...
dlls/wined3d/utils.c
View file @
166186ba
...
...
@@ -27,6 +27,7 @@
#include <stdio.h>
#include "wined3d_private.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
...
...
dlls/wined3d/view.c
View file @
166186ba
...
...
@@ -19,6 +19,7 @@
#include "wined3d_private.h"
#include "wined3d_shaders.h"
#include "wined3d_vk.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
...
...
dlls/wined3d/wined3d_main.c
View file @
166186ba
...
...
@@ -27,6 +27,8 @@
#include "initguid.h"
#include "wined3d_private.h"
#include "d3d12.h"
#define VK_NO_PROTOTYPES
#include "wine/vulkan.h"
#include <vkd3d.h>
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d
);
...
...
dlls/wined3d/wined3d_private.h
View file @
166186ba
...
...
@@ -6048,6 +6048,4 @@ static inline bool wined3d_map_persistent(void)
extern
CRITICAL_SECTION
wined3d_command_cs
;
#include "wined3d_vk.h"
#endif
dlls/wined3d/wined3d_vk.h
View file @
166186ba
...
...
@@ -24,6 +24,7 @@
#include "wine/wined3d.h"
#define VK_NO_PROTOTYPES
#include "wine/vulkan.h"
#include "wined3d_private.h"
struct
wined3d_buffer_vk
;
struct
wined3d_context_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