HomeSort by relevance Sort by last modified time
    Searched refs:SmoothFlag (Results 1 - 25 of 28) sorted by null

1 2

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_util.h 53 CLAMP(!_mesa_is_multisample_enabled(&brw->ctx) && !brw->ctx.Line.SmoothFlag
62 } else if (brw->ctx.Line.SmoothFlag && line_width < 1.5f) {
gen8_sf_state.c 175 if (ctx->Line.SmoothFlag) {
190 if ((ctx->Point.SmoothFlag || _mesa_is_multisample_enabled(ctx)) &&
260 if (ctx->Point.SmoothFlag)
305 if (ctx->Line.SmoothFlag)
gen7_sf_state.c 201 if (ctx->Line.SmoothFlag) {
brw_sf_state.c 227 if (ctx->Line.SmoothFlag)
gen6_sf_state.c 366 if (ctx->Line.SmoothFlag) {
brw_wm.c 488 if (ctx->Line.SmoothFlag) {
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_polygon.c 63 GLboolean smooth = ctx->Line.SmoothFlag &&
87 PUSH_DATAb(push, ctx->Point.SmoothFlag);
100 PUSH_DATAb(push, ctx->Polygon.SmoothFlag);
  /external/mesa3d/src/mesa/main/
lines.c 129 ctx->Line.SmoothFlag = GL_FALSE;
attrib.c 337 attr->LineSmooth = ctx->Line.SmoothFlag;
361 attr->PointSmooth = ctx->Point.SmoothFlag;
366 attr->PolygonSmooth = ctx->Polygon.SmoothFlag;
611 TEST_AND_UPDATE(ctx->Line.SmoothFlag, enable->LineSmooth, GL_LINE_SMOOTH);
658 TEST_AND_UPDATE(ctx->Point.SmoothFlag, enable->PointSmooth,
670 TEST_AND_UPDATE(ctx->Polygon.SmoothFlag, enable->PolygonSmooth,
    [all...]
enable.c 421 if (ctx->Line.SmoothFlag == state)
424 ctx->Line.SmoothFlag = state;
615 if (ctx->Point.SmoothFlag == state)
618 ctx->Point.SmoothFlag = state;
623 if (ctx->Polygon.SmoothFlag == state)
626 ctx->Polygon.SmoothFlag = state;
    [all...]
points.c 228 ctx->Point.SmoothFlag = GL_FALSE;
polygon.c 316 ctx->Polygon.SmoothFlag = GL_FALSE;
mtypes.h 661 GLboolean SmoothFlag; /**< GL_LINE_SMOOTH enabled? */
770 GLboolean SmoothFlag; /**< True if GL_POINT_SMOOTH is enabled */
789 GLboolean SmoothFlag; /**< True if GL_POLYGON_SMOOTH is enabled */
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_rasterizer.c 161 raster->poly_smooth = ctx->Polygon.SmoothFlag;
167 raster->point_smooth = !ctx->Point.PointSprite && ctx->Point.SmoothFlag;
233 raster->line_smooth = ctx->Line.SmoothFlag;
234 if (ctx->Line.SmoothFlag) {
  /external/mesa3d/src/mesa/drivers/x11/
xm_line.c 98 && ctx->Point.Size == 1.0F && !ctx->Point.SmoothFlag
458 if (ctx->Line.SmoothFlag) return (swrast_line_func) NULL;
519 && !ctx->Line.SmoothFlag) {
  /external/mesa3d/src/mesa/swrast/
s_aatriangle.c 284 assert(ctx->Polygon.SmoothFlag);
s_lines.c 232 if (ctx->Line.SmoothFlag) {
s_aaline.c 481 assert(ctx->Line.SmoothFlag);
s_points.c 552 else if (ctx->Point.SmoothFlag) {
  /external/mesa3d/src/mesa/drivers/osmesa/
osmesa.c 210 ctx->Line.SmoothFlag ||
215 ctx->Line.SmoothFlag) {
324 ctx->Polygon.SmoothFlag ||
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 248 ctx->Driver.Enable(ctx, GL_LINE_SMOOTH, ctx->Line.SmoothFlag);
  /external/mesa3d/prebuilt-intermediates/main/
get_hash.h 133 { GL_LINE_SMOOTH, CONTEXT_BOOL(Line.SmoothFlag), NO_EXTRA },
149 { GL_POINT_SMOOTH, CONTEXT_BOOL(Point.SmoothFlag), NO_EXTRA },
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_tcl.c 70 #define HW_POINTS ((!ctx->Point.SmoothFlag) ? \
r200_swtcl.c 323 return ((!ctx->Point.SmoothFlag) ?
  /external/mesa3d/src/mesa/program/
prog_statevars.c 513 else if (ctx->Point.SmoothFlag || _mesa_is_multisample_enabled(ctx)) {
    [all...]

Completed in 282 milliseconds

1 2