Searched refs:src_pixmap (Results 1 - 3 of 3) sorted by relevance

/external/libgdx/gdx/jni/gdx2d/
H A Dgdx2d.c767 static inline void blit_same_size(const gdx2d_pixmap* src_pixmap, const gdx2d_pixmap* dst_pixmap, argument
772 get_pixel_func pget = get_pixel_func_ptr(src_pixmap->format);
774 uint32_t sbpp = gdx2d_bytes_per_pixel(src_pixmap->format);
776 uint32_t spitch = sbpp * src_pixmap->width;
786 if(sy >= src_pixmap->height || dy >= dst_pixmap->height) break;
790 if(sx >= src_pixmap->width || dx >= dst_pixmap->width) break;
792 const void* src_ptr = src_pixmap->pixels + sx * sbpp + sy * spitch;
794 uint32_t src_col = to_RGBA8888(src_pixmap->format, pget((void*)src_ptr));
808 static inline void blit_bilinear(const gdx2d_pixmap* src_pixmap, const gdx2d_pixmap* dst_pixmap, argument
812 get_pixel_func pget = get_pixel_func_ptr(src_pixmap
889 blit_linear(const gdx2d_pixmap* src_pixmap, const gdx2d_pixmap* dst_pixmap, int32_t src_x, int32_t src_y, uint32_t src_width, uint32_t src_height, int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height) argument
938 blit(const gdx2d_pixmap* src_pixmap, const gdx2d_pixmap* dst_pixmap, int32_t src_x, int32_t src_y, uint32_t src_width, uint32_t src_height, int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height) argument
947 gdx2d_draw_pixmap(const gdx2d_pixmap* src_pixmap, const gdx2d_pixmap* dst_pixmap, int32_t src_x, int32_t src_y, uint32_t src_width, uint32_t src_height, int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height) argument
[all...]
H A Dgdx2d.h86 JNIEXPORT void gdx2d_draw_pixmap (const gdx2d_pixmap* src_pixmap,
/external/webrtc/webrtc/base/
H A Dx11windowpicker.cc363 Pixmap src_pixmap = XCompositeNameWindowPixmap(display_, id.id()); local
364 if (!src_pixmap) {
371 if (!XGetGeometry(display_, src_pixmap, &root, &x, &y,
378 XFreePixmap(display_, src_pixmap);
388 XFreePixmap(display_, src_pixmap);
392 uint8_t* data = GetDrawableThumbnail(src_pixmap, attr.visual, src_width,
394 XFreePixmap(display_, src_pixmap);

Completed in 275 milliseconds