diff options
-rw-r--r-- | video.cpp | 10 | ||||
-rw-r--r-- | video.hpp | 3 |
2 files changed, 13 insertions, 0 deletions
@@ -3863,6 +3863,16 @@ void Device::destroy_sampleri(Sampler_Id id) { s.destroy(dev); } +int Device::swap_w() { + Device_Vk* dev = (Device_Vk*)this; + return (int)dev->swapchain.size.width; +} + +int Device::swap_h() { + Device_Vk* dev = (Device_Vk*)this; + return (int)dev->swapchain.size.height; +} + void Shader_Loader::init(Device_Vk* d) { dev = d; } @@ -519,6 +519,9 @@ struct Device { ); void destroy_sampler(Sampler_Id id); void destroy_sampleri(Sampler_Id id); + + int swap_w(); + int swap_h(); }; struct Context { |