aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-04-30 07:01:03 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-04-30 07:01:03 +0000
commit815211307368b82a8df503432221b80ab0a804c3 (patch)
tree2bedf70fc78f0790e1c9559710816b92f1ebd0ce
parent0cb7df97185d5fc8780e225c912e2bc99a26aa8d (diff)
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@8919 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--bench/MathBench.cpp20
-rw-r--r--bench/PathBench.cpp27
-rw-r--r--platform_tools/android/app/jni/com_skia_SkiaSampleRenderer.cpp12
-rw-r--r--platform_tools/android/gyp/dependencies.gypi10
-rw-r--r--src/gpu/gl/GrGLNoOpInterface.cpp4
-rw-r--r--src/gpu/gl/GrGLNoOpInterface.h4
-rw-r--r--tests/MathTest.cpp2
7 files changed, 39 insertions, 40 deletions
diff --git a/bench/MathBench.cpp b/bench/MathBench.cpp
index 24e7ca9448..90cc4b81fe 100644
--- a/bench/MathBench.cpp
+++ b/bench/MathBench.cpp
@@ -59,12 +59,12 @@ private:
class MathBenchU32 : public MathBench {
public:
MathBenchU32(void* param, const char name[]) : INHERITED(param, name) {}
-
+
protected:
virtual void performITest(uint32_t* SK_RESTRICT dst,
const uint32_t* SK_RESTRICT src,
int count) = 0;
-
+
virtual void performTest(float* SK_RESTRICT dst,
const float* SK_RESTRICT src,
int count) SK_OVERRIDE {
@@ -379,7 +379,7 @@ class CLZBench : public SkBenchmark {
uint32_t fData[ARRAY];
bool fUsePortable;
-public:
+public:
CLZBench(void* param, bool usePortable)
: INHERITED(param)
, fUsePortable(usePortable) {
@@ -388,7 +388,7 @@ public:
for (int i = 0; i < ARRAY; ++i) {
fData[i] = rand.nextU();
}
-
+
if (fUsePortable) {
fName = "clz_portable";
} else {
@@ -396,14 +396,14 @@ public:
}
fIsRendering = false;
}
-
+
// just so the compiler doesn't remove our loops
virtual void process(int) {}
-
+
protected:
virtual void onDraw(SkCanvas*) {
int accum = 0;
-
+
if (fUsePortable) {
for (int j = 0; j < LOOP; ++j) {
for (int i = 0; i < ARRAY; ++i) {
@@ -420,14 +420,14 @@ protected:
}
}
}
-
+
virtual const char* onGetName() {
return fName;
}
-
+
private:
const char* fName;
-
+
typedef SkBenchmark INHERITED;
};
diff --git a/bench/PathBench.cpp b/bench/PathBench.cpp
index 6ef78ccdd7..5fe002541a 100644
--- a/bench/PathBench.cpp
+++ b/bench/PathBench.cpp
@@ -907,19 +907,19 @@ public:
fRQ.fPts[2].set(100, 100);
fRQ.fW = SkScalarCos(SK_ScalarPI/4);
}
-
+
private:
virtual const char* onGetName() SK_OVERRIDE {
return "ratquad-chop-half";
}
-
+
virtual void onDraw(SkCanvas*) SK_OVERRIDE {
SkConic dst[2];
for (int i = 0; i < N; ++i) {
fRQ.chop(dst);
}
}
-
+
typedef SkBenchmark INHERITED;
};
@@ -945,14 +945,14 @@ public:
}
fIsRendering = false;
}
-
+
protected:
enum {
N = 20000,
CONICS = 100
};
SkConic fConics[CONICS];
-
+
private:
typedef SkBenchmark INHERITED;
};
@@ -960,12 +960,12 @@ private:
class ConicBench_ComputeError : public ConicBench {
public:
ConicBench_ComputeError(void* param) : INHERITED(param) {}
-
+
protected:
virtual const char* onGetName() SK_OVERRIDE {
return "conic-compute-error";
}
-
+
virtual void onDraw(SkCanvas*) SK_OVERRIDE {
SkVector err;
for (int i = 0; i < N; ++i) {
@@ -974,7 +974,7 @@ protected:
}
}
}
-
+
private:
typedef ConicBench INHERITED;
};
@@ -982,12 +982,12 @@ private:
class ConicBench_asQuadTol : public ConicBench {
public:
ConicBench_asQuadTol(void* param) : INHERITED(param) {}
-
+
protected:
virtual const char* onGetName() SK_OVERRIDE {
return "conic-asQuadTol";
}
-
+
virtual void onDraw(SkCanvas*) SK_OVERRIDE {
for (int i = 0; i < N; ++i) {
for (int j = 0; j < CONICS; ++j) {
@@ -995,7 +995,7 @@ protected:
}
}
}
-
+
private:
typedef ConicBench INHERITED;
};
@@ -1008,7 +1008,7 @@ protected:
virtual const char* onGetName() SK_OVERRIDE {
return "conic-quadPow2";
}
-
+
virtual void onDraw(SkCanvas*) SK_OVERRIDE {
for (int i = 0; i < N; ++i) {
for (int j = 0; j < CONICS; ++j) {
@@ -1016,7 +1016,7 @@ protected:
}
}
}
-
+
private:
typedef ConicBench INHERITED;
};
@@ -1083,4 +1083,3 @@ DEF_BENCH( return new ConicBench_ChopHalf(p) )
DEF_BENCH( return new ConicBench_ComputeError(p) )
DEF_BENCH( return new ConicBench_asQuadTol(p) )
DEF_BENCH( return new ConicBench_quadPow2(p) )
-
diff --git a/platform_tools/android/app/jni/com_skia_SkiaSampleRenderer.cpp b/platform_tools/android/app/jni/com_skia_SkiaSampleRenderer.cpp
index 9817074c68..6098643b99 100644
--- a/platform_tools/android/app/jni/com_skia_SkiaSampleRenderer.cpp
+++ b/platform_tools/android/app/jni/com_skia_SkiaSampleRenderer.cpp
@@ -126,7 +126,7 @@ void SkEvent::SignalQueueTimer(SkMSec ms)
return;
}
env->CallVoidMethod(gWindowGlue.m_obj,
- gWindowGlue.m_startTimer, ms);
+ gWindowGlue.m_startTimer, ms);
}
void SkEvent::SignalNonEmptyQueue()
@@ -157,7 +157,7 @@ static jmethodID GetJMethod(JNIEnv* env, jclass clazz, const char name[],
JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_init(JNIEnv* env,
jobject thiz, jobject jsampleActivity)
{
- // setup jni hooks to the java activity
+ // setup jni hooks to the java activity
gActivityGlue.m_env = env;
jclass clazz = env->FindClass("com/skia/SkiaSampleActivity");
gActivityGlue.m_obj = env->NewWeakGlobalRef(jsampleActivity);
@@ -246,19 +246,19 @@ JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_handleClick(JNIEnv* env,
JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_nextSample(
JNIEnv* env, jobject thiz)
{
- gWindow->nextSample();
+ gWindow->nextSample();
}
JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_previousSample(
JNIEnv* env, jobject thiz)
{
- gWindow->previousSample();
+ gWindow->previousSample();
}
JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_goToSample(
JNIEnv* env, jobject thiz, jint position)
{
- gWindow->goToSample(position);
+ gWindow->goToSample(position);
}
JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_toggleRenderingMode(
@@ -320,5 +320,5 @@ JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_saveToPDF(
JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_postInval(
JNIEnv* env, jobject thiz)
{
- gWindow->postInvalDelay();
+ gWindow->postInvalDelay();
}
diff --git a/platform_tools/android/gyp/dependencies.gypi b/platform_tools/android/gyp/dependencies.gypi
index 4934903bf1..031e9c2035 100644
--- a/platform_tools/android/gyp/dependencies.gypi
+++ b/platform_tools/android/gyp/dependencies.gypi
@@ -1,12 +1,12 @@
# This GYP file stores the dependencies necessary to build Skia on the Android
# platform. The OS doesn't provide many stable libraries as part of the
-# distribution so we have to build a few of them ourselves.
+# distribution so we have to build a few of them ourselves.
#
-# NOTE: We tried adding the gyp file to the android/ directory at the root of
+# NOTE: We tried adding the gyp file to the android/ directory at the root of
# the Skia repo, but that resulted in the generated makefiles being created
# outside of the out directory. We may be able to move the bulk of this gyp
# to the /android directory and put a simple shim here, but that has yet to be
-# tested.
+# tested.
{
'variables': {
@@ -210,7 +210,7 @@
'direct_dependent_settings': {
'target_conditions': [
# '_type' is an 'automatic variable' which is defined for any
- # target which defines a key-value pair with 'type' as the key (so,
+ # target which defines a key-value pair with 'type' as the key (so,
# all of them). Conditionals inside 'target_conditions' are evaluated
# *after* all other definitions and conditionals are evaluated, so
# we're guaranteed that '_type' will be defined when we get here.
@@ -239,7 +239,7 @@
'direct_dependent_settings': {
'target_conditions': [
# '_type' is an 'automatic variable' which is defined for any
- # target which defines a key-value pair with 'type' as the key (so,
+ # target which defines a key-value pair with 'type' as the key (so,
# all of them). Conditionals inside 'target_conditions' are evaluated
# *after* all other definitions and conditionals are evaluated, so
# we're guaranteed that '_type' will be defined when we get here.
diff --git a/src/gpu/gl/GrGLNoOpInterface.cpp b/src/gpu/gl/GrGLNoOpInterface.cpp
index f61fa554b4..db7b8e3ca0 100644
--- a/src/gpu/gl/GrGLNoOpInterface.cpp
+++ b/src/gpu/gl/GrGLNoOpInterface.cpp
@@ -238,8 +238,8 @@ GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexStorage2D(GrGLenum target,
GrGLsizei height) {
}
-GrGLvoid GR_GL_FUNCTION_TYPE noOpGLDiscardFramebuffer(GrGLenum target,
- GrGLsizei numAttachments,
+GrGLvoid GR_GL_FUNCTION_TYPE noOpGLDiscardFramebuffer(GrGLenum target,
+ GrGLsizei numAttachments,
const GrGLenum* attachments) {
}
diff --git a/src/gpu/gl/GrGLNoOpInterface.h b/src/gpu/gl/GrGLNoOpInterface.h
index 3002c07f52..0451e9cce7 100644
--- a/src/gpu/gl/GrGLNoOpInterface.h
+++ b/src/gpu/gl/GrGLNoOpInterface.h
@@ -159,8 +159,8 @@ GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexStorage2D(GrGLenum target,
GrGLsizei width,
GrGLsizei height);
-GrGLvoid GR_GL_FUNCTION_TYPE noOpGLDiscardFramebuffer(GrGLenum target,
- GrGLsizei numAttachments,
+GrGLvoid GR_GL_FUNCTION_TYPE noOpGLDiscardFramebuffer(GrGLenum target,
+ GrGLsizei numAttachments,
const GrGLenum* attachments);
GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexSubImage2D(GrGLenum target,
diff --git a/tests/MathTest.cpp b/tests/MathTest.cpp
index 4c768d1017..5f694f5c36 100644
--- a/tests/MathTest.cpp
+++ b/tests/MathTest.cpp
@@ -18,7 +18,7 @@ static void test_clz(skiatest::Reporter* reporter) {
REPORTER_ASSERT(reporter, 31 == SkCLZ(1));
REPORTER_ASSERT(reporter, 1 == SkCLZ(1 << 30));
REPORTER_ASSERT(reporter, 0 == SkCLZ(~0U));
-
+
SkRandom rand;
for (int i = 0; i < 1000; ++i) {
uint32_t mask = rand.nextU();