GLboolean bDither = GL_CHECK(glIsEnabled(GL_DITHER));LOGD("glIsEnabled(GL_DITHER) = %i\n", bDither);GL_CHECK(glDisable(GL_DITHER));LOGD("glDisable(GL_DITHER)\n");bDither = GL_CHECK(glIsEnabled(GL_DITHER));LOGD("glIsEnabled(GL_DITHER) = %i\n", bDither);GL_CHECK(glEnable(GL_DITHER));LOGD("glEnable(GL_DITHER)\n");bDither = GL_CHECK(glIsEnabled(GL_DITHER));LOGD("glIsEnabled(GL_DITHER) = %i\n", bDither);