OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:peekTexture
(Results
1 - 11
of
11
) sorted by null
/external/skia/src/core/
SkSpecialImage.h
103
GrTexture*
peekTexture
() const;
SkSpecialImage.cpp
48
GrTexture* SkSpecialImage::
peekTexture
() const {
/external/skia/src/image/
SkImage_Base.h
35
virtual GrTexture*
peekTexture
() const { return nullptr; }
SkImage_Gpu.h
42
GrTexture*
peekTexture
() const override { return fTexture; }
SkImage.cpp
169
return as_IB(this)->
peekTexture
();
270
if (GrTexture* texture = as_IB(this)->
peekTexture
()) {
SkImage_Gpu.cpp
295
if (GrTexture* peek = as_IB(this)->
peekTexture
()) {
/external/skia/src/gpu/
GrImageIDTextureAdjuster.cpp
49
return GrPixelConfigIsAlphaOnly(img.
peekTexture
()->config());
53
: INHERITED(img->
peekTexture
(), SkIRect::MakeWH(img->width(), img->height()),
SkGpuDevice.cpp
855
if (as_IB(image)->
peekTexture
()) {
[
all
...]
/external/skia/tests/
SpecialImageTest.cpp
29
static GrTexture*
PeekTexture
(const SkSpecialImage* img) {
30
return img->
peekTexture
();
62
// Basic test of the SkSpecialImage public API (e.g.,
peekTexture
, peekPixels & draw)
72
REPORTER_ASSERT(reporter, peekTextureSucceeds == !!TestingSpecialImageAccess::
PeekTexture
(img));
ImageTest.cpp
415
GrTexture* origTexture = as_IB(image)->
peekTexture
();
425
GrTexture* copyTexture = as_IB(texImage)->
peekTexture
();
SurfaceTest.cpp
409
GrTexture* texture = as_IB(image)->
peekTexture
();
[
all
...]
Completed in 748 milliseconds