comparison Renderer/Engine/viewer.h @ 986:ac437c3cf766 akira

double buffering of spanpack/polgonpack not yet worked.
author root@henri.cr.ie.u-ryukyu.ac.jp
date Fri, 01 Oct 2010 03:42:25 +0900
parents 9a53faae88d8
children c79651141045
comparison
equal deleted inserted replaced
985:e40dd2384357 986:ac437c3cf766
13 #include "matrix.h" 13 #include "matrix.h"
14 14
15 class SceneGraphRoot; 15 class SceneGraphRoot;
16 16
17 class Application; 17 class Application;
18
19 typedef struct rendering_data {
20 PolygonPack *ppack;
21 SpanPackPtr spackList;
22 SpanPackPtr *spackList_ptr;
23
24 int spackList_length;
25 int spackList_length_align;
26 } RederingData ;
27
28 extern RederingData r[2];
29
30 extern int ppi, spi;
18 31
19 class Viewer : public MainLoop { 32 class Viewer : public MainLoop {
20 33
21 public: 34 public:
22 Viewer(){ profile = 0;}; 35 Viewer(){ profile = 0;};