Home
last modified time | relevance | path

Searched refs:frontFace (Results 1 - 25 of 145) sorted by relevance

123456

/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DCullingTests.cpp22 wgpu::RenderPipeline CreatePipelineForTest(wgpu::FrontFace frontFace, wgpu::CullMode cullMode) { in CreatePipelineForTest() argument
53 pipelineDescriptor.primitive.frontFace = frontFace; in CreatePipelineForTest()
71 void DoTest(wgpu::FrontFace frontFace, in DoTest() argument
83 renderPass.SetPipeline(CreatePipelineForTest(frontFace, cullMode)); in DoTest()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
H A DvktDrawNegativeViewportHeightTests.cpp63 VkFrontFace frontFace; member
231 m_params.frontFace, // frontFace in NegativeViewportHeightTestInstance()
311 const bool isFrontFacing = (triangleFace == m_params.frontFace); in isCulled()
347 const Vec4& color = (m_params.frontFace == VK_FRONT_FACE_CLOCKWISE ? white : gray); in generateReferenceImage()
357 const Vec4& color = (m_params.frontFace == VK_FRONT_FACE_COUNTER_CLOCKWISE ? white : gray); in generateReferenceImage()
541 << "Front face: " << getFrontFaceName(m_params.frontFace) << "\n" in iterate()
628 VkFrontFace frontFace; in populateTestGroup() member
629 } frontFace[] = in populateTestGroup() local
647 for (int ndxFrontFace = 0; ndxFrontFace < DE_LENGTH_OF_ARRAY(frontFace); in populateTestGroup()
[all...]
/third_party/skia/samplecode/
H A DSampleCamera.cpp55 bool frontFace = view.dotWithNormal(0, 0, SK_Scalar1) < 0; variable
56 if (frontFace != fFrontFace) {
57 fFrontFace = frontFace;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DStateManager9.cpp228 if (state.getRasterizerState().frontFace != mCurRasterState.frontFace) in syncState()
333 bool frontFaceCCW = (glState.getRasterizerState().frontFace == GL_CCW); in setBlendDepthRasterStates()
367 setCullMode(rasterState.cullFace, rasterState.cullMode, rasterState.frontFace); in setBlendDepthRasterStates()
422 GLenum frontFace, in setViewportState()
454 float depthFront = !gl::IsTriangleMode(drawMode) ? 0.0f : (frontFace == GL_CCW ? 1.0f : -1.0f); in setViewportState()
836 void StateManager9::setCullMode(bool cullFace, gl::CullFaceMode cullMode, GLenum frontFace) in setCullMode() argument
841 gl_d3d9::ConvertCullMode(cullMode, frontFace)); in setCullMode()
850 mCurRasterState.frontFace = frontFace; in setCullMode()
418 setViewportState(const gl::Rectangle &viewport, float zNear, float zFar, gl::PrimitiveMode drawMode, GLenum frontFace, bool ignoreViewport) setViewportState() argument
[all...]
H A DStateManager9.h51 GLenum frontFace,
89 void setCullMode(bool cullFace, gl::CullFaceMode cullMode, GLenum frontFace);
H A Drenderer9_utils.h36 D3DCULL ConvertCullMode(gl::CullFaceMode cullFace, GLenum frontFace);
H A Drenderer9_utils.cpp220 D3DCULL ConvertCullMode(gl::CullFaceMode cullFace, GLenum frontFace) in ConvertCullMode() argument
226 cull = (frontFace == GL_CCW ? D3DCULL_CW : D3DCULL_CCW); in ConvertCullMode()
229 cull = (frontFace == GL_CCW ? D3DCULL_CCW : D3DCULL_CW); in ConvertCullMode()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawNegativeViewportHeightTests.cpp145 VkFrontFace frontFace; member
311 m_params.frontFace, // frontFace in NegativeViewportHeightTestInstance()
391 const bool isFrontFacing = (triangleFace == m_params.frontFace); in isCulled()
427 const Vec4& color = (m_params.frontFace == VK_FRONT_FACE_CLOCKWISE ? white : gray); in generateReferenceImage()
437 const Vec4& color = (m_params.frontFace == VK_FRONT_FACE_COUNTER_CLOCKWISE ? white : gray); in generateReferenceImage()
584 << "Front face: " << getFrontFaceName(m_params.frontFace) << "\n" in iterate()
671 VkFrontFace frontFace; in populateTestGroup() member
672 } frontFace[] = in populateTestGroup() local
690 for (int ndxFrontFace = 0; ndxFrontFace < DE_LENGTH_OF_ARRAY(frontFace); in populateTestGroup()
[all...]
/third_party/skia/src/gpu/d3d/
H A DGrD3DPipelineStateBuilder.cpp461 const auto& frontFace = stencilSettings.postOriginCCWFace(origin); in fill_in_depth_stencil_state() local
464 SkASSERT(frontFace.fTestMask == backFace.fTestMask); in fill_in_depth_stencil_state()
465 SkASSERT(frontFace.fWriteMask == backFace.fWriteMask); in fill_in_depth_stencil_state()
466 dsDesc->StencilReadMask = frontFace.fTestMask; in fill_in_depth_stencil_state()
467 dsDesc->StencilWriteMask = frontFace.fWriteMask; in fill_in_depth_stencil_state()
469 setup_stencilop_desc(&dsDesc->FrontFace, frontFace); in fill_in_depth_stencil_state()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryTestsUtil.hpp69 GraphicsPipelineBuilder& setFrontFace (const vk::VkFrontFace frontFace) { m_frontFace = frontFace; return *this; } in setFrontFace() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/geometry/
H A DvktGeometryTestsUtil.hpp69 GraphicsPipelineBuilder& setFrontFace (const vk::VkFrontFace frontFace) { m_frontFace = frontFace; return *this; } in setFrontFace() argument
/third_party/skia/third_party/externals/swiftshader/src/Device/
H A DContext.hpp152 inline VkFrontFace getFrontFace() const { return frontFace; } in getFrontFace()
221 VkFrontFace frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE; member
H A DSetupProcessor.hpp57 VkFrontFace frontFace : BITS(VK_FRONT_FACE_MAX_ENUM); member
H A DPixelProcessor.hpp97 VkFrontFace frontFace; member
H A DSetupProcessor.cpp73 state.frontFace = pipelineState.getFrontFace(); in update()
H A DPixelProcessor.cpp172 state.frontFace = pipelineState.getFrontFace(); in update()
/third_party/skia/third_party/externals/dawn/examples/
H A DCHelloTriangle.cpp96 descriptor.primitive.frontFace = WGPUFrontFace_CCW; in init()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DRenderPipeline.cpp248 DAWN_TRY(ValidateFrontFace(descriptor->frontFace)); in ValidatePrimitiveState()
797 return mPrimitive.frontFace;
928 recorder.Record(mPrimitive.topology, mPrimitive.stripIndexFormat, mPrimitive.frontFace, in ComputeContentHash()
1045 stateA.frontFace != stateB.frontFace || stateA.cullMode != stateB.cullMode || in operator ()()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A Dutilities.h105 sw::CullMode ConvertCullMode(GLenum cullFace, GLenum frontFace);
/third_party/skia/third_party/externals/dawn/src/utils/
H A DComboRenderPipelineDescriptor.cpp82 primitive->frontFace = wgpu::FrontFace::CCW; in ComboRenderPipelineDescriptor()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationUtil.hpp157 GraphicsPipelineBuilder& setFrontFace (const vk::VkFrontFace frontFace) { m_frontFace = frontFace; return *this; } in setFrontFace() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationUtil.hpp65 GraphicsPipelineBuilder& setFrontFace (const vk::VkFrontFace frontFace) { m_frontFace = frontFace; return *this; } in setFrontFace() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktSynchronizationUtil.hpp157 GraphicsPipelineBuilder& setFrontFace (const vk::VkFrontFace frontFace) { m_frontFace = frontFace; return *this; } in setFrontFace() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/tessellation/
H A DvktTessellationUtil.hpp65 GraphicsPipelineBuilder& setFrontFace (const vk::VkFrontFace frontFace) { m_frontFace = frontFace; return *this; } in setFrontFace() argument
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
H A DesextcTessellationShaderWinding.cpp206 gl.frontFace(windingTaken[windingIndex]); in iterate()

Completed in 17 milliseconds

123456