st_atom_scissor.c

Go to the documentation of this file.
00001 /**************************************************************************
00002  * 
00003  * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
00004  * All Rights Reserved.
00005  * 
00006  * Permission is hereby granted, free of charge, to any person obtaining a
00007  * copy of this software and associated documentation files (the
00008  * "Software"), to deal in the Software without restriction, including
00009  * without limitation the rights to use, copy, modify, merge, publish,
00010  * distribute, sub license, and/or sell copies of the Software, and to
00011  * permit persons to whom the Software is furnished to do so, subject to
00012  * the following conditions:
00013  * 
00014  * The above copyright notice and this permission notice (including the
00015  * next paragraph) shall be included in all copies or substantial portions
00016  * of the Software.
00017  * 
00018  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
00019  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00020  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
00021  * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
00022  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
00023  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
00024  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00025  * 
00026  **************************************************************************/
00027 
00028  /*
00029   * Authors:
00030   *   Keith Whitwell <keith@tungstengraphics.com>
00031   */
00032  
00033 
00034 #include "st_context.h"
00035 #include "pipe/p_context.h"
00036 #include "st_atom.h"
00037 
00038 
00042 static void
00043 update_scissor( struct st_context *st )
00044 {
00045    struct pipe_scissor_state scissor;
00046    const struct gl_framebuffer *fb = st->ctx->DrawBuffer;
00047    GLint miny, maxy;
00048 
00049    scissor.minx = 0;
00050    scissor.miny = 0;
00051    scissor.maxx = fb->Width;
00052    scissor.maxy = fb->Height;
00053 
00054    if (st->ctx->Scissor.Enabled) {
00055       if ((GLuint)st->ctx->Scissor.X > scissor.minx)
00056          scissor.minx = st->ctx->Scissor.X;
00057       if ((GLuint)st->ctx->Scissor.Y > scissor.miny)
00058          scissor.miny = st->ctx->Scissor.Y;
00059 
00060       if ((GLuint)st->ctx->Scissor.X + st->ctx->Scissor.Width < scissor.maxx)
00061          scissor.maxx = st->ctx->Scissor.X + st->ctx->Scissor.Width;
00062       if ((GLuint)st->ctx->Scissor.Y + st->ctx->Scissor.Height < scissor.maxy)
00063          scissor.maxy = st->ctx->Scissor.Y + st->ctx->Scissor.Height;
00064 
00065       /* check for null space */
00066       if (scissor.minx >= scissor.maxx || scissor.miny >= scissor.maxy)
00067          scissor.minx = scissor.miny = scissor.maxx = scissor.maxy = 0;
00068    }
00069 
00070    /* Now invert Y.  Pipe drivers use the convention Y=0=top for surfaces
00071     */
00072    miny = fb->Height - scissor.maxy;
00073    maxy = fb->Height - scissor.miny;
00074    scissor.miny = miny;
00075    scissor.maxy = maxy;
00076 
00077    if (memcmp(&scissor, &st->state.scissor, sizeof(scissor)) != 0) {
00078       /* state has changed */
00079       st->state.scissor = scissor;  /* struct copy */
00080       st->pipe->set_scissor_state(st->pipe, &scissor); /* activate */
00081    }
00082 }
00083 
00084 
00085 const struct st_tracked_state st_update_scissor = {
00086    "st_update_scissor",                                 /* name */
00087    {                                                    /* dirty */
00088       (_NEW_SCISSOR | _NEW_BUFFERS),                    /* mesa */
00089       0,                                                /* st */
00090    },
00091    update_scissor                                       /* update */
00092 };

Generated on Tue Sep 29 06:25:18 2009 for Gallium3D by  doxygen 1.5.4