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

1 2

  /external/mesa3d/src/mesa/main/
polygon.c 84 * Verifies the parameter and updates gl_polygon_attrib::FrontFace. On change
86 * the dd_function_table::FrontFace callback.
96 if (ctx->Polygon.FrontFace == mode)
105 ctx->Polygon.FrontFace = mode;
107 if (ctx->Driver.FrontFace)
108 ctx->Driver.FrontFace( ctx, mode );
312 ctx->Polygon.FrontFace = GL_CCW;
viewport.c 458 if (ctx->Driver.FrontFace)
459 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
state.c 346 ctx->Polygon._FrontBit = (ctx->Polygon.FrontFace == GL_CW);
348 ctx->Polygon._FrontBit = (ctx->Polygon.FrontFace == GL_CCW);
dd.h 551 void (*FrontFace)(struct gl_context *ctx, GLenum mode);
    [all...]
attrib.c     [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common.c 298 if (ctx->Driver.FrontFace)
299 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
333 if (ctx->Driver.FrontFace)
334 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_polygon.c 55 PUSH_DATA (push, ctx->Polygon.FrontFace == GL_CW ?
nv04_state_raster.c 128 int front = ctx->Polygon.FrontFace;
nouveau_state.c 514 ctx->Driver.FrontFace = nouveau_front_face;
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 134 driver->FrontFace = NULL;
267 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
  /external/mesa3d/src/mesa/state_tracker/
st_atom_rasterizer.c 73 raster->front_ccw = (ctx->Polygon.FrontFace == GL_CCW);
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_state.c 67 if (ctx->Polygon.FrontFace == GL_CW) {
575 if (ctx->Polygon.FrontFace != GL_CCW)
    [all...]
i830_state.c 608 if (ctx->Polygon.FrontFace != GL_CCW)
    [all...]
i830_vtbl.c 844 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
i915_vtbl.c 816 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
  /external/skia/src/gpu/gl/
GrGLAssembleInterface.cpp 149 GET_PROC(FrontFace);
514 GET_PROC(FrontFace);
  /external/skqp/src/gpu/gl/
GrGLAssembleInterface.cpp 149 GET_PROC(FrontFace);
646 GET_PROC(FrontFace);
    [all...]
  /external/swiftshader/src/OpenGL/libGLES_CM/
main.cpp 211 void FrontFace(GLenum mode);
825 return es1::FrontFace(mode);
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
entry_points.cpp 84 void FrontFace(GLenum mode);
562 return es2::FrontFace(mode);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_icd.h 207 void (GLAPIENTRY * FrontFace)(GLenum);
  /external/mesa3d/src/mesa/swrast/
s_context.c 128 * and 1 if culling front-faces. The Polygon FrontFace state also
158 = (ctx->Polygon.FrontFace == GL_CW) ? -1.0F : 1.0F;
  /external/mesa3d/src/mapi/glapi/tests/
check_table.cpp 723 { "glFrontFace", _O(FrontFace) },
    [all...]
  /external/mesa3d/prebuilt-intermediates/main/
get_hash.h 22 { GL_FRONT_FACE, CONTEXT_ENUM(Polygon.FrontFace), NO_EXTRA },
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d10.idl 336 D3D10_DEPTH_STENCILOP_DESC FrontFace;
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/include/vulkan/
vulkan.hpp     [all...]

Completed in 263 milliseconds

1 2