summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2010-06-23 11:34:51 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2010-06-23 11:34:51 -0700
commite6ee4e1bdf0f82fd3c09a0cb95a5844bed25a1d1 (patch)
tree5ccafa7dc133b538461857bdff8c437e119f2e55
parent666fdc01c4a00eef0e114001441441fb7caeee15 (diff)
glhd: Simple rasterizer checks.
From the documentation.
-rw-r--r--src/gallium/drivers/galahad/glhd_context.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gallium/drivers/galahad/glhd_context.c b/src/gallium/drivers/galahad/glhd_context.c
index 5531f579ec2..3b20cb1e7f8 100644
--- a/src/gallium/drivers/galahad/glhd_context.c
+++ b/src/gallium/drivers/galahad/glhd_context.c
@@ -269,6 +269,16 @@ galahad_create_rasterizer_state(struct pipe_context *_pipe,
struct galahad_context *glhd_pipe = galahad_context(_pipe);
struct pipe_context *pipe = glhd_pipe->pipe;
+ if (rasterizer->point_quad_rasterization) {
+ if (rasterizer->point_smooth) {
+ glhd_warn("Point smoothing requested but ignored");
+ }
+ } else {
+ if (rasterizer->sprite_coord_enable) {
+ glhd_warn("Point sprites requested but ignored");
+ }
+ }
+
return pipe->create_rasterizer_state(pipe,
rasterizer);
}