Home | History | Annotate | Download | only in swrast

Lines Matching defs:vector

60       GLfloat vector[6];
61 vector[SWIZZLE_X] = texel[0];
62 vector[SWIZZLE_Y] = texel[1];
63 vector[SWIZZLE_Z] = texel[2];
64 vector[SWIZZLE_W] = texel[3];
65 vector[SWIZZLE_ZERO] = 0.0F;
66 vector[SWIZZLE_ONE] = 1.0F;
67 colorOut[0] = vector[GET_SWZ(swizzle, 0)];
68 colorOut[1] = vector[GET_SWZ(swizzle, 1)];
69 colorOut[2] = vector[GET_SWZ(swizzle, 2)];
70 colorOut[3] = vector[GET_SWZ(swizzle, 3)];