HomeSort by relevance Sort by last modified time
    Searched defs:skia (Results 26 - 50 of 62) sorted by null

12 3

  /external/chromium_org/skia/ext/
bitmap_platform_device_mac_unittest.cc 5 #include "skia/ext/bitmap_platform_device_mac.h"
8 #include "skia/ext/skia_utils_mac.h"
10 #include "third_party/skia/include/core/SkMatrix.h"
11 #include "third_party/skia/include/core/SkRegion.h"
12 #include "third_party/skia/include/core/SkClipStack.h"
14 namespace skia { namespace
69 } // namespace skia
bitmap_platform_device_skia.cc 5 #include "skia/ext/bitmap_platform_device_skia.h"
6 #include "skia/ext/platform_canvas.h"
8 namespace skia { namespace
79 skia::RefPtr<SkBaseDevice> dev = skia::AdoptRef(
99 } // namespace skia
bitmap_platform_device_win.h 10 #include "skia/ext/platform_device.h"
11 #include "skia/ext/refptr.h"
13 namespace skia { namespace
18 // format that Skia supports and can then use this to draw ClearType into, etc.
23 // PlatformBitmapPixelRef, and stored in an SkBitmap via the normal skia
67 // directly by Skia. Overridden from SkBaseDevice, this is called when Skia
125 } // namespace skia
convolver_mips_dspr2.cc 6 #include "skia/ext/convolver.h"
7 #include "skia/ext/convolver_mips_dspr2.h"
8 #include "third_party/skia/include/core/SkTypes.h"
10 namespace skia { namespace
478 } // namespace skia
image_operations.h 8 #include "third_party/skia/include/core/SkBitmap.h"
9 #include "third_party/skia/include/core/SkTypes.h"
13 namespace skia { namespace
131 } // namespace skia
platform_canvas.cc 5 #include "skia/ext/platform_canvas.h"
7 #include "skia/ext/bitmap_platform_device.h"
8 #include "third_party/skia/include/core/SkTypes.h"
10 namespace skia { namespace
57 skia::RefPtr<SkProcXfermode> xfermode =
58 skia::AdoptRef(new SkProcXfermode(MakeOpaqueXfermodeProc));
67 SkCanvas* CreateCanvas(const skia::RefPtr<SkBaseDevice>& device, OnFailureType failureType) {
78 } // namespace skia
platform_device.h 15 #include "third_party/skia/include/core/SkColor.h"
16 #include "third_party/skia/include/core/SkBitmapDevice.h"
17 #include "third_party/skia/include/core/SkPreConfig.h"
32 namespace skia { namespace
158 // Loads the specified Skia transform into the device context, excluding
165 // Loads the specified Skia transform into the device context
171 } // namespace skia
recursive_gaussian_convolution.h 8 #include "skia/ext/convolver.h"
9 #include "third_party/skia/include/core/SkSize.h"
10 #include "third_party/skia/include/core/SkTypes.h"
12 namespace skia { namespace
69 } // namespace skia
vector_platform_device_emf_win.h 10 #include "skia/ext/platform_device.h"
11 #include "third_party/skia/include/core/SkMatrix.h"
12 #include "third_party/skia/include/core/SkRegion.h"
14 namespace skia { namespace
20 // TODO(robertphillips): Once Skia's SkBaseDevice is refactored to remove
143 } // namespace skia
vector_platform_device_skia.cc 5 #include "skia/ext/vector_platform_device_skia.h"
7 #include "skia/ext/bitmap_platform_device.h"
8 #include "third_party/skia/include/core/SkClipStack.h"
9 #include "third_party/skia/include/core/SkDraw.h"
10 #include "third_party/skia/include/core/SkRect.h"
11 #include "third_party/skia/include/core/SkRegion.h"
12 #include "third_party/skia/include/core/SkScalar.h"
14 namespace skia { namespace
44 raster_surface_ = skia::AdoptRef(
88 } // namespace skia
    [all...]
analysis_canvas_unittest.cc 6 #include "skia/ext/analysis_canvas.h"
8 #include "third_party/skia/include/core/SkShader.h"
12 void SolidColorFill(skia::AnalysisCanvas& canvas) {
16 void TransparentFill(skia::AnalysisCanvas& canvas) {
21 namespace skia { namespace
26 skia::AnalysisDevice device(emptyBitmap);
27 skia::AnalysisCanvas canvas(&device);
37 skia::AnalysisDevice device(emptyBitmap);
38 skia::AnalysisCanvas canvas(&device);
75 skia::AnalysisDevice device(emptyBitmap)
    [all...]
platform_device.cc 6 #include "skia/ext/platform_device.h"
8 #include "third_party/skia/include/core/SkMetaData.h"
10 namespace skia { namespace
22 SkMetaData& meta = skia::getMetaData(canvas);
28 SkMetaData& meta = skia::getMetaData(canvas);
80 } // namespace skia
platform_device_win.cc 5 #include "skia/ext/platform_device.h"
7 #include "skia/ext/skia_utils_win.h"
8 #include "third_party/skia/include/core/SkMatrix.h"
9 #include "third_party/skia/include/core/SkPath.h"
10 #include "third_party/skia/include/core/SkRegion.h"
11 #include "third_party/skia/include/core/SkUtils.h"
13 namespace skia { namespace
237 } // namespace skia
refptr.h 8 #include "third_party/skia/include/core/SkRefCnt.h"
10 namespace skia { namespace
12 // When creating/receiving a ref-counted pointer from Skia, wrap that pointer in
17 // skia::RefPtr<SkShader> shader = skia::AdoptRef(SkGradientShader::Create());
20 // When passing around a ref-counted pointer to methods outside of Skia, always
21 // pass around the skia::RefPtr instead of the raw pointer. An example method
23 // void AMethodThatSavesAShader(const skia::RefPtr<SkShader>& shader) {
26 // skia::RefPtr<SkShader> member_refptr_;
28 // When returning a ref-counted pointer, also return the skia::RefPtr instead
    [all...]
benchmarking_canvas.cc 8 #include "skia/ext/benchmarking_canvas.h"
9 #include "third_party/skia/include/core/SkBitmapDevice.h"
10 #include "third_party/skia/include/utils/SkProxyCanvas.h"
12 namespace skia { namespace
28 skia::RefPtr<SkBaseDevice> device = skia::AdoptRef(
30 canvas_ = skia::AdoptRef(SkNEW_ARGS(SkCanvas, (device.get())));
194 skia::RefPtr<SkCanvas> canvas_;
214 debug_canvas_ = skia::AdoptRef(SkNEW_ARGS(SkDebugCanvas, (width, height)));
215 timing_canvas_ = skia::AdoptRef(SkNEW_ARGS(TimingCanvas, (width, height, this)))
    [all...]
convolver.h 13 #include "third_party/skia/include/core/SkSize.h"
14 #include "third_party/skia/include/core/SkTypes.h"
33 namespace skia { namespace
233 } // namespace skia
platform_canvas.h 11 #include "skia/ext/platform_device.h"
12 #include "skia/ext/refptr.h"
13 #include "third_party/skia/include/core/SkBitmap.h"
14 #include "third_party/skia/include/core/SkCanvas.h"
15 #include "third_party/skia/include/core/SkPixelRef.h"
17 namespace skia { namespace
77 SK_API SkCanvas* CreateCanvas(const skia::RefPtr<SkBaseDevice>& device,
131 // Call EndPlatformPaint when you are done and want to use skia operations
170 // Return the skia bitmap, which will be empty if Allocate() did not
186 } // namespace skia
    [all...]
platform_device_mac.cc 5 #include "skia/ext/platform_device.h"
6 #include "skia/ext/bitmap_platform_device.h"
9 #include "skia/ext/skia_utils_mac.h"
10 #include "third_party/skia/include/core/SkMatrix.h"
11 #include "third_party/skia/include/core/SkPath.h"
12 #include "third_party/skia/include/core/SkTypes.h"
13 #include "third_party/skia/include/core/SkUtils.h"
15 namespace skia { namespace
33 // Set up the CGContextRef for peaceful coexistence with Skia
35 // CG defaults to the same settings as Skia
    [all...]
recursive_gaussian_convolution.cc 10 #include "skia/ext/recursive_gaussian_convolution.h"
12 namespace skia { namespace
270 } // namespace skia
skia_utils_win.cc 5 #include "skia/ext/skia_utils_win.h"
9 #include "third_party/skia/include/core/SkRect.h"
10 #include "third_party/skia/include/effects/SkGradientShader.h"
34 namespace skia { namespace
65 } // namespace skia
bitmap_platform_device_cairo.cc 5 #include "skia/ext/bitmap_platform_device_cairo.h"
6 #include "skia/ext/platform_canvas.h"
14 namespace skia { namespace
216 skia::RefPtr<SkBaseDevice> dev = skia::AdoptRef(
253 } // namespace skia
bitmap_platform_device_mac.cc 5 #include "skia/ext/bitmap_platform_device_mac.h"
12 #include "skia/ext/bitmap_platform_device.h"
13 #include "skia/ext/platform_canvas.h"
14 #include "skia/ext/skia_utils_mac.h"
15 #include "third_party/skia/include/core/SkMatrix.h"
16 #include "third_party/skia/include/core/SkRegion.h"
17 #include "third_party/skia/include/core/SkTypes.h"
18 #include "third_party/skia/include/core/SkUtils.h"
20 namespace skia { namespace
43 #error We require that Skia's and CoreGraphics's recommended
    [all...]
convolver_SSE2.cc 7 #include "skia/ext/convolver.h"
8 #include "skia/ext/convolver_SSE2.h"
9 #include "third_party/skia/include/core/SkTypes.h"
13 namespace skia { namespace
457 } // namespace skia
  /external/skia/tools/
find_bad_images_in_skps.py 32 import test_rendering # skia/trunk/tools. reuse FindPathToProgram() namespace
  /external/chromium_org/cc/resources/
picture.h 21 #include "skia/ext/lazy_pixel_ref.h"
22 #include "skia/ext/refptr.h"
23 #include "third_party/skia/include/core/SkPixelRef.h"
24 #include "third_party/skia/include/core/SkTileGridPicture.h"
31 namespace skia { namespace
43 typedef std::vector<skia::LazyPixelRef*> PixelRefs;
90 skia::LazyPixelRef* operator->() const {
95 skia::LazyPixelRef* operator*() const {
126 Picture(const skia::RefPtr<SkPicture>&,
138 skia::RefPtr<SkPicture> picture_
    [all...]

Completed in 520 milliseconds

12 3