r300g: do not print get_param errors in non-debug build
authorMarek Olšák <maraeo@gmail.com>
Fri, 22 Oct 2010 17:45:05 +0000 (19:45 +0200)
committerMarek Olšák <maraeo@gmail.com>
Fri, 22 Oct 2010 18:34:27 +0000 (20:34 +0200)
src/gallium/drivers/r300/r300_screen.c

index b448924..963fa8f 100644 (file)
@@ -154,8 +154,8 @@ static int r300_get_param(struct pipe_screen* pscreen, enum pipe_cap param)
         case PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_INTEGER:
             return 0;
         default:
-            fprintf(stderr, "r300: Implementation error: Bad param %d\n",
-                param);
+            debug_printf("r300: Warning: Unknown CAP %d in get_param.\n",
+                         param);
             return 0;
     }
 }
@@ -265,8 +265,8 @@ static float r300_get_paramf(struct pipe_screen* pscreen, enum pipe_cap param)
         case PIPE_CAP_MAX_TEXTURE_LOD_BIAS:
             return 16.0f;
         default:
-            fprintf(stderr, "r300: Implementation error: Bad paramf %d\n",
-                param);
+            debug_printf("r300: Warning: Unknown CAP %d in get_paramf.\n",
+                         param);
             return 0.0f;
     }
 }