source: OGRE/trunk/ogrenew/RenderSystems/GL/src/nvparse/ts1.0_inst_list.h @ 692

Revision 692, 305 bytes checked in by mattausch, 18 years ago (diff)

adding ogre 1.2 and dependencies

Line 
1#ifndef _InstList_h
2#define _InstList_h
3
4#include "ts1.0_inst.h"
5
6typedef class InstList {
7public:
8        InstList();
9        ~InstList();
10        int Size();
11        InstList& operator+=(InstPtr t);
12        void Validate();
13        void Invoke();
14private:
15    InstPtr list;
16    int size;
17    int max;
18} *InstListPtr;
19
20#endif
Note: See TracBrowser for help on using the repository browser.