Morph-SynRJ
view trans_fade.h @ 0:22de913c2d84
morph-synrj intro
| author | "Cedric Pinson <cedric.pinson@alcove.fr> <mornifle@plopbyte.net>" |
|---|---|
| date | Tue Nov 27 15:23:52 2007 +0100 (2007-11-27) |
| parents | |
| children |
line source
1 #ifndef TRANS_FADE_H
2 #define TRANS_FADE_H
4 #include "gl_header.h"
5 #include "cmn_texture.h"
7 class transFade_t
8 {
9 GLuint texture[2];
10 float alpha[2];
12 public:
14 transFade_t(){}
15 void Init();
18 void GetBuffer1();
19 void GetBuffer2();
20 void Draw(float _time);
22 };
24 #endif
