2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2018-02-01 23:19:34 +00:00
|
|
|
|
2020-09-28 20:54:40 +00:00
|
|
|
#include "hsh/hsh.h"
|
|
|
|
#include "Graphics/CGraphics.hpp"
|
2018-02-01 23:19:34 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde::MP1 {
|
2018-02-01 23:19:34 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CNESShader {
|
2018-02-01 23:19:34 +00:00
|
|
|
public:
|
2020-09-28 20:54:40 +00:00
|
|
|
static void BuildShaderDataBinding(hsh::binding& binding, hsh::vertex_buffer<TexUVVert> vbo,
|
|
|
|
hsh::uniform_buffer<ViewBlock> uniBuf, hsh::texture2d tex);
|
2018-02-01 23:19:34 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde::MP1
|