mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
20 lines
452 B
C++
20 lines
452 B
C++
#pragma once
|
|
|
|
#include <Metal/Metal.hpp>
|
|
|
|
namespace Metal {
|
|
|
|
class LutTexture {
|
|
public:
|
|
LutTexture(MTL::Device* device, MTL::TextureType type, MTL::PixelFormat pixelFormat, u32 width, u32 height, const char* name);
|
|
~LutTexture();
|
|
u32 getNextIndex();
|
|
|
|
MTL::Texture* getTexture() { return texture; }
|
|
u32 getCurrentIndex() { return currentIndex; }
|
|
private:
|
|
MTL::Texture* texture;
|
|
u32 currentIndex = 0;
|
|
};
|
|
|
|
} // namespace Metal
|