source:
downloads/RenderSystems/GL/src/nvparse/vs1.0_inst_list.h
@
1
Last change on this file since 1 was 1, checked in by landauf, 17 years ago | |
---|---|
File size: 438 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 | |
11 | typedef class VS10InstList { |
12 | public: |
13 | VS10InstList(); |
14 | ~VS10InstList(); |
15 | int Size(); |
16 | VS10InstList& operator+=(VS10InstPtr t); |
17 | void Validate(); |
18 | void Translate(); |
19 | private: |
20 | VS10InstPtr list; |
21 | int size; |
22 | int max; |
23 | } *VS10InstListPtr; |
24 | |
25 | #endif |
Note: See TracBrowser
for help on using the repository browser.