| 12345678910111213141516 |
- const ProgramDefines = {
- VertexNormal: 'VertexNormal',
- VertexColor: 'VertexColor',
- TexCoord: 'TexCoord',
- TexCoord2: 'TexCoord2',
- Instance: 'Instance',
- COMPRESS_VERTEX: 'COMPRESS_VERTEX',
- COMPRESS_NORMAL: 'COMPRESS_NORMAL',
- COMPRESS_COLOR: 'COMPRESS_COLOR',
- COMPRESS_TEXCOORD: 'COMPRESS_TEXCOORD',
- UseLineColor: 'USE_LINECOLOR',
- InstanceBim: 'InstanceBim',
- COMPUTE_TEXCOORD: 'COMPUTE_TEXCOORD'
- }
-
- export default Object.freeze(ProgramDefines)
|