Home | History | Annotate | Download | only in i915

Lines Matching refs:rasterizer

884                              const struct pipe_rasterizer_state *rasterizer)
888 cso->templ = *rasterizer;
889 cso->color_interp = rasterizer->flatshade ? INTERP_CONSTANT : INTERP_LINEAR;
890 cso->light_twoside = rasterizer->light_twoside;
892 cso->ds[1].f = rasterizer->offset_scale;
893 if (rasterizer->poly_stipple_enable) {
897 if (rasterizer->scissor)
902 switch (rasterizer->cull_face) {
907 if (rasterizer->front_ccw)
913 if (rasterizer->front_ccw)
924 int line_width = CLAMP((int)(rasterizer->line_width * 2), 1, 0xf);
928 if (rasterizer->line_smooth)
933 int point_size = CLAMP((int) rasterizer->point_size, 1, 0xff);
938 if (rasterizer->flatshade) {
944 cso->LIS7 = fui( rasterizer->offset_units );
955 if (i915->rasterizer == raster)
958 i915->rasterizer = (struct i915_rasterizer_state *)raster;
962 (i915->rasterizer ? &(i915->rasterizer->templ) : NULL),