HomeSort by relevance Sort by last modified time
    Searched defs:gamma_table (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/qcms/src/
transform_util.c 123 void compute_curve_gamma_table_type1(float gamma_table[256], double gamma)
127 gamma_table[i] = pow(i/255., gamma);
131 void compute_curve_gamma_table_type2(float gamma_table[256], uint16_t *table, int length)
135 gamma_table[i] = lut_interp_linear(i/255., table, length);
139 void compute_curve_gamma_table_type_parametric(float gamma_table[256], float parameter[7], int count)
194 gamma_table[X] = pow(a * X / 255. + b, y) + c + e;
196 gamma_table[X] = c * X / 255. + f;
201 void compute_curve_gamma_table_type0(float gamma_table[256])
205 gamma_table[i] = i/255.;
241 void validate_gamma_table(float gamma_table[256]
255 float *gamma_table; local
458 float gamma_table[256]; local
543 float gamma_table[256]; local
    [all...]
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngstruct.h 175 png_bytep gamma_table; /* gamma table for 8-bit depth files */ member in struct:png_struct_def
pngrtran.c 3490 png_const_bytep gamma_table = png_ptr->gamma_table; local
4222 png_const_bytep gamma_table = png_ptr->gamma_table; local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
png.h 1231 png_bytep gamma_table; \/* gamma table for 8-bit depth files *\/ member in struct:png_struct_def
    [all...]

Completed in 222 milliseconds