Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/engine/gfx/vulkan/src/gfx_vulkan_sampler.hpp
2021-10-14 08:51:58 -04:00

10 lines
162 B
C++

#pragma once
#include <vulkan/vulkan.h>
#include "gfx_sampler.hpp"
class GFXVulkanSampler: public GFXSampler {
public:
VkSampler sampler = VK_NULL_HANDLE;
};