Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/RenderSystems/GL/src/nvparse/vs1.0_inst_list.h @ 5

Last change on this file since 5 was 5, checked in by anonymous, 17 years ago

=hoffentlich gehts jetzt

File size: 413 bytes
Line 
1#ifndef _VS10_H
2#define _VS10_H
3
4#define WRITEMASK_X             0x01
5#define WRITEMASK_Y             0x02
6#define WRITEMASK_Z             0x04
7#define WRITEMASK_W             0x08
8
9#include "vs1.0_inst.h"
10
11typedef class VS10InstList {
12public:
13        VS10InstList();
14        ~VS10InstList();
15        int Size();
16        VS10InstList& operator+=(VS10InstPtr t);
17        void Validate();
18        void Translate();
19private:
20    VS10InstPtr list;
21    int size;
22    int max;
23} *VS10InstListPtr;
24
25#endif
Note: See TracBrowser for help on using the repository browser.