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
7379451a
Commit
7379451a
authored
May 18, 2020
by
Henri Verbeet
Committed by
Alexandre Julliard
May 18, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add a supported extensions array to the wined3d_vk_info structure.
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a42808b5
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
9 deletions
+19
-9
adapter_gl.c
dlls/wined3d/adapter_gl.c
+2
-2
adapter_vk.c
dlls/wined3d/adapter_vk.c
+5
-2
device.c
dlls/wined3d/device.c
+2
-2
directx.c
dlls/wined3d/directx.c
+2
-2
wined3d_private.h
dlls/wined3d/wined3d_private.h
+1
-1
wined3d_vk.h
dlls/wined3d/wined3d_vk.h
+7
-0
No files found.
dlls/wined3d/adapter_gl.c
View file @
7379451a
...
...
@@ -4313,8 +4313,8 @@ static HRESULT adapter_gl_create_device(struct wined3d *wined3d, const struct wi
if
(
!
(
device_gl
=
heap_alloc_zero
(
sizeof
(
*
device_gl
))))
return
E_OUTOFMEMORY
;
if
(
FAILED
(
hr
=
wined3d_device_init
(
&
device_gl
->
d
,
wined3d
,
adapter
->
ordinal
,
device_type
,
f
ocus_window
,
flags
,
surface_alignment
,
levels
,
level_count
,
device_parent
)))
if
(
FAILED
(
hr
=
wined3d_device_init
(
&
device_gl
->
d
,
wined3d
,
adapter
->
ordinal
,
device_type
,
focus_window
,
f
lags
,
surface_alignment
,
levels
,
level_count
,
adapter
->
gl_info
.
supported
,
device_parent
)))
{
WARN
(
"Failed to initialize device, hr %#x.
\n
"
,
hr
);
heap_free
(
device_gl
);
...
...
dlls/wined3d/adapter_vk.c
View file @
7379451a
...
...
@@ -477,8 +477,8 @@ static HRESULT adapter_vk_create_device(struct wined3d *wined3d, const struct wi
goto
fail
;
}
if
(
FAILED
(
hr
=
wined3d_device_init
(
&
device_vk
->
d
,
wined3d
,
adapter
->
ordinal
,
device_type
,
f
ocus_window
,
flags
,
surface_alignment
,
levels
,
level_count
,
device_parent
)))
if
(
FAILED
(
hr
=
wined3d_device_init
(
&
device_vk
->
d
,
wined3d
,
adapter
->
ordinal
,
device_type
,
focus_window
,
f
lags
,
surface_alignment
,
levels
,
level_count
,
vk_info
->
supported
,
device_parent
)))
{
WARN
(
"Failed to initialize device, hr %#x.
\n
"
,
hr
);
wined3d_allocator_cleanup
(
&
device_vk
->
allocator
);
...
...
@@ -1745,6 +1745,9 @@ static BOOL wined3d_init_vulkan(struct wined3d_vk_info *vk_info)
if
(
!
enable_vulkan_instance_extensions
(
&
instance_info
.
enabledExtensionCount
,
enabled_instance_extensions
,
vk_info
))
goto
fail
;
memset
(
vk_info
->
supported
,
0
,
sizeof
(
vk_info
->
supported
));
vk_info
->
supported
[
WINED3D_VK_EXT_NONE
]
=
TRUE
;
if
((
vr
=
VK_CALL
(
vkCreateInstance
(
&
instance_info
,
NULL
,
&
instance
)))
<
0
)
{
WARN
(
"Failed to create Vulkan instance, vr %s.
\n
"
,
wined3d_debug_vkresult
(
vr
));
...
...
dlls/wined3d/device.c
View file @
7379451a
...
...
@@ -5676,7 +5676,7 @@ static BOOL wined3d_select_feature_level(const struct wined3d_adapter *adapter,
HRESULT
wined3d_device_init
(
struct
wined3d_device
*
device
,
struct
wined3d
*
wined3d
,
unsigned
int
adapter_idx
,
enum
wined3d_device_type
device_type
,
HWND
focus_window
,
unsigned
int
flags
,
BYTE
surface_alignment
,
const
enum
wined3d_feature_level
*
levels
,
unsigned
int
level_count
,
struct
wined3d_device_parent
*
device_parent
)
const
BOOL
*
supported_extensions
,
struct
wined3d_device_parent
*
device_parent
)
{
struct
wined3d_adapter
*
adapter
=
wined3d
->
adapters
[
adapter_idx
];
const
struct
wined3d_fragment_pipe_ops
*
fragment_pipeline
;
...
...
@@ -5716,7 +5716,7 @@ HRESULT wined3d_device_init(struct wined3d_device *device, struct wined3d *wined
if
(
vertex_pipeline
->
vp_states
&&
fragment_pipeline
->
states
&&
FAILED
(
hr
=
compile_state_table
(
device
->
state_table
,
device
->
multistate_funcs
,
&
adapter
->
d3d_info
,
adapter
->
gl_info
.
supported
,
vertex_pipeline
,
&
adapter
->
d3d_info
,
supported_extensions
,
vertex_pipeline
,
fragment_pipeline
,
adapter
->
misc_state_template
)))
{
ERR
(
"Failed to compile state table, hr %#x.
\n
"
,
hr
);
...
...
dlls/wined3d/directx.c
View file @
7379451a
...
...
@@ -2483,8 +2483,8 @@ static HRESULT adapter_no3d_create_device(struct wined3d *wined3d, const struct
if
(
!
(
device_no3d
=
heap_alloc_zero
(
sizeof
(
*
device_no3d
))))
return
E_OUTOFMEMORY
;
if
(
FAILED
(
hr
=
wined3d_device_init
(
&
device_no3d
->
d
,
wined3d
,
adapter
->
ordinal
,
device_type
,
f
ocus_window
,
flags
,
surface_alignment
,
levels
,
level_count
,
device_parent
)))
if
(
FAILED
(
hr
=
wined3d_device_init
(
&
device_no3d
->
d
,
wined3d
,
adapter
->
ordinal
,
device_type
,
focus_window
,
f
lags
,
surface_alignment
,
levels
,
level_count
,
adapter
->
gl_info
.
supported
,
device_parent
)))
{
WARN
(
"Failed to initialize device, hr %#x.
\n
"
,
hr
);
heap_free
(
device_no3d
);
...
...
dlls/wined3d/wined3d_private.h
View file @
7379451a
...
...
@@ -3572,7 +3572,7 @@ void wined3d_device_destroy_default_samplers(struct wined3d_device *device,
HRESULT
wined3d_device_init
(
struct
wined3d_device
*
device
,
struct
wined3d
*
wined3d
,
unsigned
int
adapter_idx
,
enum
wined3d_device_type
device_type
,
HWND
focus_window
,
unsigned
int
flags
,
BYTE
surface_alignment
,
const
enum
wined3d_feature_level
*
levels
,
unsigned
int
level_count
,
struct
wined3d_device_parent
*
device_parent
)
DECLSPEC_HIDDEN
;
const
BOOL
*
supported_extensions
,
struct
wined3d_device_parent
*
device_parent
)
DECLSPEC_HIDDEN
;
LRESULT
device_process_message
(
struct
wined3d_device
*
device
,
HWND
window
,
BOOL
unicode
,
UINT
message
,
WPARAM
wparam
,
LPARAM
lparam
,
WNDPROC
proc
)
DECLSPEC_HIDDEN
;
void
device_resource_add
(
struct
wined3d_device
*
device
,
struct
wined3d_resource
*
resource
)
DECLSPEC_HIDDEN
;
...
...
dlls/wined3d/wined3d_vk.h
View file @
7379451a
...
...
@@ -181,6 +181,12 @@ struct vulkan_ops
PFN_vkGetInstanceProcAddr
vkGetInstanceProcAddr
;
};
enum
wined3d_vk_extension
{
WINED3D_VK_EXT_NONE
,
WINED3D_VK_EXT_COUNT
,
};
struct
wined3d_vk_info
{
struct
vulkan_ops
vk_ops
;
...
...
@@ -188,6 +194,7 @@ struct wined3d_vk_info
VkInstance
instance
;
unsigned
int
api_version
;
BOOL
supported
[
WINED3D_VK_EXT_COUNT
];
#ifdef USE_WIN32_VULKAN
HMODULE
vulkan_lib
;
#endif
...
...
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