HomeSort by relevance Sort by last modified time
    Searched refs:bitDepth (Results 1 - 25 of 37) sorted by null

1 2

  /external/fonttools/Lib/fontTools/ttLib/tables/
E_B_D_T_.py 134 glyph.exportBitDepth = curStrike.bitmapSizeTable.bitDepth
269 bitDepth = bitmapObject.exportBitDepth
272 writer.begintag('rowimagedata', bitDepth=bitDepth, width=metrics.width, height=metrics.height)
275 rowData = bitmapObject.getRow(curRow, bitDepth=bitDepth, metrics=metrics)
282 bitDepth = safeEval(attrs['bitDepth'])
295 bitmapObject.setRows(dataRows, bitDepth=bitDepth, metrics=metrics
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 103 bool decodePalette(png_structp png_ptr, png_infop info_ptr, int bitDepth,
285 int bitDepth, colorType;
286 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth,
290 if (bitDepth == 16) {
296 if (bitDepth < 8) {
301 if (colorType == PNG_COLOR_TYPE_GRAY && bitDepth < 8) {
324 int bitDepth, pngColorType, interlaceType;
325 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth,
356 decodePalette(png_ptr, info_ptr, bitDepth, &hasAlpha, &reallyHasAlpha, &colorTable);
507 int bitDepth, colorType
    [all...]
  /external/skia/src/codec/
SkCodec_libpng.h 56 bool decodePalette(bool premultiply, int bitDepth, int* ctableCount);
SkCodec_libpng.cpp 122 bool SkPngCodec::decodePalette(bool premultiply, int bitDepth, int* ctableCount) {
176 addressed by the bitdepth of the image and fill it with the last palette color or black if
179 int colorCount = SkTMax(numPalette, 1 << SkTMin(bitDepth, 8));
251 int bitDepth, colorType;
252 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth,
265 if (bitDepth == 16) {
271 if (bitDepth < 8) {
276 if (colorType == PNG_COLOR_TYPE_GRAY && bitDepth < 8) {
441 int bitDepth, pngColorType, interlaceType;
442 png_get_IHDR(fPng_ptr, fInfo_ptr, &origWidth, &origHeight, &bitDepth,
    [all...]
  /external/deqp/framework/common/
tcuImageIO.cpp 111 const png_byte bitDepth = png_get_bit_depth(png_ptr, info_ptr);
113 if (colorType == PNG_COLOR_TYPE_RGB && bitDepth == 8)
115 else if (colorType == PNG_COLOR_TYPE_RGBA && bitDepth == 8)
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.cpp 94 NativePixmap (NativeDisplay* nativeDisplay, int width, int height, int bitDepth);
146 NativePixmap::NativePixmap (NativeDisplay* nativeDisplay, int width, int height, int bitDepth)
155 if (bitDepth != 24 && bitDepth != 32)
162 bitmapInfo.bmiHeader.biBitCount = bitDepth;
  /external/skia/src/sfnt/
SkOTTable_EBLC.h 56 struct BitDepth {
65 } bitDepth; //the Microsoft rasterizer v.1.7 or greater supports
  /external/sonivox/arm-wt-22k/lib_src/
eas_mdls.h 273 EAS_INT bitDepth;
eas_mdls.c 390 static const EAS_INT bitDepth = 8;
392 static const EAS_INT bitDepth = 16;
    [all...]
  /external/deqp/modules/egl/
teglNativeColorMappingTests.cpp 256 const tcu::UVec4 bitDepth(deMinu32(nativeBitDepth.x(), eglBitDepth.x()),
261 const tcu::UVec4 uColor = tcu::UVec4((deUint32)(((1u << bitDepth.x()) - 1u) * color.x()),
262 (deUint32)(((1u << bitDepth.y()) - 1u) * color.y()),
263 (deUint32)(((1u << bitDepth.z()) - 1u) * color.z()),
264 (deUint32)(((1u << bitDepth.w()) - 1u) * color.w()));
274 return tcu::intThresholdCompare(log, "Result compare", "Compare results", reference.getAccess(), result.getAccess(), tcu::UVec4(1u, 1u, 1u, (bitDepth.w() > 0 ? 1u : std::numeric_limits<deUint32>::max())), tcu::COMPARE_LOG_RESULT);
teglImageFormatTests.cpp 696 const tcu::IVec4 bitDepth = tcu::getTextureFormatMantissaBitDepth(reference.getFormat());
697 const tcu::IVec4 threshold (2 * (tcu::IVec4(1) << (tcu::IVec4(8) - bitDepth)));
    [all...]
  /frameworks/base/tools/aapt2/
Png.cpp 113 int colorType, bitDepth, interlaceType, compressionType;
114 png_get_IHDR(readPtr, infoPtr, &outInfo->width, &outInfo->height, &bitDepth, &colorType,
121 if (colorType == PNG_COLOR_TYPE_GRAY && bitDepth < 8) {
129 if (bitDepth == 16) {
422 int colorType, bitDepth, interlaceType, compressionType;
586 png_get_IHDR(writePtr, infoPtr, &width, &height, &bitDepth, &colorType, &interlaceType,
591 << ", d = " << bitDepth << ", colors = " << colorType
    [all...]
  /frameworks/av/media/libstagefright/webm/
WebmElement.cpp 331 WebmElement *bitDepth = new WebmUnsigned(kMkvBitDepth, bps);
332 audioInfo.push_back(bitDepth);
  /frameworks/base/media/java/android/media/
MediaCodec.java     [all...]
  /external/deqp/modules/gles3/functional/
es3fRasterizationTests.cpp 90 const tcu::IVec4 bitDepth = tcu::getTextureFormatBitDepth(glu::mapGLInternalFormat(internalFormat));
91 return tcu::PixelFormat(bitDepth.x(), bitDepth.y(), bitDepth.z(), bitDepth.w());
    [all...]
es3fFragmentOutputTests.cpp 526 const IVec4 bitDepth = tcu::getTextureFormatBitDepth(access.getFormat());
528 IVec4 dstPixel (0, 0, 0, (0x1u << (deUint64)bitDepth.w()) - 1);
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.10.0/
builder-0.10.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.11.2/
builder-0.11.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.12.1/
builder-0.12.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.12.2/
builder-0.12.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.13.0/
builder-0.13.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.13.3/
builder-0.13.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.13.4/
builder-0.13.4.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.9.1/
builder-0.9.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.9.3/
builder-0.9.3.jar 

Completed in 489 milliseconds

1 2