Home
last modified time | relevance | path

Searched refs:StippleFactor (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/mesa/main/
Dlines.c105 if (ctx->Line.StippleFactor == factor && in _mesa_LineStipple()
110 ctx->Line.StippleFactor = factor; in _mesa_LineStipple()
133 ctx->Line.StippleFactor = 1; in _mesa_init_line()
Dmtypes.h972 GLint StippleFactor; /**< Stipple repeat factor */ member
Dattrib.c1125 _mesa_LineStipple(line->StippleFactor, line->StipplePattern); in _mesa_PopAttrib()
Dget.c866 { GL_LINE_STIPPLE_REPEAT, CONTEXT_INT(Line.StippleFactor), NO_EXTRA },
/external/mesa3d/src/mesa/state_tracker/
Dst_atom_rasterizer.c230 raster->line_stipple_factor = ctx->Line.StippleFactor - 1; in update_raster_state()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_misc_state.c749 tmp = 1.0 / (GLfloat) ctx->Line.StippleFactor; in upload_line_stipple()
751 OUT_BATCH(tmpi << 16 | ctx->Line.StippleFactor); in upload_line_stipple()
/external/mesa3d/src/mesa/swrast/
Ds_lines.c47 GLuint bit = (swrast->StippleCounter / ctx->Line.StippleFactor) & 0xf; in compute_stipple_mask()
Ds_aalinetemp.h196 const GLuint bit = (swrast->StippleCounter / ctx->Line.StippleFactor) & 0xf; in NAME()