/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawNegativeViewportHeightTests.cpp | 63 VkFrontFace frontFace; member 225 m_params.frontFace, // frontFace in NegativeViewportHeightTestInstance() 343 const bool isFrontFacing = (triangleFace == m_params.frontFace); in isCulled() 379 const Vec4& color = (m_params.frontFace == VK_FRONT_FACE_CLOCKWISE ? white : gray); in generateReferenceImage() 389 const Vec4& color = (m_params.frontFace == VK_FRONT_FACE_COUNTER_CLOCKWISE ? white : gray); in generateReferenceImage() 462 << "Front face: " << getFrontFaceName(m_params.frontFace) << "\n" in iterate() 549 VkFrontFace frontFace; in populateTestGroup() member 550 } frontFace[] = in populateTestGroup() local 568 for (int ndxFrontFace = 0; ndxFrontFace < DE_LENGTH_OF_ARRAY(frontFace); ++ndxFrontFace) in populateTestGroup() 573 frontFace[ndxFrontFace].frontFace, in populateTestGroup() [all …]
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | CullingTests.cpp | 22 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/flutter/skia/third_party/externals/dawn/src/tests/end2end/ |
D | CullingTests.cpp | 22 dawn::RenderPipeline CreatePipelineForTest(dawn::FrontFace frontFace, dawn::CullMode cullMode) { in CreatePipelineForTest() argument 55 pipelineDescriptor.cRasterizationState.frontFace = frontFace; in CreatePipelineForTest() 74 void DoTest(dawn::FrontFace frontFace, in DoTest() argument 86 renderPass.SetPipeline(CreatePipelineForTest(frontFace, cullMode)); in DoTest()
|
/third_party/skia/samplecode/ |
D | SampleCamera.cpp | 55 bool frontFace = view.dotWithNormal(0, 0, SK_Scalar1) < 0; in onDrawContent() local 56 if (frontFace != fFrontFace) { in onDrawContent() 57 fFrontFace = frontFace; in onDrawContent()
|
/third_party/flutter/skia/samplecode/ |
D | SampleCamera.cpp | 55 bool frontFace = view.dotWithNormal(0, 0, SK_Scalar1) < 0; in onDrawContent() local 56 if (frontFace != fFrontFace) { in onDrawContent() 57 fFrontFace = frontFace; in onDrawContent()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | StateManager9.cpp | 228 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() argument 454 float depthFront = !gl::IsTriangleMode(drawMode) ? 0.0f : (frontFace == GL_CCW ? 1.0f : -1.0f); in setViewportState() 835 void StateManager9::setCullMode(bool cullFace, gl::CullFaceMode cullMode, GLenum frontFace) in setCullMode() argument 840 gl_d3d9::ConvertCullMode(cullMode, frontFace)); in setCullMode() 849 mCurRasterState.frontFace = frontFace; in setCullMode()
|
D | StateManager9.h | 51 GLenum frontFace, 89 void setCullMode(bool cullFace, gl::CullFaceMode cullMode, GLenum frontFace);
|
D | renderer9_utils.h | 36 D3DCULL ConvertCullMode(gl::CullFaceMode cullFace, GLenum frontFace);
|
D | renderer9_utils.cpp | 220 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/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | StateManager9.cpp | 228 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() argument 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()
|
D | StateManager9.h | 51 GLenum frontFace, 89 void setCullMode(bool cullFace, gl::CullFaceMode cullMode, GLenum frontFace);
|
D | renderer9_utils.h | 36 D3DCULL ConvertCullMode(gl::CullFaceMode cullFace, GLenum frontFace);
|
D | renderer9_utils.cpp | 220 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/skia/src/gpu/d3d/ |
D | GrD3DPipelineStateBuilder.cpp | 461 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/skia/third_party/externals/swiftshader/src/Device/ |
D | Context.hpp | 152 inline VkFrontFace getFrontFace() const { return frontFace; } in getFrontFace() 221 VkFrontFace frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE; member
|
D | SetupProcessor.hpp | 57 VkFrontFace frontFace : BITS(VK_FRONT_FACE_MAX_ENUM); member
|
D | SetupProcessor.cpp | 73 state.frontFace = pipelineState.getFrontFace(); in update()
|
D | PixelProcessor.hpp | 97 VkFrontFace frontFace; member
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/ |
D | vktGeometryTestsUtil.hpp | 125 …sPipelineBuilder& setFrontFace (const vk::VkFrontFace frontFace) { m_frontFace = frontFace; re… in setFrontFace() argument
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/ |
D | RenderPipeline.cpp | 109 DAWN_TRY(ValidateFrontFace(descriptor->frontFace)); in ValidateRasterizationStateDescriptor() 485 return mRasterizationState.frontFace; in GetFrontFace() 606 HashCombine(&hash, desc.frontFace, desc.cullMode); in operator ()() 712 if (descA.frontFace != descB.frontFace || descA.cullMode != descB.cullMode) { in operator ()()
|
/third_party/flutter/skia/third_party/externals/dawn/src/utils/ |
D | ComboRenderPipelineDescriptor.cpp | 72 cRasterizationState.frontFace = dawn::FrontFace::CCW; in ComboRenderPipelineDescriptor()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationUtil.hpp | 143 …sPipelineBuilder& setFrontFace (const vk::VkFrontFace frontFace) { m_frontFace = frontFace; re… in setFrontFace() argument
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | RenderPipeline.cpp | 248 DAWN_TRY(ValidateFrontFace(descriptor->frontFace)); in ValidatePrimitiveState() 797 return mPrimitive.frontFace; in GetFrontFace() 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/dawn/examples/ |
D | CHelloTriangle.cpp | 96 descriptor.primitive.frontFace = WGPUFrontFace_CCW; in init()
|
/third_party/skia/third_party/externals/dawn/src/utils/ |
D | ComboRenderPipelineDescriptor.cpp | 82 primitive->frontFace = wgpu::FrontFace::CCW; in ComboRenderPipelineDescriptor()
|