OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:src_pixmap
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/gdx/jni/gdx2d/
gdx2d.c
767
static inline void blit_same_size(const gdx2d_pixmap*
src_pixmap
, const gdx2d_pixmap* dst_pixmap,
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,
812
get_pixel_func pget = get_pixel_func_ptr(
src_pixmap
->format);
[
all
...]
gdx2d.h
86
JNIEXPORT void gdx2d_draw_pixmap (const gdx2d_pixmap*
src_pixmap
,
/external/webrtc/webrtc/base/
x11windowpicker.cc
363
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 84 milliseconds