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

1 2

  /external/webkit/Source/WebCore/platform/image-decoders/haiku/
ImageDecoderHaiku.cpp 36 int bytesPerRow = width() * sizeof(PixelData);
37 OwnPtr<BBitmap> bitmap(new BBitmap(BRect(0, 0, width() - 1, height() - 1), 0, B_RGBA32, bytesPerRow));
46 memcpy(dst, source, bytesPerRow);
66 destination += bytesPerRow;
67 source += bytesPerRow;
  /external/webkit/Source/WebCore/platform/graphics/win/
DIBPixelData.h 59 unsigned bytesPerRow() const { return m_bytesPerRow; }
QTPixelBuffer.h 70 size_t bytesPerRow() const;
GraphicsContextCairoWin.cpp 104 pixelData.bytesPerRow());
144 setRGBABitmapAlpha(bytes, pixelData.size().height() * pixelData.bytesPerRow(), 255);
GraphicsContextCGWin.cpp 57 pixelData.bytesPerRow(), deviceRGBColorSpaceRef(), bitmapInfo);
108 pixelData.bytesPerRow(), deviceRGBColorSpaceRef(), kCGBitmapByteOrder32Little |
126 RetainPtr<CGImageRef> cgImage(AdoptCF, CGImageCreate(image->size().width(), image->size().height(), 8, 32, image->bytesPerRow(), deviceRGBColorSpaceRef(),
QTPixelBuffer.cpp 166 size_t QTPixelBuffer::bytesPerRow() const
MediaPlayerPrivateQuickTimeVisualContext.cpp 855 image = CGImageCreate(buffer.width(), buffer.height(), bitsPerComponent, bitsPerPixel, buffer.bytesPerRow(), colorSpace, alphaInfo, provider, 0, false, kCGRenderingIntentDefault);
903 uint64_t imageId = m_imageQueue->registerPixelBuffer(buffer.baseAddress(), buffer.dataSize(), buffer.bytesPerRow(), buffer.width(), buffer.height(), buffer.pixelFormatType(), attachments.get(), 0);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscossprite.c 51 int bytesPerRow;
67 bytesPerRow = bytesPerPixel * width;
69 if ((bytesPerRow & 3) != 0)
71 bytesPerRow += 4 - (bytesPerRow & 3);
73 size = bytesPerRow * height;
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContext3DCairo.cpp 73 size_t bytesPerRow = cairo_image_surface_get_stride(imageSurface.get());
75 unsigned int padding = bytesPerRow - bitsPerPixel / 8 * width;
78 while (bytesPerRow % srcUnpackAlignment)
  /external/webkit/Tools/DumpRenderTree/cg/
PixelDumpSupportCG.cpp 78 size_t bytesPerRow = CGBitmapContextGetBytesPerRow(bitmapContext);
91 bitmapData += bytesPerRow;
98 bitmapData += bytesPerRow;
  /external/webkit/Source/WebKit/mac/Carbon/
CarbonUtils.m 34 extern CGImageRef _NSCreateImageRef( unsigned char *const bitmapData[5], int pixelsWide, int pixelsHigh, int bitsPerSample, int samplesPerPixel, int bitsPerPixel, int bytesPerRow, BOOL isPlanar, BOOL hasAlpha, NSString *colorSpaceName, CGColorSpaceRef customColorSpace, id sourceObj);
125 [rep bytesPerRow], [rep isPlanar], [rep hasAlpha], [rep colorSpaceName],
  /external/webkit/Source/WebKit2/Shared/mac/
ShareableSurface.cpp 85 unsigned long bytesPerRow = IOSurfaceAlignProperty(kIOSurfaceBytesPerRow, width * bytesPerElement);
86 if (!bytesPerRow)
89 unsigned long allocSize = IOSurfaceAlignProperty(kIOSurfaceAllocSize, height * bytesPerRow);
107 values[4] = CFNumberCreate(0, kCFNumberLongType, &bytesPerRow);
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 64 unsigned long bytesPerRow = IOSurfaceAlignProperty(kIOSurfaceBytesPerRow, size.width() * bytesPerElement);
65 if (!bytesPerRow)
68 unsigned long allocSize = IOSurfaceAlignProperty(kIOSurfaceAllocSize, size.height() * bytesPerRow);
83 values[4] = CFNumberCreate(0, kCFNumberLongType, &bytesPerRow);
115 unsigned bytesPerRow = size.width();
116 if (bytesPerRow > 0x3FFFFFFF) // Protect against overflow
118 bytesPerRow *= 4;
119 m_data.m_bytesPerRow = bytesPerRow;
120 size_t dataSize = size.height() * bytesPerRow;
136 if (!tryFastCalloc(size.height(), bytesPerRow).getValue(m_data.m_data)
    [all...]
GraphicsContext3DCG.cpp 245 size_t bytesPerRow = CGImageGetBytesPerRow(cgImage);
246 unsigned int padding = bytesPerRow - bitsPerPixel / 8 * width;
249 while (bytesPerRow % srcUnpackAlignment)
  /external/webkit/Source/WebCore/platform/image-encoders/
PNGImageEncoder.cpp 116 unsigned bytesPerRow = size.width() * 4;
119 rgbaBigEndianData += bytesPerRow;
  /external/webkit/Tools/DumpRenderTree/cairo/
PixelDumpSupportCairo.cpp 73 size_t bytesPerRow = cairo_image_surface_get_stride(surface);
79 bitmapData += bytesPerRow;
  /external/webkit/Tools/WebKitTestRunner/cg/
TestInvocationCG.cpp 70 size_t bytesPerRow = CGBitmapContextGetBytesPerRow(bitmapContext);
82 bitmapData += bytesPerRow;
88 bitmapData += bytesPerRow;
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ImageHaiku.cpp 137 uint32 bytesPerRow = image->BytesPerRow();
144 bits += bytesPerRow;
ImageBufferHaiku.cpp 109 unsigned bytesPerRow = m_data.m_bitmap.BytesPerRow();
125 rowData += bytesPerRow;
243 uint32 sourceBytesPerRow = imageData.m_bitmap.BytesPerRow();
293 uint32 destBytesPerRow = imageData.m_bitmap.BytesPerRow();
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzWM.m 52 imgrep = [ [ [ NSBitmapImageRep alloc ] initWithBitmapDataPlanes: NULL pixelsWide: w pixelsHigh: h bitsPerSample: 1 samplesPerPixel: 2 hasAlpha: YES isPlanar: YES colorSpaceName: NSDeviceWhiteColorSpace bytesPerRow: (w+7)/8 bitsPerPixel: 0 ] autorelease ];
425 imgrep = [ [ [ NSBitmapImageRep alloc ] initWithBitmapDataPlanes: NULL pixelsWide: icon->w pixelsHigh: icon->h bitsPerSample: 8 samplesPerPixel: 4 hasAlpha: YES isPlanar: NO colorSpaceName: NSDeviceRGBColorSpace bytesPerRow: 4*icon->w bitsPerPixel: 32 ] autorelease ];
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 495 unsigned bytesPerRow() const { return m_pixelData.bytesPerRow(); }
  /external/webkit/Source/WebCore/platform/chromium/
ThemeChromiumMac.mm 119 bytesPerRow:4
  /external/webkit/Source/WebCore/rendering/
RenderThemeMac.mm 306 bytesPerRow:4
333 bytesPerRow:4
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginView.mm     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 591 milliseconds

1 2