mirror of https://github.com/AxioDL/metaforce.git
30 lines
672 B
C++
30 lines
672 B
C++
#pragma once
|
|
|
|
#include "../common.hpp"
|
|
#include "../gx.hpp"
|
|
|
|
#include <unordered_map>
|
|
|
|
namespace aurora::gfx::model {
|
|
struct DrawData {
|
|
PipelineRef pipeline;
|
|
Range vertRange;
|
|
Range idxRange;
|
|
Range sVtxRange;
|
|
Range sNrmRange;
|
|
Range sTcRange;
|
|
Range sPackedTcRange;
|
|
Range uniformRange;
|
|
uint32_t indexCount;
|
|
gx::GXBindGroups bindGroups;
|
|
};
|
|
|
|
struct PipelineConfig : gx::PipelineConfig {};
|
|
|
|
struct State {};
|
|
|
|
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::model
|