Skip to content

Commit

Permalink
Do not use DirectShow for Vulkan
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Feb 15, 2025
1 parent d0dd195 commit 0a98182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ if (platform === Platform.Windows) {
project.addLib('ws2_32');
project.addLib('Winhttp');

const directshow = (graphics !== GraphicsApi.Direct3D12 && graphics !== GraphicsApi.Default);
const directshow = (graphics !== GraphicsApi.Direct3D12 && graphics !== GraphicsApi.Vulkan && graphics !== GraphicsApi.Default);
if (directshow) {
project.addFile('Backends/System/Windows/Libraries/DirectShow/**');
project.addIncludeDir('Backends/System/Windows/Libraries/DirectShow/BaseClasses');
Expand Down

0 comments on commit 0a98182

Please sign in to comment.