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

1 2

  /frameworks/base/opengl/include/ETC1/
etc1.h 62 // pixel (x,y) is at pIn + pixelSize * x + stride * y;
64 // pixelSize can be 2 or 3. 2 is an GL_UNSIGNED_SHORT_5_6_5 image, 3 is a GL_BYTE RGB image.
68 etc1_uint32 pixelSize, etc1_uint32 stride, etc1_byte* pOut);
73 // pixel (x,y) is at pIn + pixelSize * x + stride * y. Must be
75 // pixelSize can be 2 or 3. 2 is an GL_UNSIGNED_SHORT_5_6_5 image, 3 is a GL_BYTE RGB image.
80 etc1_uint32 pixelSize, etc1_uint32 stride);
  /frameworks/base/opengl/java/android/opengl/
ETC1.java 91 * pixel (x,y) is at pIn + pixelSize * x + stride * y;
94 * @param pixelSize must be 2 or 3. 2 is an GL_UNSIGNED_SHORT_5_6_5 image,
98 int pixelSize, int stride, Buffer out);
104 * pixel (x,y) is at pIn + pixelSize * x + stride * y. Must be
106 * @param pixelSize must be 2 or 3. 2 is an GL_UNSIGNED_SHORT_5_6_5 image,
110 int width, int height, int pixelSize, int stride);
ETC1Util.java 83 int pixelSize = useShorts ? 2 : 3;
84 int stride = pixelSize * width;
87 ETC1.decodeImage(data, decodedData, width, height, pixelSize, stride);
188 * @param pixelSize the size of a pixel in bytes (2 or 3)
192 public static ETC1Texture compressTexture(Buffer input, int width, int height, int pixelSize, int stride){
  /external/webkit/WebCore/platform/graphics/chromium/
VDMXParser.cpp 180 uint16_t pixelSize;
181 if (!buf.readU16(&pixelSize))
184 if (pixelSize > targetPixelSize)
187 if (pixelSize == targetPixelSize) {
SimpleFontDataLinux.cpp 64 int pixelSize = m_platformData.size() + 0.5;
73 && parseVDMX(&vdmxAscent, &vdmxDescent, vdmxTable, vdmxSize, pixelSize))
TransparencyWin.cpp 360 int pixelSize = m_layerSize.width() * m_layerSize.height();
361 if (pixelSize <= 0)
364 if (pixelSize > maxCachedBufferPixelSize) {
  /external/webkit/WebCore/platform/graphics/qt/
FontPlatformData.h 149 int pixelSize() const
153 return m_data->font.pixelSize();
  /frameworks/base/opengl/libs/ETC1/
etc1.cpp 509 // pixel (x,y) is at pIn + pixelSize * x + stride * y + redOffset;
513 etc1_uint32 pixelSize, etc1_uint32 stride, etc1_byte* pOut) {
514 if (pixelSize < 2 || pixelSize > 3) {
540 const etc1_byte* p = pIn + pixelSize * x + stride * (y + cy);
541 if (pixelSize == 3) {
549 p += pixelSize;
564 // pixel (x,y) is at pIn + pixelSize * x + stride * y + redOffset. Must be
570 etc1_uint32 pixelSize, etc1_uint32 stride) {
571 if (pixelSize < 2 || pixelSize > 3)
    [all...]
  /bootable/recovery/minui/
resources.c 95 size_t pixelSize = stride * height;
108 surface = malloc(sizeof(GGLSurface) + pixelSize);
  /frameworks/base/services/surfaceflinger/
LayerBlur.cpp 161 int32_t pixelSize = 4;
166 pixelSize = 2;
169 uint16_t* const pixels = (uint16_t*)malloc(s*h*pixelSize);
  /system/core/libpixelflinger/
buffer.cpp 191 int32_t pixelSize = pixel->s[i];
192 if (pixelSize < (h-l)) {
193 u = expand(u, pixelSize, h-l);
194 pixelSize = h-l;
196 v = downshift_component(v, u, pixelSize, 0, h, l, 0, 0, dither);
  /frameworks/base/core/jni/android/opengl/
util.cpp 880 * pixel (x,y) is at pIn + pixelSize * x + stride * y + redOffset;
885 jint pixelSize, jint stride, jobject out) {
886 if (pixelSize < 2 || pixelSize > 3) {
887 env->ThrowNew(gIAEClass, "pixelSize must be 2 or 3");
901 width, height, pixelSize,
912 * pixel (x,y) is at pIn + pixelSize * x + stride * y. Must be
918 jint pixelSize, jint stride) {
919 if (pixelSize < 2 || pixelSize > 3)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macwm.c 263 if ((noErr == err) && (8 == (**(**hGD).gdPMap).pixelSize)) /* if successful and on an 8 bit device */
358 if ((8 == (**(**hGD).gdPMap).pixelSize) && (noErr == err)) /* if successful and on an 8 bit device */
379 if ((8 == (**(**hGD).gdPMap).pixelSize) && (noErr == err)) /* if successful and on an 8 bit device */
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 256 long pixelSize = (long)getRowBytes() * getHeight();
258 if (bufferSize < pixelSize) {
266 position += pixelSize >> shift;
    [all...]
  /external/webkit/WebCore/platform/graphics/gtk/
FontGtk.cpp 162 attr = pango_attr_size_new_absolute(font->pixelSize() * PANGO_SCALE);
206 gdk_region_shrink(partialRegion, 0, -pixelSize());
  /external/webkit/WebCore/platform/graphics/mac/
FontCacheMac.mm 132 size = font.pixelSize();
  /external/webkit/WebCore/platform/graphics/
Font.h 77 int pixelSize() const { return fontDescription().computedPixelSize(); }
  /external/v8/benchmarks/
raytrace.js 913 var pixelSize = "5,5".split(','); // $F('pixelSize').split(',');
924 pixelWidth: pixelSize[0],
925 pixelHeight: pixelSize[1],
  /external/webkit/SunSpider/tests/v8-v4/
v8-raytrace.js 908 var pixelSize = "5,5".split(','); // $F('pixelSize').split(',');
919 pixelWidth: pixelSize[0],
920 pixelHeight: pixelSize[1],
  /external/webkit/WebCore/rendering/
SVGCharacterLayoutInfo.cpp 51 baselineShift = baselineShift / 100.0f * font.pixelSize();
  /external/webkit/WebKit/win/WebCoreSupport/
WebDragClient.cpp 313 IntPoint textPos(DRAG_LABEL_BORDER_X, DRAG_LABEL_BORDER_Y + labelFont->pixelSize());
  /external/qemu/distrib/sdl-1.2.12/src/video/macrom/
SDL_romvideo.c 216 vformat->BitsPerPixel = (**(**SDL_Display).gdPMap).pixelSize;
  /external/skia/src/core/
SkBitmap.cpp 45 static MipMap* Alloc(int levelCount, size_t pixelSize) {
52 size.add(pixelSize);
    [all...]
  /external/webkit/WebCore/platform/chromium/
ThemeChromiumMac.mm 205 int fontSize = font.pixelSize();
  /external/webkit/WebCore/platform/mac/
ThemeMac.mm 59 int fontSize = font.pixelSize();

Completed in 583 milliseconds

1 2