From be1b127c7bec252e0c6ab0e06ed6babed07d496f Mon Sep 17 00:00:00 2001 From: Romain Guy Date: Thu, 6 Jun 2013 14:02:54 -0700 Subject: Assume a texture is unbound after deleting it Bug #9316260 The GL specification indicates that deleting a bound texture has the side effect of binding the default texture (name=0). This change replaces all calls to glDeleteTextures() by Caches::deleteTexture() to properly keep track of texture bindings. Change-Id: Ifbc60ef433e0f9776a668dd5bd5f0adbc65a77a0 --- libs/hwui/Layer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/hwui/Layer.cpp') diff --git a/libs/hwui/Layer.cpp b/libs/hwui/Layer.cpp index 60c38bab7e50..134f452aa4d1 100644 --- a/libs/hwui/Layer.cpp +++ b/libs/hwui/Layer.cpp @@ -167,7 +167,7 @@ void Layer::generateTexture() { void Layer::deleteTexture() { if (texture.id) { - glDeleteTextures(1, &texture.id); + texture.deleteTexture(); texture.id = 0; } } -- cgit v1.2.3-59-g8ed1b