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

1 2

  /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;
state.c 399 if (ctx->Point.SmoothFlag)
409 if (ctx->Line.SmoothFlag)
419 if (ctx->Polygon.SmoothFlag)
attrib.c 278 attr->LineSmooth = ctx->Line.SmoothFlag;
304 attr->PointSmooth = ctx->Point.SmoothFlag;
309 attr->PolygonSmooth = ctx->Polygon.SmoothFlag;
528 TEST_AND_UPDATE(ctx->Line.SmoothFlag, enable->LineSmooth, GL_LINE_SMOOTH);
583 TEST_AND_UPDATE(ctx->Point.SmoothFlag, enable->PointSmooth,
595 TEST_AND_UPDATE(ctx->Polygon.SmoothFlag, enable->PolygonSmooth,
    [all...]
enable.c 413 if (ctx->Line.SmoothFlag == state)
416 ctx->Line.SmoothFlag = state;
599 if (ctx->Point.SmoothFlag == state)
602 ctx->Point.SmoothFlag = state;
608 if (ctx->Polygon.SmoothFlag == state)
611 ctx->Polygon.SmoothFlag = state;
    [all...]
points.c 241 ctx->Point.SmoothFlag = GL_FALSE;
polygon.c 325 ctx->Polygon.SmoothFlag = GL_FALSE;
mtypes.h 969 GLboolean SmoothFlag; /**< GL_LINE_SMOOTH enabled? */
1066 GLboolean SmoothFlag; /**< True if GL_POINT_SMOOTH is enabled */
    [all...]
get.c 591 { GL_LINE_SMOOTH, CONTEXT_BOOL(Line.SmoothFlag), NO_EXTRA },
608 { GL_POINT_SMOOTH, CONTEXT_BOOL(Point.SmoothFlag), NO_EXTRA },
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_rasterizer.c 152 if (ctx->Polygon.SmoothFlag)
162 if (!ctx->Point.PointSprite && ctx->Point.SmoothFlag)
215 raster->line_smooth = ctx->Line.SmoothFlag;
216 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) {
xm_tri.c 1016 if (ctx->Polygon.SmoothFlag)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_state.c 238 if (ctx->Line.SmoothFlag)
gen6_sf_state.c 228 if (ctx->Line.SmoothFlag) {
gen7_sf_state.c 257 if (ctx->Line.SmoothFlag) {
brw_misc_state.c 707 if (!ctx->Line.SmoothFlag || !brw->has_aa_line_parameters)
brw_wm.c 530 if (ctx->Line.SmoothFlag) {
  /external/mesa3d/src/mesa/swrast/
s_aatriangle.c 299 ASSERT(ctx->Polygon.SmoothFlag);
s_lines.c 233 if (ctx->Line.SmoothFlag) {
s_aaline.c 479 ASSERT(ctx->Line.SmoothFlag);
s_points.c 553 else if (ctx->Point.SmoothFlag) {
s_triangle.c     [all...]
  /external/mesa3d/src/mesa/drivers/osmesa/
osmesa.c 198 if (ctx->Line.SmoothFlag) return NULL;
203 if (ctx->Line.SmoothFlag) return NULL;
299 if (ctx->Polygon.SmoothFlag) return (swrast_tri_func) NULL;
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 268 ctx->Driver.Enable(ctx, GL_LINE_SMOOTH, ctx->Line.SmoothFlag);
  /external/mesa3d/src/mesa/program/
prog_statevars.c 485 else if (ctx->Point.SmoothFlag || ctx->Multisample._Enabled) {
    [all...]

Completed in 1422 milliseconds

1 2