10 lines
162 B
C++
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;
|
|
};
|