aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/pdf/SkPDFGraphicState.h
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-20 17:20:28 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-20 17:20:28 +0000
commitf6c3ebdeb135dcdb9af225bd7af77f1fe1f92787 (patch)
treee42147c5a3230b8113b6836c33378098813866b8 /include/pdf/SkPDFGraphicState.h
parentc789cf1c6f3947283aeb34acb5a22e6204f8f6f5 (diff)
fix Capitalization of static methods
git-svn-id: http://skia.googlecode.com/svn/trunk@1910 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/pdf/SkPDFGraphicState.h')
-rw-r--r--include/pdf/SkPDFGraphicState.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/pdf/SkPDFGraphicState.h b/include/pdf/SkPDFGraphicState.h
index 0bdd6f104e..879132de7a 100644
--- a/include/pdf/SkPDFGraphicState.h
+++ b/include/pdf/SkPDFGraphicState.h
@@ -52,7 +52,7 @@ public:
* other references.
* @param paint The SkPaint to emulate.
*/
- static SkPDFGraphicState* getGraphicStateForPaint(const SkPaint& paint);
+ static SkPDFGraphicState* GetGraphicStateForPaint(const SkPaint& paint);
/** Make a graphic state that only sets the passed soft mask. The
* reference count of the object is incremented and it is the caller's
@@ -60,7 +60,7 @@ public:
* @param sMask The form xobject to use as a soft mask.
* @param invert Indicates if the alpha of the sMask should be inverted.
*/
- static SkPDFGraphicState* getSMaskGraphicState(SkPDFFormXObject* sMask,
+ static SkPDFGraphicState* GetSMaskGraphicState(SkPDFFormXObject* sMask,
bool invert);
/** Get a graphic state that only unsets the soft mask. The reference
@@ -69,7 +69,7 @@ public:
* reference pattern used when the returned object is new and has no
* other references.
*/
- static SkPDFGraphicState* getNoSMaskGraphicState();
+ static SkPDFGraphicState* GetNoSMaskGraphicState();
private:
const SkPaint fPaint;
@@ -92,8 +92,8 @@ private:
};
// This should be made a hash table if performance is a problem.
- static SkTDArray<GSCanonicalEntry>& canonicalPaints();
- static SkMutex& canonicalPaintsMutex();
+ static SkTDArray<GSCanonicalEntry>& CanonicalPaints();
+ static SkMutex& CanonicalPaintsMutex();
SkPDFGraphicState();
explicit SkPDFGraphicState(const SkPaint& paint);
@@ -102,7 +102,7 @@ private:
static SkPDFObject* GetInvertFunction();
- static int find(const SkPaint& paint);
+ static int Find(const SkPaint& paint);
};
#endif