OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NewRaster
(Results
1 - 25
of
54
) sorted by null
1
2
3
/external/skia/include/core/
SkSurface.h
64
static SkSurface*
NewRaster
(const SkImageInfo&, size_t rowBytes, const SkSurfaceProps*);
69
static SkSurface*
NewRaster
(const SkImageInfo&, const SkSurfaceProps* = NULL);
72
* Helper version of
NewRaster
. It creates a SkImageInfo with the
77
return
NewRaster
(SkImageInfo::MakeN32Premul(width, height), props);
/external/skia/bench/
ImageBench.cpp
39
fRasterSurface.reset(SkSurface::
NewRaster
(info));
/external/skia/example/
HelloWorld.h
43
return fSurface = SkSurface::
NewRaster
(info, &props);
/external/skia/tests/
ImageNewShaderTest.cpp
107
SkAutoTUnref<SkSurface> sourceSurface(SkSurface::
NewRaster
(info));
108
SkAutoTUnref<SkSurface> destinationSurface(SkSurface::
NewRaster
(info));
131
SkAutoTUnref<SkSurface> destinationSurface(SkSurface::
NewRaster
(info));
139
SkAutoTUnref<SkSurface> sourceSurface(SkSurface::
NewRaster
(info));
ImageIsOpaqueTest.cpp
58
SkAutoTUnref<SkSurface> surfaceTransparent(SkSurface::
NewRaster
(infoTransparent));
62
SkAutoTUnref<SkSurface> surfaceOpaque(SkSurface::
NewRaster
(infoOpaque));
IndexedPngOverflowTest.cpp
36
SkAutoTUnref<SkSurface> surface(SkSurface::
NewRaster
(SkImageInfo::MakeN32Premul(20, 1)));
SpecialSurfaceTest.cpp
62
SkAutoTUnref<SkSpecialSurface> surf(SkSpecialSurface::
NewRaster
(nullptr, info));
/external/skia/debugger/QT/
SkRasterWidget.cpp
28
fSurface.reset(SkSurface::
NewRaster
(info));
SkDrawCommandGeometryWidget.cpp
29
fSurface.reset(SkSurface::
NewRaster
(info));
/external/skia/gm/
mipmap.cpp
16
SkAutoTUnref<SkSurface> surface(SkSurface::
NewRaster
(info));
surface.cpp
38
return SkSurface::
NewRaster
(info, &props);
139
surf.reset(SkSurface::
NewRaster
(info));
color4f.cpp
80
SkAutoTUnref<SkSurface> surface(SkSurface::
NewRaster
(info));
complexclip_blur_tiled.cpp
45
tileSurface.reset(SkSurface::
NewRaster
(info));
drawatlas.cpp
18
surface.reset(SkSurface::
NewRaster
(info));
imagealphathreshold.cpp
100
surface.reset(SkSurface::
NewRaster
(info));
localmatriximagefilter.cpp
21
surface.reset(SkSurface::
NewRaster
(info));
drawminibitmaprect.cpp
20
surface.reset(SkSurface::
NewRaster
(info));
image_shader.cpp
30
SkAutoTUnref<SkSurface> surface(SkSurface::
NewRaster
(info));
imagefilters.cpp
73
surface.reset(SkSurface::
NewRaster
(info));
imagetoyuvplanes.cpp
21
surface.reset(SkSurface::
NewRaster
(info));
/external/skia/src/core/
SkSpecialSurface.h
82
static SkSpecialSurface*
NewRaster
(SkImageFilter::Proxy* proxy,
/external/skia/src/image/
SkImage_Base.h
43
return SkSurface::
NewRaster
(info);
SkSurface_Raster.cpp
113
return SkSurface::
NewRaster
(info, &this->props());
193
SkSurface* SkSurface::
NewRaster
(const SkImageInfo& info, size_t rowBytes,
209
SkSurface* SkSurface::
NewRaster
(const SkImageInfo& info, const SkSurfaceProps* props) {
210
return
NewRaster
(info, 0, props);
SkImage_Generator.cpp
87
SkAutoTUnref<SkSurface> surface(SkSurface::
NewRaster
(info));
/external/skia/experimental/fiddle/
fiddle_main.cpp
102
SkSurface::
NewRaster
(SkImageInfo::MakeN32Premul(options.size)));
Completed in 452 milliseconds
1
2
3