From: Corbin Simpson Date: Wed, 23 Jun 2010 18:34:51 +0000 (-0700) Subject: glhd: Simple rasterizer checks. X-Git-Tag: 062012170305~11676 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6ee4e1bdf0f82fd3c09a0cb95a5844bed25a1d1;p=profile%2Fivi%2Fmesa.git glhd: Simple rasterizer checks. From the documentation. --- diff --git a/src/gallium/drivers/galahad/glhd_context.c b/src/gallium/drivers/galahad/glhd_context.c index 5531f57..3b20cb1 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); }