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
f19555c8
Commit
f19555c8
authored
Jan 26, 2023
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Disable shaderTessellationAndGeometryPointSize.
parent
f74de8e0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
adapter_vk.c
dlls/wined3d/adapter_vk.c
+1
-0
shader_spirv.c
dlls/wined3d/shader_spirv.c
+2
-1
No files found.
dlls/wined3d/adapter_vk.c
View file @
f19555c8
...
...
@@ -265,6 +265,7 @@ static void wined3d_disable_vulkan_features(struct wined3d_physical_device_info
features
->
shaderInt16
=
VK_FALSE
;
features
->
shaderResourceResidency
=
VK_FALSE
;
features
->
shaderResourceMinLod
=
VK_FALSE
;
features
->
shaderTessellationAndGeometryPointSize
=
VK_FALSE
;
features
->
sparseBinding
=
VK_FALSE
;
features
->
sparseResidencyBuffer
=
VK_FALSE
;
features
->
sparseResidencyImage2D
=
VK_FALSE
;
...
...
dlls/wined3d/shader_spirv.c
View file @
f19555c8
...
...
@@ -25,7 +25,8 @@ static const struct wined3d_shader_backend_ops spirv_shader_backend_vk;
static
const
struct
vkd3d_shader_compile_option
spirv_compile_options
[]
=
{
{
VKD3D_SHADER_COMPILE_OPTION_API_VERSION
,
VKD3D_SHADER_API_VERSION_1_3
},
{
VKD3D_SHADER_COMPILE_OPTION_API_VERSION
,
VKD3D_SHADER_API_VERSION_1_7
},
{
VKD3D_SHADER_COMPILE_OPTION_WRITE_TESS_GEOM_POINT_SIZE
,
0
},
};
struct
shader_spirv_resource_bindings
...
...
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