From: Brian Paul Date: Tue, 8 Apr 2003 13:33:41 +0000 (+0000) Subject: add missing return in raster_pos4f() X-Git-Tag: 062012170305~25881 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=38c619bf15609037e89d9b6377fe1d033d707ff1;p=profile%2Fivi%2Fmesa.git add missing return in raster_pos4f() --- diff --git a/src/mesa/main/rastpos.c b/src/mesa/main/rastpos.c index 2ca7b22..5c019bd 100644 --- a/src/mesa/main/rastpos.c +++ b/src/mesa/main/rastpos.c @@ -1,5 +1,3 @@ -/* $Id: rastpos.c,v 1.40 2003/03/01 01:50:22 brianp Exp $ */ - /* * Mesa 3-D graphics library * Version: 5.1 @@ -329,8 +327,10 @@ raster_pos4f(GLcontext *ctx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) /* clip to view volume */ if (ctx->Transform.RasterPositionUnclipped) { /* GL_IBM_rasterpos_clip: only clip against Z */ - if (viewclip_point_z(clip) == 0) + if (viewclip_point_z(clip) == 0) { ctx->Current.RasterPosValid = GL_FALSE; + return; + } } else if (viewclip_point(clip) == 0) { /* Normal OpenGL behaviour */