From 7077506f9945b87b02bdd47ffce75a5b813c821c Mon Sep 17 00:00:00 2001 From: Dave Burke Date: Mon, 14 Nov 2011 11:39:30 -0800 Subject: Revert "Discard framebuffer rendering queues when discarding layers" This reverts commit da96f8ac2c1c35a54f3f36e6d776cb386a251d03. --- libs/hwui/Extensions.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'libs/hwui/Extensions.h') diff --git a/libs/hwui/Extensions.h b/libs/hwui/Extensions.h index 48e4247..38d1130 100644 --- a/libs/hwui/Extensions.h +++ b/libs/hwui/Extensions.h @@ -66,7 +66,6 @@ public: mHasNPot = hasExtension("GL_OES_texture_npot"); mHasFramebufferFetch = hasExtension("GL_NV_shader_framebuffer_fetch"); - mHasDiscardFramebuffer = hasExtension("GL_EXT_discard_framebuffer"); const char* vendor = (const char*) glGetString(GL_VENDOR); EXT_LOGD("Vendor: %s", vendor); @@ -81,7 +80,6 @@ public: inline bool hasNPot() const { return mHasNPot; } inline bool hasFramebufferFetch() const { return mHasFramebufferFetch; } inline bool needsHighpTexCoords() const { return mNeedsHighpTexCoords; } - inline bool hasDiscardFramebuffer() const { return mHasDiscardFramebuffer; } bool hasExtension(const char* extension) const { const String8 s(extension); @@ -100,7 +98,6 @@ private: bool mHasNPot; bool mNeedsHighpTexCoords; bool mHasFramebufferFetch; - bool mHasDiscardFramebuffer; }; // class Extensions }; // namespace uirenderer -- cgit v1.1