HomeSort by relevance Sort by last modified time
    Searched full:frontface (Results 1 - 25 of 182) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/skia/samplecode/
SampleCamera.cpp 77 bool frontFace = view.dotWithNormal(0, 0, SK_Scalar1) < 0;
78 if (frontFace != fFrontFace) {
79 fFrontFace = frontFace;
  /external/skia/samplecode/
SampleCamera.cpp 77 bool frontFace = view.dotWithNormal(0, 0, SK_Scalar1) < 0;
78 if (frontFace != fFrontFace) {
79 fFrontFace = frontFace;
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
SConscript 20 'fs-frontface',
  /external/mesa3d/src/gallium/tests/graw/
SConscript 20 'fs-frontface',
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
polygon.c 85 * Verifies the parameter and updates gl_polygon_attrib::FrontFace. On change
87 * the dd_function_table::FrontFace callback.
103 if (ctx->Polygon.FrontFace == mode)
107 ctx->Polygon.FrontFace = mode;
111 if (ctx->Driver.FrontFace)
112 ctx->Driver.FrontFace( ctx, mode );
321 ctx->Polygon.FrontFace = GL_CCW;
  /external/mesa3d/src/mesa/main/
polygon.c 85 * Verifies the parameter and updates gl_polygon_attrib::FrontFace. On change
87 * the dd_function_table::FrontFace callback.
103 if (ctx->Polygon.FrontFace == mode)
107 ctx->Polygon.FrontFace = mode;
111 if (ctx->Driver.FrontFace)
112 ctx->Driver.FrontFace( ctx, mode );
321 ctx->Polygon.FrontFace = GL_CCW;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
renderer9_utils.h 34 D3DCULL ConvertCullMode(GLenum cullFace, GLenum frontFace);
renderer9_utils.cpp 133 D3DCULL ConvertCullMode(GLenum cullFace, GLenum frontFace)
139 cull = (frontFace == GL_CCW ? D3DCULL_CW : D3DCULL_CCW);
142 cull = (frontFace == GL_CCW ? D3DCULL_CCW : D3DCULL_CW);
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
gles_api.py 79 'FrontFace',
335 "FrontFace",
  /external/mesa3d/src/mapi/glapi/gen/
gles_api.py 79 'FrontFace',
335 "FrontFace",
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
PixelTransfer11.cpp 67 depthStencilDesc.FrontFace.StencilFailOp = D3D11_STENCIL_OP_KEEP;
68 depthStencilDesc.FrontFace.StencilDepthFailOp = D3D11_STENCIL_OP_KEEP;
69 depthStencilDesc.FrontFace.StencilPassOp = D3D11_STENCIL_OP_KEEP;
70 depthStencilDesc.FrontFace.StencilFunc = D3D11_COMPARISON_ALWAYS;
RenderStateCache.cpp 248 rasterDesc.FrontCounterClockwise = (rasterState.frontFace == GL_CCW) ? FALSE: TRUE;
335 dsDesc.FrontFace.StencilFailOp = gl_d3d11::ConvertStencilOp(dsState.stencilFail);
336 dsDesc.FrontFace.StencilDepthFailOp = gl_d3d11::ConvertStencilOp(dsState.stencilPassDepthFail);
337 dsDesc.FrontFace.StencilPassOp = gl_d3d11::ConvertStencilOp(dsState.stencilPassDepthPass);
338 dsDesc.FrontFace.StencilFunc = gl_d3d11::ConvertComparison(dsState.stencilFunc);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen7_clip_state.c 54 if ((ctx->Polygon.FrontFace == GL_CCW) ^ render_to_fbo)
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_clip_state.c 54 if ((ctx->Polygon.FrontFace == GL_CCW) ^ render_to_fbo)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
driverfuncs.c 130 driver->FrontFace = NULL;
287 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 130 driver->FrontFace = NULL;
287 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_0_autogen.h 49 EXPECT_CALL(*gl_, FrontFace(GL_CCW)).Times(1).RetiresOnSaturation();
  /external/chromium_org/third_party/angle/src/libGLESv2/
angletypes.h 84 GLenum frontFace;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv10_state_polygon.c 55 PUSH_DATA (push, ctx->Polygon.FrontFace == GL_CW ?
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_polygon.c 55 PUSH_DATA (push, ctx->Polygon.FrontFace == GL_CW ?
  /external/skia/src/gpu/gl/angle/
GrGLCreateANGLEInterface.cpp 78 GET_PROC(FrontFace);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_common.c 300 if (ctx->Driver.FrontFace)
301 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
346 if (ctx->Driver.FrontFace)
347 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common.c 300 if (ctx->Driver.FrontFace)
301 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
346 if (ctx->Driver.FrontFace)
347 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLAssembleInterface.cpp 111 GET_PROC(FrontFace);
356 GET_PROC(FrontFace);
  /external/chromium_org/gpu/GLES2/
gl2chromium_autogen.h 64 #define glFrontFace GLES2_GET_FUN(FrontFace)

Completed in 4689 milliseconds

1 2 3 4 5 6 7 8