File: piprecalc.h

package info (click to toggle)
amoeba 1.1-13
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 732 kB
  • ctags: 971
  • sloc: cpp: 8,315; makefile: 178
file content (21 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _PIPRECALC_H
#define _PIPRECALC_H 1

#include "opengl/texture.h"
#include "opengl/glwindow.h"

class PiPrecalc {
public:
	PiPrecalc(GLWindow *win);
	~PiPrecalc();

	void update(float progress);
	
protected:
	int last_status;
	
	GLWindow *win;
	Texture *font;
};

#endif /* !defined(_PIPRECALC_H) */