1f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org/**************************************************************************
2f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
3f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * All Rights Reserved.
5f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
6f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Permission is hereby granted, free of charge, to any person obtaining a
7f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * copy of this software and associated documentation files (the
8f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * "Software"), to deal in the Software without restriction, including
9f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * without limitation the rights to use, copy, modify, merge, publish,
10f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * distribute, sub license, and/or sell copies of the Software, and to
11f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * permit persons to whom the Software is furnished to do so, subject to
12f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * the following conditions:
13f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
14f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * The above copyright notice and this permission notice (including the
15f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * next paragraph) shall be included in all copies or substantial portions
16f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * of the Software.
17f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
18f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
26f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org **************************************************************************/
27f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
28f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "pipe/p_defines.h"
29f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "util/u_memory.h"
30f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "lp_context.h"
31f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "lp_state.h"
32f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "lp_setup.h"
33f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "draw/draw_context.h"
34f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
35f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgstruct lp_rast_state {
36f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   struct pipe_rasterizer_state lp_state;
37f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   struct pipe_rasterizer_state draw_state;
38f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org};
39f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
40f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org/* State which might be handled in either the draw module or locally.
41f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * This function is used to turn that state off in one of the two
42f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * places.
43f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org */
44f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgstatic void
45f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgclear_flags(struct pipe_rasterizer_state *rast)
46f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org{
47f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   rast->light_twoside = 0;
48f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   rast->offset_tri = 0;
49f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org}
50f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
51f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
52f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
53f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgstatic void *
54f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgllvmpipe_create_rasterizer_state(struct pipe_context *pipe,
55f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org                                 const struct pipe_rasterizer_state *rast)
56f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org{
57f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   boolean need_pipeline;
58f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
59f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   /* Partition rasterizer state into what we want the draw module to
60f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org    * handle, and what we'll look after ourselves.
61f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org    */
62f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   struct lp_rast_state *state = MALLOC_STRUCT(lp_rast_state);
63f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   if (state == NULL)
64f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org      return NULL;
65f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
66f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   memcpy(&state->draw_state, rast, sizeof *rast);
67f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   memcpy(&state->lp_state, rast, sizeof *rast);
68f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
69f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   /* We rely on draw module to do unfilled polyons, AA lines and
70f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org    * points and stipple.
71f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org    *
72f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org    * Over time, reduce this list of conditions, and expand the list
73f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org    * of flags which get cleared in clear_flags().
74f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org    */
75f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   need_pipeline = (rast->fill_front != PIPE_POLYGON_MODE_FILL ||
76f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org		    rast->fill_back != PIPE_POLYGON_MODE_FILL ||
77f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org		    rast->point_smooth ||
78f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org		    rast->line_smooth ||
79		    rast->line_stipple_enable ||
80		    rast->poly_stipple_enable);
81
82   /* If not using the pipeline, clear out the flags which we can
83    * handle ourselves.  If we *are* using the pipeline, do everything
84    * on the pipeline and clear those flags on our internal copy of
85    * the state.
86    */
87   if (need_pipeline)
88      clear_flags(&state->lp_state);
89   else
90      clear_flags(&state->draw_state);
91
92   return state;
93}
94
95
96
97static void
98llvmpipe_bind_rasterizer_state(struct pipe_context *pipe, void *handle)
99{
100   struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
101   const struct lp_rast_state *state =
102      (const struct lp_rast_state *) handle;
103
104   if (state) {
105      llvmpipe->rasterizer = &state->lp_state;
106      draw_set_rasterizer_state(llvmpipe->draw, &state->draw_state, handle);
107
108      /* XXX: just pass lp_state directly to setup.
109       */
110      lp_setup_set_triangle_state( llvmpipe->setup,
111				   state->lp_state.cull_face,
112				   state->lp_state.front_ccw,
113				   state->lp_state.scissor,
114				   state->lp_state.gl_rasterization_rules);
115      lp_setup_set_flatshade_first( llvmpipe->setup,
116				    state->lp_state.flatshade_first);
117      lp_setup_set_line_state( llvmpipe->setup,
118			       state->lp_state.line_width);
119      lp_setup_set_point_state( llvmpipe->setup,
120				state->lp_state.point_size,
121				state->lp_state.point_size_per_vertex,
122				state->lp_state.sprite_coord_enable,
123				state->lp_state.sprite_coord_mode);
124   }
125   else {
126      llvmpipe->rasterizer = NULL;
127      draw_set_rasterizer_state(llvmpipe->draw, NULL, handle);
128   }
129
130   llvmpipe->dirty |= LP_NEW_RASTERIZER;
131}
132
133
134static void
135llvmpipe_delete_rasterizer_state(struct pipe_context *pipe,
136                                 void *rasterizer)
137{
138   FREE( rasterizer );
139}
140
141
142
143void
144llvmpipe_init_rasterizer_funcs(struct llvmpipe_context *llvmpipe)
145{
146   llvmpipe->pipe.create_rasterizer_state = llvmpipe_create_rasterizer_state;
147   llvmpipe->pipe.bind_rasterizer_state   = llvmpipe_bind_rasterizer_state;
148   llvmpipe->pipe.delete_rasterizer_state = llvmpipe_delete_rasterizer_state;
149}
150