summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r300/r300_screen.c
diff options
context:
space:
mode:
authorCorbin Simpson <[email protected]>2009-01-24 04:03:27 -0800
committerCorbin Simpson <[email protected]>2009-02-01 23:30:28 -0800
commitf2a7d4f2e8e890e69e1dfa9067db4e90df63989f (patch)
tree0c41aad6b7c5788a655a694e9089d92b6e8cd62a /src/gallium/drivers/r300/r300_screen.c
parent161f4068aa5f8b556d0c00c3e31192b3736aada5 (diff)
r300: Newlines, dammit!
Diffstat (limited to 'src/gallium/drivers/r300/r300_screen.c')
-rw-r--r--src/gallium/drivers/r300/r300_screen.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c
index dc1e41749f8..25ddb0e8c68 100644
--- a/src/gallium/drivers/r300/r300_screen.c
+++ b/src/gallium/drivers/r300/r300_screen.c
@@ -139,7 +139,8 @@ static int r300_get_param(struct pipe_screen* pscreen, int param)
/* XXX 4 eventually */
return 1;
default:
- debug_printf("r300: Implementation error: Bad param %d", param);
+ debug_printf("r300: Implementation error: Bad param %d\n",
+ param);
return 0;
}
}
@@ -162,7 +163,8 @@ static float r300_get_paramf(struct pipe_screen* pscreen, int param)
case PIPE_CAP_MAX_TEXTURE_LOD_BIAS:
return 16.0f;
default:
- debug_printf("r300: Implementation error: Bad paramf %d", param);
+ debug_printf("r300: Implementation error: Bad paramf %d\n",
+ param);
return 0.0f;
}
}
@@ -175,7 +177,7 @@ static boolean check_tex_2d_format(enum pipe_format format)
case PIPE_FORMAT_I8_UNORM:
return TRUE;
default:
- debug_printf("r300: Warning: Got unknown format: %d, in %s",
+ debug_printf("r300: Warning: Got unknown format: %d, in %s\n",
format, __FUNCTION__);
break;
}
@@ -194,7 +196,7 @@ static boolean r300_is_format_supported(struct pipe_screen* pscreen,
case PIPE_TEXTURE_2D:
return check_tex_2d_format(format);
default:
- debug_printf("r300: Warning: Got unknown format target: %d",
+ debug_printf("r300: Warning: Got unknown format target: %d\n",
format);
break;
}