From e31264694e9729db49acbb2d32eab2703efc8501 Mon Sep 17 00:00:00 2001 From: Alex Sakhartchouk Date: Wed, 1 Feb 2012 18:41:35 -0800 Subject: Cleanup. Change-Id: Iee30f741f99846b3e19346fa1f2fb6ee0c88f4c0 --- .../SceneGraph/src/com/android/testapp/TestAppRS.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/RenderScriptTests/SceneGraph/src/com/android/testapp/TestAppRS.java') diff --git a/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/TestAppRS.java b/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/TestAppRS.java index 0892fdb..2757398 100644 --- a/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/TestAppRS.java +++ b/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/TestAppRS.java @@ -86,7 +86,7 @@ public class TestAppRS { // to make things look a bit better. This could be deleted in the cleanup Renderable plane = (Renderable)mActiveScene.getRenderableByName("pPlaneShape1"); if (plane != null) { - plane.setVisible(mRS, !mUseBlur); + plane.setVisible(!mUseBlur); } } @@ -252,7 +252,7 @@ public class TestAppRS { if (plane != null) { RenderState texState = new RenderState(mGenericV, mTextureF, null, null); plane.setRenderState(texState); - plane.setVisible(mRS, !mUseBlur); + plane.setVisible(!mUseBlur); } mTouchHandler.init(mActiveScene); -- cgit v1.1