Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- //
- // Neercs
- //
-
- #if !defined __VIDEO_RENDER_H__
- #define __VIDEO_RENDER_H__
-
- class Render : public WorldEntity
- {
- public:
- Render(caca_canvas_t *caca);
- virtual ~Render();
-
- char const *GetName() { return "<title>"; }
-
- protected:
- virtual void TickGame(float seconds);
- virtual void TickDraw(float seconds);
-
- void Draw2D();
- void Draw3D();
-
- private:
- int CreateGLWindow();
- int InitDraw();
- void Pause();
- void Shader();
- void UpdateVar();
-
- caca_canvas_t *m_caca;
- bool m_ready;
- bool m_pause;
- bool m_polygon;
- bool m_setup;
- bool m_shader;
- bool m_shader_remanency;
- bool m_shader_glow;
- bool m_shader_blur;
- bool m_shader_color;
- bool m_shader_noise;
- bool m_shader_postfx;
- };
-
- #endif // __VIDEO_RENDER_H__
|