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

  /external/libpng/contrib/tools/
makesRGB.c 1 /* makesRGB.c -- build sRGB-to-linear and linear-to-sRGB conversion tables
10 * Make a table to convert 8-bit sRGB encoding values into the closest 16-bit
14 * approximation to the 8-bit sRGB encoded value. Calculate the error in these
27 #include "sRGB.h"
49 sRGB(unsigned int i)
127 double lo = 255 * sRGB(i << 15);
128 double hi = 255 * sRGB((i+1) << 15);
155 unsigned int iexact = nearbyint(255*sRGB(i));
227 unsigned int iexact = nearbyint(255*sRGB(i))
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/
vp9_dx_iface.c 128 const int sRGB = 7;
141 if (colorspace != sRGB) {
  /external/libvpx/libvpx/vp9/
vp9_dx_iface.c 125 const int sRGB = 7;
138 if (colorspace != sRGB) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_dx_iface.c 112 const int sRGB = 7;
125 if (colorspace != sRGB) {
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_colors.cpp 519 m_bsRGB = nComponents == 3 && dwSize == 3144 && FXSYS_memcmp32(pData + 0x190, "sRGB IEC61966-2.1", 17) == 0;
    [all...]
  /external/deqp/framework/common/
tcuTexture.hpp 56 sRGB,
    [all...]
  /external/libpng/contrib/libtests/
pngstest.c 39 #include "../tools/sRGB.h"
52 * misbehavior, such as using a simple power law to correct sRGB to linear.
133 /* sRGB support: use exact calculations rounded to the nearest int, see the
156 sRGB(double linear /*range 0.0 .. 1.0*/)
164 return sRGB(fixed_linear / 65535.);
178 return sRGB((double)component / alpha);
219 * sRGB transform, given an 8-bit value which might be either sRGB or power-law.
340 printf(" --sRGB-16bit");
352 "sRGB-gray"
    [all...]

Completed in 1751 milliseconds