11 lines
145 B
C++
11 lines
145 B
C++
![]() |
#pragma once
|
||
|
|
||
|
#include <vulkan/vulkan.h>
|
||
|
|
||
|
#include "gfx_sampler.hpp"
|
||
|
|
||
|
class GFXVulkanSampler: public GFXSampler {
|
||
|
public:
|
||
|
VkSampler sampler;
|
||
|
};
|