Skip to content

Commit

Permalink
MSVC C++20 module specific fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe2933 committed Jul 21, 2024
1 parent 0a369db commit 6274e7e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions descriptor_set_layouts.cppm
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
export module vk_deferred:descriptor_set_layouts;

#ifdef _MSC_VER
import std;
#endif
import vku;

export struct DeferredLightRendererDescriptorSetLayout final : vku::DescriptorSetLayouts<2> {
Expand Down
3 changes: 3 additions & 0 deletions pipelines.cppm
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
export module vk_deferred:pipelines;

#ifdef _MSC_VER
import std;
#endif
export import glm;
export import vulkan_hpp;
import vku;
Expand Down
3 changes: 3 additions & 0 deletions render_passes.cppm
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
export module vk_deferred:render_passes;

#ifdef _MSC_VER
import std;
#endif
import vku;
export import vulkan_hpp;

Expand Down

0 comments on commit 6274e7e

Please sign in to comment.