summaryrefslogtreecommitdiffstats
path: root/libs/surfaceflinger/SurfaceFlinger.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/surfaceflinger/SurfaceFlinger.h')
-rw-r--r--libs/surfaceflinger/SurfaceFlinger.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/libs/surfaceflinger/SurfaceFlinger.h b/libs/surfaceflinger/SurfaceFlinger.h
index 1bfdb1b..d75dc15 100644
--- a/libs/surfaceflinger/SurfaceFlinger.h
+++ b/libs/surfaceflinger/SurfaceFlinger.h
@@ -174,12 +174,6 @@ public:
overlay_control_device_t* getOverlayEngine() const;
- inline int getRenderEffect() const { return mRenderEffect; }
- inline int getRenderColorR() const { return mRenderColorR; }
- inline int getRenderColorG() const { return mRenderColorG; }
- inline int getRenderColorB() const { return mRenderColorB; }
- inline int getUseDithering() const { return mUseDithering; }
-
status_t removeLayer(const sp<LayerBase>& layer);
status_t addLayer(const sp<LayerBase>& layer);
@@ -360,10 +354,6 @@ private:
// don't use a lock for these, we don't care
int mDebugRegion;
int mDebugBackground;
- int mRenderEffect;
- int mRenderColorR;
- int mRenderColorG;
- int mRenderColorB;
volatile nsecs_t mDebugInSwapBuffers;
nsecs_t mLastSwapBufferTime;
volatile nsecs_t mDebugInTransaction;
@@ -382,7 +372,6 @@ private:
// only written in the main thread, only read in other threads
volatile int32_t mSecureFrameBuffer;
- bool mUseDithering;
};
// ---------------------------------------------------------------------------