Home | History | Annotate | Download | only in Tools

Lines Matching refs:UVs

257  @Modified			UVs
263 static void SetUV(VERTTYPE** UVs, int index, VERTTYPE u, VERTTYPE v)
265 (*UVs)[index*2+0] = u;
266 (*UVs)[index*2+1] = v;
272 @Input adjustUV Adjust or not UVs for PVRT compression
275 @Output UVs Array of UVs
278 void PVRTCreateSkybox(float scale, bool adjustUV, int textureSize, VERTTYPE** Vertices, VERTTYPE** UVs)
281 *UVs = new VERTTYPE[24*2];
298 SetUV(UVs, 0, a0, a1);
299 SetUV(UVs, 1, a1, a1);
300 SetUV(UVs, 2, a0, a0);
301 SetUV(UVs, 3, a1, a0);
308 SetUV(UVs, 4, a0, a1);
309 SetUV(UVs, 5, a1, a1);
310 SetUV(UVs, 6, a0, a0);
311 SetUV(UVs, 7, a1, a0);
318 SetUV(UVs, 8 , a0, a1);
319 SetUV(UVs, 9 , a1, a1);
320 SetUV(UVs, 10, a0, a0);
321 SetUV(UVs, 11, a1, a0);
328 SetUV(UVs, 12, a0, a1);
329 SetUV(UVs, 13, a1, a1);
330 SetUV(UVs, 14, a0, a0);
331 SetUV(UVs, 15, a1, a0);
338 SetUV(UVs, 16, a0, a1);
339 SetUV(UVs, 17, a1, a1);
340 SetUV(UVs, 18, a0, a0);
341 SetUV(UVs, 19, a1, a0);
348 SetUV(UVs, 20, a0, a1);
349 SetUV(UVs, 21, a1, a1);
350 SetUV(UVs, 22, a0, a0);
351 SetUV(UVs, 23, a1, a0);
359 @Input UVs UVs array to destroy
362 void PVRTDestroySkybox(VERTTYPE* Vertices, VERTTYPE* UVs)
365 delete [] UVs;