sp_quad_output.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 #include "util/u_memory.h"
00029 #include "sp_context.h"
00030 #include "sp_headers.h"
00031 #include "sp_surface.h"
00032 #include "sp_quad.h"
00033 #include "sp_tile_cache.h"
00034 
00035 
00040 static void
00041 output_quad(struct quad_stage *qs, struct quad_header *quad)
00042 {
00043    /* in-tile pos: */
00044    const int itx = quad->input.x0 % TILE_SIZE;
00045    const int ity = quad->input.y0 % TILE_SIZE;
00046 
00047    struct softpipe_context *softpipe = qs->softpipe;
00048    uint cbuf;
00049 
00050    /* loop over colorbuffer outputs */
00051    for (cbuf = 0; cbuf < softpipe->framebuffer.num_cbufs; cbuf++) {
00052       struct softpipe_cached_tile *tile
00053          = sp_get_cached_tile(softpipe,
00054                               softpipe->cbuf_cache[cbuf],
00055                               quad->input.x0, quad->input.y0);
00056       float (*quadColor)[4] = quad->output.color[cbuf];
00057       int i, j;
00058 
00059       /* get/swizzle dest colors */
00060       for (j = 0; j < QUAD_SIZE; j++) {
00061          if (quad->inout.mask & (1 << j)) {
00062             int x = itx + (j & 1);
00063             int y = ity + (j >> 1);
00064             for (i = 0; i < 4; i++) { /* loop over color chans */
00065                tile->data.color[y][x][i] = quadColor[i][j];
00066             }
00067             if (0) {
00068                debug_printf("sp write pixel %d,%d: %g, %g, %g\n",
00069                             quad->input.x0 + x,
00070                             quad->input.y0 + y,
00071                             quadColor[0][j],
00072                             quadColor[1][j],
00073                             quadColor[2][j]);
00074             }
00075          }
00076       }
00077    }
00078 }
00079 
00080 
00081 static void output_begin(struct quad_stage *qs)
00082 {
00083    assert(qs->next == NULL);
00084 }
00085 
00086 
00087 static void output_destroy(struct quad_stage *qs)
00088 {
00089    FREE( qs );
00090 }
00091 
00092 
00093 struct quad_stage *sp_quad_output_stage( struct softpipe_context *softpipe )
00094 {
00095    struct quad_stage *stage = CALLOC_STRUCT(quad_stage);
00096 
00097    stage->softpipe = softpipe;
00098    stage->begin = output_begin;
00099    stage->run = output_quad;
00100    stage->destroy = output_destroy;
00101 
00102    return stage;
00103 }

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