Home
last modified time | relevance | path

Searched refs:maxDepth (Results 1 – 25 of 141) sorted by relevance

123456

/third_party/skia/src/gpu/tessellate/
DStrokeHardwareTessellator.cpp358 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/
Dtest-inspector-async-call-stack.js40 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
Dtest-inspector-async-call-stack-abort.js25 await session.post('Debugger.setAsyncCallStackDepth', { maxDepth: 42 }); property
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DRenderPassEncoder.cpp165 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()
DRenderPassEncoder.h55 float maxDepth);
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DIsASTDepthBelowLimit.cpp29 bool IsASTDepthBelowLimit(TIntermNode *root, int maxDepth) in IsASTDepthBelowLimit() argument
31 MaxDepthTraverser traverser(maxDepth + 1); in IsASTDepthBelowLimit()
34 return traverser.getMaxDepth() <= maxDepth; in IsASTDepthBelowLimit()
DIsASTDepthBelowLimit.h16 bool IsASTDepthBelowLimit(TIntermNode *root, int maxDepth);
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DIsASTDepthBelowLimit.cpp29 bool IsASTDepthBelowLimit(TIntermNode *root, int maxDepth) in IsASTDepthBelowLimit() argument
31 MaxDepthTraverser traverser(maxDepth + 1); in IsASTDepthBelowLimit()
34 return traverser.getMaxDepth() <= maxDepth; in IsASTDepthBelowLimit()
DIsASTDepthBelowLimit.h16 bool IsASTDepthBelowLimit(TIntermNode *root, int maxDepth);
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DRenderPassEncoder.cpp149 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()
DRenderPassEncoder.h58 float maxDepth);
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
DvktDrawInvertedDepthRangesTests.cpp64 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/
DvktDrawInvertedDepthRangesTests.cpp64 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/
DViewportTests.cpp91 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/
DVK_EXT_depth_range_unrestricted.txt18 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
DVK_EXT_depth_range_unrestricted.adoc18 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/
DrsgUtils.cpp249 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/
DPixelProcessor.cpp122 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/
DDynamicStateCommandValidationTests.cpp29 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/
DMachinePipeliner.cpp1902 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/
Dpanvk_cs.c48 data->f32[2] = (viewport->maxDepth - viewport->minDepth); in panvk_sysval_upload_viewport_scale()
/third_party/node/deps/npm/lib/utils/completion/
Dfile-completion.js16 var opts = { mark: true, dot: true, maxDepth: depth } property
/third_party/node/test/parallel/
Dtest-inspector-async-hook-after-done.js34 postToWorkerInspector('Debugger.setAsyncCallStackDepth', { maxDepth: 1 }); property
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
DGPURenderPassEncoder.cpp39 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/
DViewportTests.cpp88 float x, y, width, height, minDepth, maxDepth; member
128 viewport.minDepth, viewport.maxDepth); in DoTest()

123456