diff options
| author | 2014-12-12 09:49:29 -0800 | |
|---|---|---|
| committer | 2014-12-12 09:49:29 -0800 | |
| commit | f088c349dfea985e561d7e838ecd41be5168cd4a (patch) | |
| tree | 5b9d412b5bf31cd6f20f0e94dc464174441efca0 /libs/hwui/OpenGLRenderer.cpp | |
| parent | 7fc885b0bfb8a799825531932567a1d472a55087 (diff) | |
Fix style
Change-Id: I7227b0eac126bf470ed50249a7809b845872983b
Diffstat (limited to 'libs/hwui/OpenGLRenderer.cpp')
| -rwxr-xr-x | libs/hwui/OpenGLRenderer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/OpenGLRenderer.cpp b/libs/hwui/OpenGLRenderer.cpp index 5cc686e752c5..419dff1b4812 100755 --- a/libs/hwui/OpenGLRenderer.cpp +++ b/libs/hwui/OpenGLRenderer.cpp @@ -349,7 +349,7 @@ void OpenGLRenderer::resumeAfterLayer() { dirtyClip(); } -status_t OpenGLRenderer::callDrawGLFunction(Functor* functor, Rect& /* dirty */) { +status_t OpenGLRenderer::callDrawGLFunction(Functor* functor, Rect& dirty) { if (currentSnapshot()->isIgnored()) return DrawGlInfo::kStatusDone; Rect clip(*currentClipRect()); @@ -1050,7 +1050,7 @@ public: } protected: - virtual void shadeSpan(int /* x */, int /* y */, SkPMColor[], int /* count */) { + virtual void shadeSpan(int x, int y, SkPMColor[], int count) { LOG_ALWAYS_FATAL("LayerShader should never be drawn with raster backend."); } |