Searched defs:img (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/external/skia/gm/
H A DmakeRasterImage.cpp13 auto img = GetResourceAsImage("images/color_wheel.png"); local
14 canvas->drawImage(img->makeRasterImage(), 0,0);
H A Dbug6783.cpp35 sk_sp<SkImage> img = surface->makeImageSnapshot(); local
45 p.setShader(img->makeShader(SkShader::kRepeat_TileMode, SkShader::kClamp_TileMode, &m));
H A Dsrgb.cpp16 auto img = GetResourceAsImage("images/mandrill_256.png"); local
30 canvas->drawImage(img, 0, 0, nullptr);
31 canvas->drawImage(img, 256, 0, &p);
34 canvas->drawImage(img, 0, 256, &p);
36 canvas->drawImage(img, 256, 256, &p);
39 canvas->drawImage(img, 0, 512, &p);
41 canvas->drawImage(img, 256, 512, &p);
/external/skqp/gm/
H A DmakeRasterImage.cpp13 auto img = GetResourceAsImage("images/color_wheel.png"); local
14 canvas->drawImage(img->makeRasterImage(), 0,0);
H A Dbug6783.cpp35 sk_sp<SkImage> img = surface->makeImageSnapshot(); local
45 p.setShader(img->makeShader(SkShader::kRepeat_TileMode, SkShader::kClamp_TileMode, &m));
H A Dsrgb.cpp16 auto img = GetResourceAsImage("images/mandrill_256.png"); local
30 canvas->drawImage(img, 0, 0, nullptr);
31 canvas->drawImage(img, 256, 0, &p);
34 canvas->drawImage(img, 0, 256, &p);
36 canvas->drawImage(img, 256, 256, &p);
39 canvas->drawImage(img, 0, 512, &p);
41 canvas->drawImage(img, 256, 512, &p);
/external/clang/test/CodeGen/
H A D2009-08-14-vararray-crash.c5 typedef imgrow img[rb]; typedef
7 const img *br;
/external/skia/tests/
H A Dimage-bitmap.cpp25 auto img = SkImage::MakeFromBitmap(bm); local
28 REPORTER_ASSERT(r, img->uniqueID() == bm.getGenerationID());
29 REPORTER_ASSERT(r, img->uniqueID() != imgA->uniqueID());
30 REPORTER_ASSERT(r, img->uniqueID() != imgB->uniqueID());
/external/skqp/tests/
H A Dimage-bitmap.cpp25 auto img = SkImage::MakeFromBitmap(bm); local
28 REPORTER_ASSERT(r, img->uniqueID() == bm.getGenerationID());
29 REPORTER_ASSERT(r, img->uniqueID() != imgA->uniqueID());
30 REPORTER_ASSERT(r, img->uniqueID() != imgB->uniqueID());
/external/libvpx/libvpx/vp8/encoder/
H A Dlookahead.h20 YV12_BUFFER_CONFIG img; member in struct:lookahead_entry
/external/libvpx/libvpx/vp9/
H A Dvp9_iface_common.h15 static void yuvconfig2image(vpx_image_t *img, const YV12_BUFFER_CONFIG *yv12, argument
24 img->fmt = VPX_IMG_FMT_I444;
27 img->fmt = VPX_IMG_FMT_I422;
32 img->fmt = VPX_IMG_FMT_I440;
35 img->fmt = VPX_IMG_FMT_I420;
39 img->cs = yv12->color_space;
40 img->range = yv12->color_range;
41 img->bit_depth = 8;
42 img->w = yv12->y_stride;
43 img
81 image2yuvconfig(const vpx_image_t *img, YV12_BUFFER_CONFIG *yv12) argument
[all...]
/external/mesa3d/src/egl/main/
H A Deglimage.c188 _eglInitImage(_EGLImage *img, _EGLDisplay *dpy) argument
190 _eglInitResource(&img->Resource, sizeof(*img), dpy);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_tex_obj.h79 intel_texture_image(struct gl_texture_image *img) argument
81 return (struct intel_texture_image *) img;
/external/python/cpython2/Doc/includes/
H A Demail-mime.py24 img = MIMEImage(fp.read()) variable
26 msg.attach(img)
/external/skia/fuzz/oss_fuzz/
H A DFuzzImage.cpp15 auto img = SkImage::MakeFromEncoded(bytes); local
16 if (nullptr == img.get()) {
27 s->getCanvas()->drawImage(img, 0, 0, &p);
/external/skia/src/core/
H A DSkBitmapProvider.h16 explicit SkBitmapProvider(const SkImage* img, SkColorSpace* dstColorSpace) argument
17 : fImage(img)
19 SkASSERT(img);
H A DSkDeferredDisplayListRecorder.cpp130 sk_sp<SkImage> img = fSurface->makeImageSnapshot(); local
136 new SkDeferredDisplayList(fCharacterization, std::move(img)));
/external/skia/src/pdf/
H A DSkKeyedImage.cpp34 SkKeyedImage img; local
36 img.fImage = fImage->makeSubset(subset);
37 if (img.fImage) {
38 img.fKey = {subset.makeOffset(fKey.fSubset.x(), fKey.fSubset.y()), fKey.fID};
41 return img;
/external/skqp/src/core/
H A DSkBitmapProvider.h16 explicit SkBitmapProvider(const SkImage* img, SkColorSpace* dstColorSpace) argument
17 : fImage(img)
19 SkASSERT(img);
H A DSkDeferredDisplayListRecorder.cpp122 sk_sp<SkImage> img = fSurface->makeImageSnapshot(); local
128 new SkDeferredDisplayList(fCharacterization, std::move(img)));
/external/skqp/src/pdf/
H A DSkKeyedImage.cpp34 SkKeyedImage img; local
36 img.fImage = fImage->makeSubset(subset);
37 if (img.fImage) {
38 img.fKey = {subset.makeOffset(fKey.fSubset.x(), fKey.fSubset.y()), fKey.fID};
41 return img;
/external/libvpx/libvpx/examples/
H A Dsimple_decoder.c125 vpx_image_t *img = NULL; local
132 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
133 vpx_img_write(img, outfile);
/external/libvpx/libvpx/test/
H A Ddecode_svc_test.cc36 virtual void DecompressedFrameHook(const vpx_image_t &img, argument
38 ASSERT_EQ(img.d_w, width_);
39 ASSERT_EQ(img.d_h, height_);
H A Duser_priv_test.cc42 // compares the user_priv from return img with the original user_priv to see if
66 const vpx_image_t *img = NULL; local
69 while ((img = dec_iter.Next())) {
71 CheckUserPrivateData(img->user_priv, NULL);
73 CheckUserPrivateData(img->user_priv, &frame_num);
81 CheckUserPrivateData(ref.img.user_priv, NULL);
83 md5.Add(img);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_lookahead.h29 YV12_BUFFER_CONFIG img; member in struct:lookahead_entry

Completed in 3711 milliseconds

1234567891011>>