Skip to content

Commit

Permalink
Remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Jan 15, 2024
1 parent dc4f22d commit a49073c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Common/GPU/Vulkan/thin3d_vulkan.cpp
Expand Up @@ -191,11 +191,9 @@ class VKShaderModule : public ShaderModule {
const std::string &GetSource() const { return source_; }
~VKShaderModule() {
if (module_) {
INFO_LOG(G3D, "~VKShaderModule");
VkShaderModule shaderModule = module_->BlockUntilReady();
vulkan_->Delete().QueueDeleteShaderModule(shaderModule);
vulkan_->Delete().QueueCallback([](VulkanContext *context, void *m) {
INFO_LOG(G3D, "destroying shader module promise");
auto module = (Promise<VkShaderModule> *)m;
delete module;
}, module_);
Expand Down

0 comments on commit a49073c

Please sign in to comment.