1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-06-25 22:09:35 +00:00
GLideN64/src/PaletteTexture.h
Logan McNaughton 958758b37a Remove PixelWriteBuffer
And a few other small fixes
2018-03-09 20:32:56 +07:00

22 lines
271 B
C++

#pragma once
#include <memory>
struct CachedTexture;
class PaletteTexture
{
public:
PaletteTexture();
void init();
void destroy();
void update();
private:
CachedTexture * m_pTexture;
u8* m_pbuf;
u32 m_paletteCRC256;
};
extern PaletteTexture g_paletteTexture;