/third_party/skia/src/gpu/tessellate/ |
D | StrokeHardwareTessellator.cpp | 358 int maxDepth = -1) { in internalConicPatchesTo() argument 382 if (this->stroke180FitsInPatch(numParametricSegments_pow4) || maxDepth == 0) { in internalConicPatchesTo() 398 if (maxDepth < 0) { in internalConicPatchesTo() 402 maxDepth = sk_float_nextlog2(numParametricSegments) + in internalConicPatchesTo() 404 maxDepth = std::max(maxDepth, 1); in internalConicPatchesTo() 413 this->internalConicPatchesTo(prevJoinType, chops, 1, maxDepth - 1); in internalConicPatchesTo() 414 this->internalConicPatchesTo(JoinType::kBowtie, chops + 2, 1, maxDepth - 1); in internalConicPatchesTo() 422 maxDepth - 1); in internalConicPatchesTo() 424 maxDepth - 1); in internalConicPatchesTo() 437 int maxDepth = -1) { in internalCubicConvex180PatchesTo() argument [all …]
|
/third_party/node/test/sequential/ |
D | test-inspector-async-call-stack.js | 40 session.post(setDepth, { maxDepth: 'five' }, () => { property 44 session.post(setDepth, { maxDepth: NaN }, () => { property 48 session.post(setDepth, { maxDepth: 10 }, () => { property 51 session.post(setDepth, { maxDepth: 0 }, () => { property 64 session.post(setDepth, { maxDepth: 32 }, () => { property 73 session.post(setDepth, { maxDepth: 64 }, () => { property
|
D | test-inspector-async-call-stack-abort.js | 25 await session.post('Debugger.setAsyncCallStackDepth', { maxDepth: 42 }); property
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | RenderPassEncoder.cpp | 165 float maxDepth) { in APISetViewport() argument 172 isnan(maxDepth)), in APISetViewport() 175 x, y, width, height, minDepth, maxDepth); in APISetViewport() 191 DAWN_INVALID_IF(minDepth < 0 || minDepth > maxDepth || maxDepth > 1, in APISetViewport() 195 minDepth, maxDepth); in APISetViewport() 204 cmd->maxDepth = maxDepth; in APISetViewport() 209 maxDepth); in APISetViewport()
|
D | RenderPassEncoder.h | 55 float maxDepth);
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | IsASTDepthBelowLimit.cpp | 29 bool IsASTDepthBelowLimit(TIntermNode *root, int maxDepth) in IsASTDepthBelowLimit() argument 31 MaxDepthTraverser traverser(maxDepth + 1); in IsASTDepthBelowLimit() 34 return traverser.getMaxDepth() <= maxDepth; in IsASTDepthBelowLimit()
|
D | IsASTDepthBelowLimit.h | 16 bool IsASTDepthBelowLimit(TIntermNode *root, int maxDepth);
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | IsASTDepthBelowLimit.cpp | 29 bool IsASTDepthBelowLimit(TIntermNode *root, int maxDepth) in IsASTDepthBelowLimit() argument 31 MaxDepthTraverser traverser(maxDepth + 1); in IsASTDepthBelowLimit() 34 return traverser.getMaxDepth() <= maxDepth; in IsASTDepthBelowLimit()
|
D | IsASTDepthBelowLimit.h | 16 bool IsASTDepthBelowLimit(TIntermNode *root, int maxDepth);
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/ |
D | RenderPassEncoder.cpp | 149 float maxDepth) { in SetViewport() argument 155 isnan(maxDepth)) { in SetViewport() 168 if (minDepth < 0 || minDepth > 1 || maxDepth < 0 || maxDepth > 1) { in SetViewport() 179 cmd->maxDepth = maxDepth; in SetViewport()
|
D | RenderPassEncoder.h | 58 float maxDepth);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/ |
D | vktDrawInvertedDepthRangesTests.cpp | 64 float maxDepth; member 380 const float clampMin = de::min(m_params.minDepth, m_params.maxDepth); in generateReferenceImage() 381 const float clampMax = de::max(m_params.minDepth, m_params.maxDepth); in generateReferenceImage() 411 if (m_params.maxDepth < m_params.minDepth) in generateReferenceImage() 439 …const float depthFinal = depthClamped * m_params.maxDepth + (1.0f - depthClamped) * m_params.minD… in generateReferenceImage() 518 m_params.maxDepth, // float maxDepth; in iterate() 721 …s.minDepth > 1.0f || m_params.minDepth < 0.0f || m_params.maxDepth > 1.0f || m_params.maxDepth < 0… in checkSupport() 775 const float maxDepth = minDepth - cDepthParams.delta; in populateTestGroup() local 776 DE_ASSERT(minDepth >= maxDepth); in populateTestGroup() 781 maxDepth, in populateTestGroup()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawInvertedDepthRangesTests.cpp | 64 float maxDepth; member 380 const float clampMin = de::min(m_params.minDepth, m_params.maxDepth); in generateReferenceImage() 381 const float clampMax = de::max(m_params.minDepth, m_params.maxDepth); in generateReferenceImage() 411 if (m_params.maxDepth < m_params.minDepth) in generateReferenceImage() 439 …const float depthFinal = depthClamped * m_params.maxDepth + (1.0f - depthClamped) * m_params.minD… in generateReferenceImage() 518 m_params.maxDepth, // float maxDepth; in iterate() 721 …s.minDepth > 1.0f || m_params.minDepth < 0.0f || m_params.maxDepth > 1.0f || m_params.maxDepth < 0… in checkSupport() 775 const float maxDepth = minDepth - cDepthParams.delta; in populateTestGroup() local 776 DE_ASSERT(minDepth >= maxDepth); in populateTestGroup() 781 maxDepth, in populateTestGroup()
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | ViewportTests.cpp | 91 void TestViewportDepth(float minDepth, float maxDepth, bool doViewportCall = true) { in TestViewportDepth() argument 126 pass.SetViewport(0, 0, 3, 1, minDepth, maxDepth); in TestViewportDepth() 136 maxDepth, in TestViewportDepth() 137 (maxDepth + minDepth) / 2, in TestViewportDepth()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/ |
D | VK_EXT_depth_range_unrestricted.txt | 18 pname:maxDepth restrictions that the values must be between `0.0` and `1.0`, 30 1) How do slink:VkViewport pname:minDepth and pname:maxDepth values outside 40 pname:maxDepth values, which in the case of this extension can be outside of
|
D | VK_EXT_depth_range_unrestricted.adoc | 18 pname:maxDepth restrictions that the values must be between `0.0` and `1.0`, 30 1) How do slink:VkViewport pname:minDepth and pname:maxDepth values outside 40 pname:maxDepth values, which in the case of this extension can be outside of
|
/third_party/vk-gl-cts/framework/randomshaders/ |
D | rsgUtils.cpp | 249 int maxDepth = 0; in getTypeConstructorDepth() local 271 maxDepth = de::max(maxDepth, depth); in getTypeConstructorDepth() 273 return maxDepth + 1; in getTypeConstructorDepth()
|
/third_party/skia/third_party/externals/swiftshader/src/Device/ |
D | PixelProcessor.cpp | 122 state.minDepthClamp = min(viewport.minDepth, viewport.maxDepth); in update() 123 state.maxDepthClamp = max(viewport.minDepth, viewport.maxDepth); in update()
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
D | DynamicStateCommandValidationTests.cpp | 29 float maxDepth) { in TestViewportCall() argument 34 pass.SetViewport(x, y, width, height, minDepth, maxDepth); in TestViewportCall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachinePipeliner.cpp | 1902 SUnit *maxDepth = nullptr; in computeNodeOrder() local 1904 if (maxDepth == nullptr || getDepth(I) > getDepth(maxDepth)) in computeNodeOrder() 1905 maxDepth = I; in computeNodeOrder() 1906 else if (getDepth(I) == getDepth(maxDepth) && in computeNodeOrder() 1907 getZeroLatencyDepth(I) > getZeroLatencyDepth(maxDepth)) in computeNodeOrder() 1908 maxDepth = I; in computeNodeOrder() 1909 else if (getDepth(I) == getDepth(maxDepth) && in computeNodeOrder() 1910 getZeroLatencyDepth(I) == getZeroLatencyDepth(maxDepth) && in computeNodeOrder() 1911 getMOV(I) < getMOV(maxDepth)) in computeNodeOrder() 1912 maxDepth = I; in computeNodeOrder() [all …]
|
/third_party/mesa3d/src/panfrost/vulkan/ |
D | panvk_cs.c | 48 data->f32[2] = (viewport->maxDepth - viewport->minDepth); in panvk_sysval_upload_viewport_scale()
|
/third_party/node/deps/npm/lib/utils/completion/ |
D | file-completion.js | 16 var opts = { mark: true, dot: true, maxDepth: depth } property
|
/third_party/node/test/parallel/ |
D | test-inspector-async-hook-after-done.js | 34 postToWorkerInspector('Debugger.setAsyncCallStackDepth', { maxDepth: 1 }); property
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
D | GPURenderPassEncoder.cpp | 39 float maxDepth) { in setViewport() argument 40 enc_.SetViewport(x, y, width, height, minDepth, maxDepth); in setViewport()
|
/third_party/flutter/skia/third_party/externals/dawn/src/tests/end2end/ |
D | ViewportTests.cpp | 88 float x, y, width, height, minDepth, maxDepth; member 128 viewport.minDepth, viewport.maxDepth); in DoTest()
|