2011-10-19 01:10:15 +02:00
|
|
|
#ifndef _DISPLAY_H
|
|
|
|
#define _DISPLAY_H
|
|
|
|
|
2012-01-15 03:35:36 +01:00
|
|
|
// OpenGL Cube
|
2011-12-27 18:48:15 +01:00
|
|
|
void drawLEDs(gint mode);
|
2011-10-30 23:55:53 +01:00
|
|
|
void drawWires();
|
|
|
|
|
2011-12-21 22:58:57 +01:00
|
|
|
void display(gboolean onlyForPicking);
|
2011-10-30 23:55:53 +01:00
|
|
|
|
|
|
|
void setScene();
|
2011-10-19 01:10:15 +02:00
|
|
|
|
2012-01-15 03:35:36 +01:00
|
|
|
// Hardware Cube
|
|
|
|
void displayCurrentFrame();
|
2012-01-15 22:43:32 +01:00
|
|
|
void uploadAnimation();
|
2012-01-15 03:35:36 +01:00
|
|
|
|
2011-10-19 01:10:15 +02:00
|
|
|
#endif
|
|
|
|
|