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

  /external/skia/src/core/
SkBitmapController.h 27 const SkPixmap& pixmap() const { return fPixmap; } function in class:SkBitmapController::State
SkLightingShader.cpp 431 const SkPixmap& pixmap = fDiffuseState->fPixmap; local
432 bool isOpaque = pixmap.isOpaque();
  /external/skia/bench/
PDFBench.cpp 52 SkAutoPixmapStorage pixmap; variable
53 pixmap.alloc(SkImageInfo::MakeN32Premul(img->dimensions()));
54 if (img->readPixels(pixmap, 0, 0)) {
56 pixmap.info(), pixmap.addr(),
57 pixmap.rowBytes(), pixmap.ctable()));
  /external/skia/tests/
SpecialImageTest.cpp 25 static bool PeekPixels(const SkSpecialImage* img, SkPixmap* pixmap) {
26 return img->peekPixels(pixmap);
75 SkPixmap pixmap; local
77 !!TestingSpecialImageAccess::PeekPixels(img, &pixmap));
79 REPORTER_ASSERT(reporter, kFullSize == pixmap.width());
80 REPORTER_ASSERT(reporter, kFullSize == pixmap.height());
TextureCompressionTest.cpp 57 SkAutoPixmapStorage pixmap; local
58 pixmap.alloc(SkImageInfo::MakeA8(kWidth, kHeight));
66 SkAutoDataUnref data(SkTextureCompressor::CompressBitmapToFormat(pixmap, fmt));
86 SkAutoPixmapStorage pixmap; local
87 pixmap.alloc(SkImageInfo::MakeN32Premul(kWidth, kHeight));
95 SkAutoDataUnref data(SkTextureCompressor::CompressBitmapToFormat(pixmap, fmt));
117 SkAutoPixmapStorage pixmap; local
118 pixmap.alloc(SkImageInfo::MakeA8(kWidth, kHeight));
122 uint8_t* pixels = reinterpret_cast<uint8_t*>(pixmap.writable_addr());
136 pixels += pixmap.rowBytes()
195 SkAutoPixmapStorage pixmap; local
    [all...]
  /hardware/intel/common/libva/test/putsurface/
putsurface_x11.c 52 static Pixmap create_pixmap(void *win_display, int width, int height)
57 Pixmap pixmap; local
64 printf("Create a pixmap from ROOT window %dx%d, pixmap size %dx%d\n\n", attr.width, attr.height, width, height);
65 pixmap = XCreatePixmap(x11_display, root, width, height,
68 return pixmap;
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 116 * use only one reusable pixmap with the maximum dimensions.
117 * draw the entire font into a single pixmap (careful with
132 Pixmap pixmap; local
135 pixmap = XCreatePixmap(dpy, win, 8 * width, height, 1);
137 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
143 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
145 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
156 XFreePixmap(dpy, pixmap);
214 Pixmap pixmap local
    [all...]
  /external/mesa3d/src/glx/apple/
apple_glx_drawable.h 71 GLXPbuffer xid; /* our pixmap */
108 struct apple_glx_pixmap pixmap; member in union:apple_glx_drawable::__anon20135
216 bool apple_glx_pixmap_create(Display * dpy, int screen, Pixmap pixmap,
220 bool apple_glx_pixmap_destroy(Display * dpy, Pixmap pixmap);
222 bool apple_glx_pixmap_query(GLXPixmap pixmap, int attribute,
  /external/mesa3d/src/glx/
glx_pbuffer.c 494 Pixmap pixmap; local
557 pixmap = XCreatePixmap(dpy, RootWindow(dpy, config->screen),
560 if (!CreateDRIDrawable(dpy, config, pixmap, id, attrib_list, i)) {
562 XFreePixmap(dpy, pixmap);
866 glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixmap,
874 if (apple_glx_pixmap_create(dpy, modes->screen, pixmap, modes))
877 return pixmap;
880 (Drawable) pixmap, attrib_list, X_GLXCreatePixmap)
    [all...]
xfont.c 122 * use only one reusable pixmap with the maximum dimensions.
123 * draw the entire font into a single pixmap (careful with
138 Pixmap pixmap; local
141 pixmap = XCreatePixmap(dpy, win, 8 * width, height, 1);
143 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
149 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
151 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
162 XFreePixmap(dpy, pixmap);
219 Pixmap pixmap local
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.c 123 * use only one reusable pixmap with the maximum dimensions.
124 * draw the entire font into a single pixmap (careful with
139 Pixmap pixmap; local
142 pixmap = XCreatePixmap(dpy, win, 8 * width, height, 1);
144 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
150 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
152 image = XGetImage(dpy, pixmap, 0, 0, 8 * width, height, 1, XYPixmap);
163 XFreePixmap(dpy, pixmap);
221 Pixmap pixmap local
    [all...]
xmesaP.h 83 GLboolean ximage_flag; /* Use XImage for back buffer (not pixmap)? */
130 PIXMAP, /* GLX pixmap */
147 * Either <ximage> or <pixmap> will be used, never both.
148 * In any case, <drawable> always equals <pixmap>.
149 * For stand-alone Mesa, we could merge <drawable> and <pixmap> into one
159 XMesaPixmap pixmap; /* Back color buffer */ member in struct:xmesa_renderbuffer
160 XMesaImage *ximage; /* The back buffer, if not using a Pixmap */
190 BufferType type; /* window, pixmap, pbuffer or glxwindow */
203 /* BACK_PIXMAP = use Pixmap for back buffer *
    [all...]
  /external/skia/include/core/
SkPixmap.h 48 * If supported, set this pixmap to point to the pixels in the specified mask and return true.
49 * On failure, return false and set this pixmap to empty.
54 * Computes the intersection of area and this pixmap. If that intersection is non-empty,
164 * Copy the pixels from this pixmap into the dst pixmap, converting as needed into dst's
174 * will return false). If subset does not intersect the bounds of this pixmap, returns false.
197 * return true and fill out the pixmap to point to that memory. The storage will be freed
200 * On failure, return false and reset() the pixmap to empty.
205 * Allocate memory for the pixels needed to match the specified Info and fill out the pixmap
214 * Returns an SkData object wrapping the allocated pixels memory, and resets the pixmap
262 const SkPixmap& pixmap() const { function in class:SkAutoPixmapUnlock
    [all...]
  /external/deqp/modules/egl/
teglMakeCurrentPerfTests.cpp 309 eglu::NativePixmap* pixmap = DE_NULL; local
314 pixmap = pixmapFactory.createPixmap(&m_eglTestCtx.getNativeDisplay(), m_display, m_config, DE_NULL, width, height);
315 surface = eglu::createPixmapSurface(m_eglTestCtx.getNativeDisplay(), *pixmap, m_display, m_config, DE_NULL);
322 delete pixmap;
326 m_pixmaps.push_back(pixmap);
420 log << TestLog::Message << "Pixmap count: " << m_pixmaps.size() << TestLog::EndMessage;
teglMultiThreadTests.cpp 1162 eglu::NativePixmap* pixmap = DE_NULL; local
    [all...]
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 291 egl_native_pixmap_t pixmap; local
292 pixmap.version = sizeof(pixmap);
293 pixmap.width = nativeBitmap.width();
294 pixmap.height = nativeBitmap.height();
295 pixmap.stride = nativeBitmap.rowBytes() / nativeBitmap.bytesPerPixel();
296 pixmap.format = convertPixelFormat(nativeBitmap.colorType());
297 pixmap.data = (uint8_t*)ref->pixels();
300 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base);
  /hardware/intel/common/libva/va/glx/
va_glx_impl.c 453 Pixmap pixmap; member in struct:VASurfaceGLX
459 // Create Pixmaps for GLX texture-from-pixmap extension
465 Pixmap pixmap = None; local
477 pixmap = XCreatePixmap(
484 if (!pixmap)
486 pSurfaceGLX->pixmap = pixmap;
538 pixmap,
    [all...]
  /external/opencv3/modules/videoio/src/
cap_qt.cpp 84 IplImage * image_rgb; // will point to the PixMap of myGWorld
222 // build IplImage header that will point to the PixMap of the Movie's GWorld later on
511 // update IplImage header that points to PixMap of the Movie's GWorld.
542 PixMapHandle pixmap; member in struct:CvCapture_QT_Cam_vdig
547 IplImage * image_rgb; // will point to the PixMap of myGWorld
565 IplImage * image_rgb; // will point to the PixMap of myGWorld
745 // get pixmap
746 capture->pixmap = GetGWorldPixMap (capture->myGWorld);
748 OPENCV_ASSERT (result == noErr, "icvOpenCamera_QT", "couldnt get pixmap");
755 result = VDSetPlayThruDestination (capture->grabber, capture->pixmap, & myRect, nil, nil)
917 PixMapHandle pixmap = nil; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/xcb/
xproto.h 2730 xcb_pixmap_t pixmap; \/**< *\/ member in struct:xcb_free_pixmap_request_t
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/xcb/
xproto.h 2731 xcb_pixmap_t pixmap; \/**< *\/ member in struct:xcb_free_pixmap_request_t
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 

Completed in 1116 milliseconds