Searched defs:sRGB (Results 1 - 7 of 7) sorted by relevance

/external/libpng/contrib/tools/
H A DmakesRGB.c1 /* 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) function
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(
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DCaps.h141 bool sRGB; member in struct:gl::Extensions
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/
H A Dvp9_dx_iface.c96 const int sRGB = 7; local
101 if (colorspace != sRGB) {
/external/libvpx/libvpx/vp9/
H A Dvp9_dx_iface.c125 const int sRGB = 7; local
138 if (colorspace != sRGB) {
/external/deqp/framework/common/
H A DtcuTexture.hpp56 sRGB, enumerator in enum:tcu::TextureFormat::ChannelOrder
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_colors.cpp519 m_bsRGB = nComponents == 3 && dwSize == 3144 && FXSYS_memcmp32(pData + 0x190, "sRGB IEC61966-2.1", 17) == 0;
1167 FX_BOOL CPDF_ColorSpace::sRGB() const function in class:CPDF_ColorSpace
/external/libpng/contrib/libtests/
H A Dpngstest.c39 #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*/) function
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
[all...]

Completed in 202 milliseconds