Lines Matching refs:CAST
244 /* The GLuint cast might fail if DST or SRC are not dword-aligned (RISC) */
381 /** Copy a 3-element vector with cast */
382 #define COPY_3V_CAST( DST, SRC, CAST ) \
384 (DST)[0] = (CAST)(SRC)[0]; \
385 (DST)[1] = (CAST)(SRC)[1]; \
386 (DST)[2] = (CAST)(SRC)[2]; \
503 /** Copy a 2-element vector with cast */
504 #define COPY_2V_CAST( DST, SRC, CAST ) \
506 (DST)[0] = (CAST)(SRC)[0]; \
507 (DST)[1] = (CAST)(SRC)[1]; \