/* Hardware frontwinding is always set up as SVGA3D_FRONTWINDING_CW.
*/
-static SVGA3dFace svga_translate_cullmode( unsigned mode,
- unsigned front_ccw )
+static SVGA3dFace
+svga_translate_cullmode(unsigned mode, unsigned front_ccw)
{
const int hw_front_ccw = 0; /* hardware is always CW */
switch (mode) {
}
}
-static SVGA3dShadeMode svga_translate_flatshade( unsigned mode )
+static SVGA3dShadeMode
+svga_translate_flatshade(unsigned mode)
{
return mode ? SVGA3D_SHADEMODE_FLAT : SVGA3D_SHADEMODE_SMOOTH;
}
const struct pipe_rasterizer_state *templ)
{
struct svga_context *svga = svga_context(pipe);
- struct svga_rasterizer_state *rast = CALLOC_STRUCT( svga_rasterizer_state );
+ struct svga_rasterizer_state *rast = CALLOC_STRUCT(svga_rasterizer_state);
struct svga_screen *screen = svga_screen(pipe->screen);
if (!rast)
/* line_width - draw module */
/* fill_cw, fill_ccw - draw module or index translation */
- rast->shademode = svga_translate_flatshade( templ->flatshade );
- rast->cullmode = svga_translate_cullmode( templ->cull_face,
- templ->front_ccw );
+ rast->shademode = svga_translate_flatshade(templ->flatshade);
+ rast->cullmode = svga_translate_cullmode(templ->cull_face, templ->front_ccw);
rast->scissortestenable = templ->scissor;
rast->multisampleantialias = templ->multisample;
rast->antialiasedlineenable = templ->line_smooth;
return rast;
}
-static void svga_bind_rasterizer_state( struct pipe_context *pipe,
- void *state )
+
+static void
+svga_bind_rasterizer_state(struct pipe_context *pipe, void *state)
{
struct svga_context *svga = svga_context(pipe);
struct svga_rasterizer_state *raster = (struct svga_rasterizer_state *)state;
svga->dirty |= SVGA_NEW_RAST;
}
+
static void
svga_delete_rasterizer_state(struct pipe_context *pipe, void *state)
{
}
-void svga_init_rasterizer_functions( struct svga_context *svga )
+void
+svga_init_rasterizer_functions(struct svga_context *svga)
{
svga->pipe.create_rasterizer_state = svga_create_rasterizer_state;
svga->pipe.bind_rasterizer_state = svga_bind_rasterizer_state;
svga->pipe.delete_rasterizer_state = svga_delete_rasterizer_state;
}
-
-
-/***********************************************************************
- * Hardware state update
- */
-