metaforce/aurora/lib/gfx/stream/shader.hpp

25 lines
593 B
C++
Raw Normal View History

2022-03-05 03:36:54 +00:00
#pragma once
#include "../common.hpp"
#include "../gx.hpp"
2022-03-05 03:36:54 +00:00
namespace aurora::gfx::stream {
struct DrawData {
PipelineRef pipeline;
Range vertRange;
Range uniformRange;
Range indexRange;
uint32_t indexCount;
2022-03-07 23:53:42 +00:00
gx::GXBindGroups bindGroups;
u32 dstAlpha;
2022-03-05 03:36:54 +00:00
};
2022-03-07 23:53:42 +00:00
struct PipelineConfig : public gx::PipelineConfig {};
2022-03-05 03:36:54 +00:00
struct State {};
2022-03-05 03:36:54 +00:00
State construct_state();
wgpu::RenderPipeline create_pipeline(const State& state, [[maybe_unused]] PipelineConfig config);
void render(const State& state, const DrawData& data, const wgpu::RenderPassEncoder& pass);
} // namespace aurora::gfx::stream