2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-30 21:33:29 +00:00
metaforce/NESEmulator/CNESShader.hpp

15 lines
351 B
C++

#pragma once
#include "hsh/hsh.h"
#include "Graphics/CGraphics.hpp"
namespace metaforce::MP1 {
class CNESShader {
public:
static void BuildShaderDataBinding(hsh::binding& binding, hsh::vertex_buffer<TexUVVert> vbo,
hsh::uniform_buffer<ViewBlock> uniBuf, hsh::texture2d tex);
};
} // namespace metaforce::MP1