2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 19:07:44 +00:00

Changes to support boo object tracker API

This commit is contained in:
Jack Andersen
2017-11-04 20:17:12 -10:00
parent d301491bd6
commit 3894749675
138 changed files with 1679 additions and 1243 deletions

View File

@@ -33,21 +33,21 @@ public:
};
private:
static boo::IShaderPipeline* m_texZWrite;
static boo::IShaderPipeline* m_texNoZWrite;
static boo::IShaderPipeline* m_texAdditiveZWrite;
static boo::IShaderPipeline* m_texAdditiveNoZWrite;
static boo::ObjToken<boo::IShaderPipeline> m_texZWrite;
static boo::ObjToken<boo::IShaderPipeline> m_texNoZWrite;
static boo::ObjToken<boo::IShaderPipeline> m_texAdditiveZWrite;
static boo::ObjToken<boo::IShaderPipeline> m_texAdditiveNoZWrite;
static boo::IShaderPipeline* m_noTexZWrite;
static boo::IShaderPipeline* m_noTexNoZWrite;
static boo::IShaderPipeline* m_noTexAdditiveZWrite;
static boo::IShaderPipeline* m_noTexAdditiveNoZWrite;
static boo::ObjToken<boo::IShaderPipeline> m_noTexZWrite;
static boo::ObjToken<boo::IShaderPipeline> m_noTexNoZWrite;
static boo::ObjToken<boo::IShaderPipeline> m_noTexAdditiveZWrite;
static boo::ObjToken<boo::IShaderPipeline> m_noTexAdditiveNoZWrite;
static boo::IVertexFormat* m_vtxFormat; /* No OpenGL */
static boo::ObjToken<boo::IVertexFormat> m_vtxFormat; /* No OpenGL */
CParticleSwoosh& m_gen;
boo::IShaderPipeline* m_pipeline;
CParticleSwooshShaders(CParticleSwoosh& gen, boo::IShaderPipeline* pipeline)
boo::ObjToken<boo::IShaderPipeline> m_pipeline;
CParticleSwooshShaders(CParticleSwoosh& gen, const boo::ObjToken<boo::IShaderPipeline>& pipeline)
: m_gen(gen), m_pipeline(pipeline) {}
public: