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

  /external/chromium_org/skia/ext/
bitmap_platform_device.h 30 int bytesPerPixel = 4;
31 int64_t bytes = (int64_t)width * height * bytesPerPixel;
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
BMPImageReader.cpp 709 const size_t bytesPerPixel = m_infoHeader.biBitCount / 8;
710 const size_t unpaddedNumBytes = (m_infoHeader.biBitCount < 16) ? ((numPixels + pixelsPerByte - 1) / pixelsPerByte) : (numPixels * bytesPerPixel);
756 const uint32_t pixel = readCurrentPixel(bytesPerPixel);
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
PixelTransfer11.cpp 124 unsigned int bytesPerPixel = gl::GetInternalFormatInfo(internalFormat).pixelBytes;
126 unsigned int alignmentPixels = (alignmentBytes <= bytesPerPixel ? 1 : alignmentBytes / bytesPerPixel);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsUtils.java 156 int bytesPerPixel = ImageFormat.getBitsPerPixel(format) / 8;
164 if (pixelStride == bytesPerPixel) {
166 int length = w * bytesPerPixel;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
image.c 295 const GLint bytesPerPixel = _mesa_bytes_per_pixel(format, type);
296 if (bytesPerPixel <= 0)
299 bytesPerRow = bytesPerPixel * width;
302 bytesPerRow = bytesPerPixel * packing->RowLength;
342 const GLint bytesPerPixel = _mesa_bytes_per_pixel(format, type);
344 if (bytesPerPixel <= 0)
347 bytesPerRow = bytesPerPixel * width;
350 bytesPerRow = bytesPerPixel * packing->RowLength;
pack.c     [all...]
  /external/chromium_org/third_party/skia/include/core/
SkImageInfo.h 228 int bytesPerPixel() const {
233 return sk_64_mul(fWidth, this->bytesPerPixel());
254 return sk_64_mul(fHeight - 1, rowBytes) + fWidth * this->bytesPerPixel();
262 uint64_t rb = sk_64_mul(fWidth, this->bytesPerPixel());
SkBitmap.h 90 int bytesPerPixel() const { return fInfo.bytesPerPixel(); }
104 int shiftPerPixel() const { return this->bytesPerPixel() >> 1; }
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrTextStrike.cpp 319 int bytesPerPixel = GrMaskFormatBytesPerPixel(fMaskFormat);
321 size_t size = glyph->fBounds.area() * bytesPerPixel;
333 glyph->width() * bytesPerPixel,
  /external/mesa3d/src/mesa/main/
image.c 295 const GLint bytesPerPixel = _mesa_bytes_per_pixel(format, type);
296 if (bytesPerPixel <= 0)
299 bytesPerRow = bytesPerPixel * width;
302 bytesPerRow = bytesPerPixel * packing->RowLength;
342 const GLint bytesPerPixel = _mesa_bytes_per_pixel(format, type);
344 if (bytesPerPixel <= 0)
347 bytesPerRow = bytesPerPixel * width;
350 bytesPerRow = bytesPerPixel * packing->RowLength;
pack.c     [all...]
  /cts/tests/tests/graphics/src/android/opengl/cts/
CompressedTextureLoader.java 199 int bytesPerPixel = bitmap.getRowBytes() / bitmap.getWidth();
203 bytesPerPixel,
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
WebGLImageConversion.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
wmesa.c 289 UINT bytesPerPixel = pwfb->cColorBits / 8;
303 switch (bytesPerPixel) {
346 bytesPerPixel * x;
347 switch (bytesPerPixel) {
388 rowSize = width * bytesPerPixel;
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 309 int bytesPerPixel = Math.max(1, srcData.depth / 8);
311 ((srcData.height * bytesPerPixel - 1) / srcData.scanlinePad + 1) * srcData.scanlinePad;
317 int destIndex = destY * destBytesPerLine + destX * bytesPerPixel;
318 int srcIndex = srcY * srcData.bytesPerLine + srcX * bytesPerPixel;
319 System.arraycopy(srcData.data, srcIndex, newData, destIndex, bytesPerPixel);
  /external/mesa3d/src/mesa/drivers/windows/gdi/
wmesa.c 289 UINT bytesPerPixel = pwfb->cColorBits / 8;
303 switch (bytesPerPixel) {
346 bytesPerPixel * x;
347 switch (bytesPerPixel) {
388 rowSize = width * bytesPerPixel;
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CameraTestUtils.java 449 int bytesPerPixel = ImageFormat.getBitsPerPixel(format) / 8;
451 if (pixelStride == bytesPerPixel) {
453 length = w * bytesPerPixel;
460 length = (w - 1) * pixelStride + bytesPerPixel;
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
ImageReaderDecoderTest.java     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 969 milliseconds