Searched defs:bitmap (Results 276 - 292 of 292) sorted by relevance

<<1112

/external/skia/src/gpu/
H A DSkGpuDevice.cpp79 // Helper for turning a bitmap into a texture. If the bitmap is GrTexture backed this
87 const SkBitmap& bitmap,
91 *texture = this->set(context, bitmap, params);
95 const SkBitmap& bitmap,
97 // Either get the texture directly from the bitmap, or else use the cache and
99 if (GrTexture* bmpTexture = bitmap.getTexture()) {
103 fTexture.reset(GrRefCachedBitmapTexture(context, bitmap, params));
268 // need to bump our genID for compatibility with clients that "know" we have a bitmap
923 static int determine_tile_size(const SkBitmap& bitmap, cons argument
86 AutoBitmapTexture(GrContext* context, const SkBitmap& bitmap, const GrTextureParams* params, GrTexture** texture) argument
94 set(GrContext* context, const SkBitmap& bitmap, const GrTextureParams* params) argument
943 determine_clipped_src_rect(const GrContext* context, const GrRenderTarget* rt, const GrClip& clip, const SkMatrix& viewMatrix, const SkBitmap& bitmap, const SkRect* srcRectPtr, SkIRect* clippedSrcIRect) argument
973 shouldTileBitmap(const SkBitmap& bitmap, const SkMatrix& viewMatrix, const GrTextureParams& params, const SkRect* srcRectPtr, int maxTileSize, int* tileSize, SkIRect* clippedSrcRect) const argument
1026 drawBitmap(const SkDraw& origDraw, const SkBitmap& bitmap, const SkMatrix& m, const SkPaint& paint) argument
1113 needs_texture_domain(const SkBitmap& bitmap, const SkRect& srcRect, GrTextureParams &params, const SkMatrix& contextMatrix, bool bicubic) argument
1331 drawTiledBitmap(const SkBitmap& bitmap, const SkMatrix& viewMatrix, const SkRect& srcRect, const SkIRect& clippedSrcIRect, const GrTextureParams& params, const SkPaint& paint, SkCanvas::DrawBitmapRectFlags flags, int tileSize, bool bicubic) argument
1424 internalDrawBitmap(const SkBitmap& bitmap, const SkMatrix& viewMatrix, const SkRect& srcRect, const GrTextureParams& params, const SkPaint& paint, SkCanvas::DrawBitmapRectFlags flags, bool bicubic, bool needsTextureDomain) argument
1522 drawSprite(const SkDraw& draw, const SkBitmap& bitmap, int left, int top, const SkPaint& paint) argument
1589 drawBitmapRect(const SkDraw& origDraw, const SkBitmap& bitmap, const SkRect* src, const SkRect& dst, const SkPaint& paint, SkCanvas::DrawBitmapRectFlags flags) argument
[all...]
/external/skia/src/pdf/
H A DSkPDFDevice.cpp413 // face of floating-point accuracy and possible SkRegion bitmap
1000 void SkPDFDevice::drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap, argument
1005 if (bitmap.isOpaque()) {
1014 bitmapBounds.isetWH(bitmap.width(), bitmap.height());
1024 const SkBitmap* bitmapPtr = &bitmap;
1026 // clip the tmpSrc to the bounds of the bitmap, and recompute dstRect if
1038 // the bitmap, we extract a subset.
1042 if (!bitmap.extractSubset(&tmpBitmap, srcIR)) {
1062 void SkPDFDevice::drawBitmap(const SkDraw& d, const SkBitmap& bitmap, argument
1079 drawSprite(const SkDraw& d, const SkBitmap& bitmap, int x, int y, const SkPaint& srcPaint) argument
2069 const SkBitmap* bitmap = &origBitmap; local
[all...]
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c1203 * Return pointer to temp_texture info for non-bitmap ops.
2616 * the 'off' bits. A bitmap cache as in the gallium/mesa state
2625 struct bitmap_state *bitmap = &ctx->Meta->Bitmap; local
2666 if (bitmap->ArrayObj == 0) {
2670 _mesa_GenVertexArraysAPPLE(1, &bitmap->ArrayObj);
2671 _mesa_BindVertexArrayAPPLE(bitmap->ArrayObj);
2674 _mesa_GenBuffersARB(1, &bitmap->VBO);
2675 _mesa_BindBufferARB(GL_ARRAY_BUFFER_ARB, bitmap->VBO);
2688 _mesa_BindVertexArray(bitmap->ArrayObj);
2689 _mesa_BindBufferARB(GL_ARRAY_BUFFER_ARB, bitmap
[all...]
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_gdipext.cpp207 typedef GpStatus (WINGDIPAPI *FuncType_GdipCreateBitmapFromFileICM)(GDIPCONST WCHAR* filename, GpBitmap **bitmap);
208 typedef GpStatus (WINGDIPAPI *FuncType_GdipCreateBitmapFromStreamICM)(IStream* stream, GpBitmap **bitmap);
212 typedef GpStatus (WINGDIPAPI *FuncType_GdipBitmapLockBits)(GpBitmap* bitmap, GDIPCONST GpRect* rect, UINT flags, PixelFormat format, BitmapData* lockedBitmapData);
215 typedef GpStatus (WINGDIPAPI *FuncType_GdipBitmapUnlockBits)(GpBitmap* bitmap, BitmapData* lockedBitmapData);
218 typedef GpStatus (WINGDIPAPI *FuncType_GdipCreateBitmapFromScan0)(INT width, INT height, INT stride, PixelFormat format, BYTE* scan0, GpBitmap** bitmap);
222 typedef GpStatus (WINGDIPAPI *FuncType_GdipCreateBitmapFromGdiDib)(GDIPCONST BITMAPINFO* gdiBitmapInfo, VOID* gdiBitmapData, GpBitmap** bitmap);
387 GpBitmap* bitmap; local
389 (image_clip.Width() + 3) / 4 * 4, PixelFormat8bppIndexed, pStretched->GetBuffer(), &bitmap);
398 CallFunc(GdipSetImagePalette)(bitmap, (ColorPalette*)pal);
399 CallFunc(GdipDrawImageI)(pGraphics, bitmap, image_rec
405 GpBitmap* bitmap; local
434 GpBitmap* bitmap = NULL; local
563 GdipCreateFromImage(void* bitmap, void** graphics) argument
677 GdipDisposeImage(void* bitmap) argument
[all...]
/external/skia/samplecode/
H A DSampleApp.cpp1100 SkBitmap bitmap = capture_bitmap(canvas); local
1101 bitmap.lockPixels();
1116 canvas->drawBitmapRect(bitmap, &src, dest);
1125 SkColor color = bitmap.getColor(fMouseX, fMouseY);
1544 if (query->isType("ignore-window-bitmap")) {
2132 SkBitmap bitmap = capture_bitmap(canvas); local
2133 TiledPipeController tc(bitmap, &SkImageDecoder::DecodeMemory, &canvas->getTotalMatrix());
/external/skia/src/core/
H A DSkCanvas.cpp109 by the device's XY offset and bitmap-bounds.
202 bitmap/device to draw into from this level. This value is NOT
559 SkBitmap bitmap; local
560 bitmap.setInfo(SkImageInfo::MakeUnknown(width, height));
561 return bitmap;
614 SkCanvas::SkCanvas(const SkBitmap& bitmap, const SkSurfaceProps& props) argument
620 SkAutoTUnref<SkBaseDevice> device(SkNEW_ARGS(SkBitmapDevice, (bitmap)));
624 SkCanvas::SkCanvas(const SkBitmap& bitmap) argument
630 SkAutoTUnref<SkBaseDevice> device(SkNEW_ARGS(SkBitmapDevice, (bitmap)));
702 bool SkCanvas::readPixels(SkBitmap* bitmap, in argument
727 readPixels(const SkIRect& srcRect, SkBitmap* bitmap) argument
762 writePixels(const SkBitmap& bitmap, int x, int y) argument
1180 internalDrawBitmap(const SkBitmap& bitmap, const SkMatrix& matrix, const SkPaint* paint) argument
1249 onDrawSprite(const SkBitmap& bitmap, int x, int y, const SkPaint* paint) argument
1749 drawBitmap(const SkBitmap& bitmap, SkScalar dx, SkScalar dy, const SkPaint* paint) argument
1756 drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src, const SkRect& dst, const SkPaint* paint, DrawBitmapRectFlags flags) argument
1764 drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, const SkRect& dst, const SkPaint* paint) argument
1772 drawSprite(const SkBitmap& bitmap, int left, int top, const SkPaint* paint) argument
2019 onDrawBitmap(const SkBitmap& bitmap, SkScalar x, SkScalar y, const SkPaint* paint) argument
2043 internalDrawBitmapRect(const SkBitmap& bitmap, const SkRect* src, const SkRect& dst, const SkPaint* paint, DrawBitmapRectFlags flags) argument
2075 onDrawBitmapRect(const SkBitmap& bitmap, const SkRect* src, const SkRect& dst, const SkPaint* paint, DrawBitmapRectFlags flags) argument
2082 internalDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, const SkRect& dst, const SkPaint* paint) argument
2152 onDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, const SkRect& dst, const SkPaint* paint) argument
2665 SkBitmap bitmap; local
[all...]
/external/skia/src/device/xps/
H A DSkXPSDevice.cpp108 SkBitmap bitmap; local
109 bitmap.setInfo(SkImageInfo::MakeUnknown(width, height));
110 return bitmap;
630 const SkBitmap& bitmap,
636 if (!SkImageEncoder::EncodeStream(&write, bitmap,
638 HRM(E_FAIL, "Unable to encode bitmap as png.");
667 static_cast<FLOAT>(bitmap.width()), static_cast<FLOAT>(bitmap.height())
687 const SkScalar bWidth = SkIntToScalar(bitmap.width());
688 const SkScalar bHeight = SkIntToScalar(bitmap
629 createXpsImageBrush( const SkBitmap& bitmap, const SkMatrix& localMatrix, const SkShader::TileMode (&xy)[2], const SkAlpha alpha, IXpsOMTileBrush** xpsBrush) argument
1799 drawBitmap(const SkDraw& d, const SkBitmap& bitmap, const SkMatrix& matrix, const SkPaint& paint) argument
1871 drawSprite(const SkDraw&, const SkBitmap& bitmap, int x, int y, const SkPaint& paint) argument
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dkvm.h873 __u64 bitmap; member in struct:kvm_dirty_tlb
H A Dvideodev2.h813 void __user *bitmap; member in struct:v4l2_window
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.launcher.jar ... name public boolean showSplash (java.lang.String) String bitmap public boolean updateSplash () public long getSplashHandle () boolean isLibraryLoadedByJava () public boolean ...
H A Dorg.eclipse.equinox.launcher_1.1.0.v20100507.jar ... name public boolean showSplash (java.lang.String) String bitmap public boolean updateSplash () public long getSplashHandle () boolean isLibraryLoadedByJava () public boolean ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dmaps_v16.jarcom/google/android/maps/GeoPoint.class " package com.google.android.maps public com.google ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/libvncserver/x11vnc/
H A Dnox11.h998 Pixmap clip_mask; /* bitmap clipping; other calls for rects */
2140 Pixmap bitmap; member in union:_XIMStatusDrawCallbackStruct::__anon9333
5016 Pixmap /* bitmap */,
5742 Pixmap icon_mask; /* icon mask bitmap */
/external/mdnsresponder/mDNSCore/
H A DmDNSEmbeddedAPI.h790 // + 256 * 34 = 8704 bytes of bitmap data
796 mDNSu8 bitmap[32]; member in struct:__anon11634
/external/valgrind/include/vki/
H A Dvki-linux.h3527 #define VKI_ETHTOOL_GFLAGS 0x00000025 /* Get flags bitmap(ethtool_value) */
3528 #define VKI_ETHTOOL_SFLAGS 0x00000026 /* Set flags bitmap(ethtool_value) */
3877 void __user *bitmap; member in struct:vki_v4l2_window

Completed in 674 milliseconds

<<1112