Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(752)

Side by Side Diff: src/core/SkBitmapProcShader.h

Issue 377503004: Make GrDrawState and GrPaint take GrEffect* instead of GrEffectRef*. (Closed) Base URL: https://skia.googlesource.com/skia.git@no_ref
Patch Set: Update YUV effect to reflect these changes. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/gpu/GrPaint.h ('k') | src/core/SkBitmapProcShader.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef SkBitmapProcShader_DEFINED 10 #ifndef SkBitmapProcShader_DEFINED
(...skipping 13 matching lines...) Expand all
24 virtual BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const SK_OVERR IDE; 24 virtual BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const SK_OVERR IDE;
25 25
26 virtual size_t contextSize() const SK_OVERRIDE; 26 virtual size_t contextSize() const SK_OVERRIDE;
27 27
28 static bool CanDo(const SkBitmap&, TileMode tx, TileMode ty); 28 static bool CanDo(const SkBitmap&, TileMode tx, TileMode ty);
29 29
30 SK_TO_STRING_OVERRIDE() 30 SK_TO_STRING_OVERRIDE()
31 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBitmapProcShader) 31 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBitmapProcShader)
32 32
33 33
34 bool asNewEffect(GrContext*, const SkPaint&, const SkMatrix*, GrColor*, GrEf fectRef**) 34 bool asNewEffect(GrContext*, const SkPaint&, const SkMatrix*, GrColor*, GrEf fect**)
35 const SK_OVERRIDE; 35 const SK_OVERRIDE;
36 36
37 class BitmapProcShaderContext : public SkShader::Context { 37 class BitmapProcShaderContext : public SkShader::Context {
38 public: 38 public:
39 // The context takes ownership of the state. It will call its destructor 39 // The context takes ownership of the state. It will call its destructor
40 // but will NOT free the memory. 40 // but will NOT free the memory.
41 BitmapProcShaderContext(const SkBitmapProcShader&, const ContextRec&, Sk BitmapProcState*); 41 BitmapProcShaderContext(const SkBitmapProcShader&, const ContextRec&, Sk BitmapProcState*);
42 virtual ~BitmapProcShaderContext(); 42 virtual ~BitmapProcShaderContext();
43 43
44 virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVE RRIDE; 44 virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVE RRIDE;
(...skipping 27 matching lines...) Expand all
72 // Note that some contexts may contain other contexts (e.g. for compose shaders) , but we've not 72 // Note that some contexts may contain other contexts (e.g. for compose shaders) , but we've not
73 // yet found a situation where the size below isn't big enough. 73 // yet found a situation where the size below isn't big enough.
74 typedef SkSmallAllocator<3, 768> SkTBlitterAllocator; 74 typedef SkSmallAllocator<3, 768> SkTBlitterAllocator;
75 75
76 // If alloc is non-NULL, it will be used to allocate the returned SkShader, and MUST outlive 76 // If alloc is non-NULL, it will be used to allocate the returned SkShader, and MUST outlive
77 // the SkShader. 77 // the SkShader.
78 SkShader* CreateBitmapShader(const SkBitmap& src, SkShader::TileMode, SkShader:: TileMode, 78 SkShader* CreateBitmapShader(const SkBitmap& src, SkShader::TileMode, SkShader:: TileMode,
79 const SkMatrix* localMatrix, SkTBlitterAllocator* a lloc); 79 const SkMatrix* localMatrix, SkTBlitterAllocator* a lloc);
80 80
81 #endif 81 #endif
OLDNEW
« no previous file with comments | « include/gpu/GrPaint.h ('k') | src/core/SkBitmapProcShader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698