summaryrefslogtreecommitdiffstats
path: root/driver
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2011-04-20 17:08:14 -0700
committerStephen Hines <srhines@google.com>2011-04-20 17:08:14 -0700
commit9db7fe256cf6b77eafafb42d024128701faee6bb (patch)
tree9efcc72219180b693b1cbfcd9bb5cb8a24cb6e2e /driver
parenteed1b156ca3e439f3d178ce99a4fa736527b15f9 (diff)
downloadandroid_frameworks_rs-9db7fe256cf6b77eafafb42d024128701faee6bb.tar.gz
android_frameworks_rs-9db7fe256cf6b77eafafb42d024128701faee6bb.tar.bz2
android_frameworks_rs-9db7fe256cf6b77eafafb42d024128701faee6bb.zip
Reduce verbosity of Renderscript logging.
Change-Id: I0e20274e01b4068f90ef6ddd6ed7837d42f35813
Diffstat (limited to 'driver')
-rw-r--r--driver/rsdGL.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/driver/rsdGL.cpp b/driver/rsdGL.cpp
index 86dfa0fa..47e45e87 100644
--- a/driver/rsdGL.cpp
+++ b/driver/rsdGL.cpp
@@ -197,7 +197,9 @@ bool rsdGLInit(const Context *rsc) {
LOGE("%p, couldn't find an EGLConfig matching the screen format\n", rsc);
}
//if (props.mLogVisual) {
+ if (0) {
printEGLConfiguration(dc->gl.egl.display, dc->gl.egl.config);
+ }
//}
dc->gl.egl.context = eglCreateContext(dc->gl.egl.display, dc->gl.egl.config,
@@ -281,7 +283,9 @@ bool rsdGLInit(const Context *rsc) {
glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &dc->gl.gl.EXT_texture_max_aniso);
}
- DumpDebug(dc);
+ if (0) {
+ DumpDebug(dc);
+ }
LOGV("initGLThread end %p", rsc);
return true;