Texture.cpp 245 B

1234567891011
  1. #include "Texture.h"
  2. namespace love {
  3. namespace graphics {
  4. namespace vulkan {
  5. Texture::Texture(love::graphics::Graphics* gfx, const Settings& settings, const Slices* data)
  6. : love::graphics::Texture(gfx, settings, data) {
  7. }
  8. }
  9. }
  10. }