HomeSort by relevance Sort by last modified time
    Searched refs:FIXED_SHIFT (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_context.h 409 #define FIXED_SHIFT FIXED_FRAC_BITS
410 #define FIXED_ONE (1 << FIXED_SHIFT)
411 #define FIXED_HALF (1 << (FIXED_SHIFT-1))
419 #define IntToFixed(I) ((I) << FIXED_SHIFT)
420 #define FixedToInt(X) ((X) >> FIXED_SHIFT)
421 #define FixedToUns(X) (((unsigned int)(X)) >> FIXED_SHIFT)
s_triangle.c 253 return a + ((t * (b - a)) >> FIXED_SHIFT);
307 dest[RCOMP] = span->red * (sample[RCOMP] + 1u) >> (FIXED_SHIFT + 8); \
308 dest[GCOMP] = span->green * (sample[GCOMP] + 1u) >> (FIXED_SHIFT + 8); \
309 dest[BCOMP] = span->blue * (sample[BCOMP] + 1u) >> (FIXED_SHIFT + 8); \
310 dest[ACOMP] = span->alpha * (sample[ACOMP] + 1u) >> (FIXED_SHIFT + 8)
314 ((sample[ACOMP] + 1) * sample[RCOMP] << FIXED_SHIFT)) \
315 >> (FIXED_SHIFT + 8); \
317 ((sample[ACOMP] + 1) * sample[GCOMP] << FIXED_SHIFT)) \
318 >> (FIXED_SHIFT + 8); \
320 ((sample[ACOMP] + 1) * sample[BCOMP] << FIXED_SHIFT)) \
    [all...]
s_linetemp.h 80 const GLint fixedToDepthShift = depthBits <= 16 ? FIXED_SHIFT : 0;
s_tritemp.h 131 const GLint fixedToDepthShift = depthBits <= 16 ? FIXED_SHIFT : 0;
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_context.h 409 #define FIXED_SHIFT FIXED_FRAC_BITS
410 #define FIXED_ONE (1 << FIXED_SHIFT)
411 #define FIXED_HALF (1 << (FIXED_SHIFT-1))
419 #define IntToFixed(I) ((I) << FIXED_SHIFT)
420 #define FixedToInt(X) ((X) >> FIXED_SHIFT)
421 #define FixedToUns(X) (((unsigned int)(X)) >> FIXED_SHIFT)
s_triangle.c 253 return a + ((t * (b - a)) >> FIXED_SHIFT);
307 dest[RCOMP] = span->red * (sample[RCOMP] + 1u) >> (FIXED_SHIFT + 8); \
308 dest[GCOMP] = span->green * (sample[GCOMP] + 1u) >> (FIXED_SHIFT + 8); \
309 dest[BCOMP] = span->blue * (sample[BCOMP] + 1u) >> (FIXED_SHIFT + 8); \
310 dest[ACOMP] = span->alpha * (sample[ACOMP] + 1u) >> (FIXED_SHIFT + 8)
314 ((sample[ACOMP] + 1) * sample[RCOMP] << FIXED_SHIFT)) \
315 >> (FIXED_SHIFT + 8); \
317 ((sample[ACOMP] + 1) * sample[GCOMP] << FIXED_SHIFT)) \
318 >> (FIXED_SHIFT + 8); \
320 ((sample[ACOMP] + 1) * sample[BCOMP] << FIXED_SHIFT)) \
    [all...]
s_linetemp.h 80 const GLint fixedToDepthShift = depthBits <= 16 ? FIXED_SHIFT : 0;
s_tritemp.h 131 const GLint fixedToDepthShift = depthBits <= 16 ? FIXED_SHIFT : 0;
    [all...]

Completed in 73 milliseconds