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