Home
last modified time | relevance | path

Searched refs:clipping (Results 1 - 13 of 13) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/clipping/
H A DvktClippingTests.hpp31 namespace clipping namespace
36 } // clipping
H A DvktClippingTests.cpp42 namespace clipping namespace
464 { "Draw primitives at near clipping plane, z = 0.0", 0.0f, }, in testPrimitivesInside()
466 { "Draw primitives at far clipping plane, z = 1.0", 1.0f, }, in testPrimitivesInside()
519 { "Draw primitives in front of the near clipping plane, z < 0.0", -0.5f, }, in testPrimitivesOutside()
520 { "Draw primitives behind the far clipping plane, z > 1.0", 1.5f, }, in testPrimitivesOutside()
572 { "Draw primitives intersecting the near clipping plane, depth clamp disabled", -0.5f, false, IVec2(0, 0), Vec4(0.0f, 0.0f, 0.0f, 1.0f) }, in testPrimitivesDepthClamp()
573 { "Draw primitives intersecting the near clipping plane, depth clamp enabled", -0.5f, true, IVec2(0, 0), Vec4(1.0f, 0.0f, 0.0f, 1.0f) }, in testPrimitivesDepthClamp()
574 { "Draw primitives intersecting the far clipping plane, depth clamp disabled", 0.5f, false, IVec2(RENDER_SIZE/2, 0), Vec4(0.0f, 0.0f, 0.0f, 1.0f) }, in testPrimitivesDepthClamp()
575 { "Draw primitives intersecting the far clipping plane, depth clamp enabled", 0.5f, true, IVec2(RENDER_SIZE/2, 0), Vec4(1.0f, 1.0f, 0.0f, 1.0f) }, in testPrimitivesDepthClamp()
664 { "Draw primitives intersecting the near clipping plan in testPrimitivesDepthClip()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/clipping/
H A DvktClippingTests.hpp31 namespace clipping namespace
36 } // clipping
H A DvktClippingTests.cpp42 namespace clipping namespace
464 { "Draw primitives at near clipping plane, z = 0.0", 0.0f, }, in testPrimitivesInside()
466 { "Draw primitives at far clipping plane, z = 1.0", 1.0f, }, in testPrimitivesInside()
519 { "Draw primitives in front of the near clipping plane, z < 0.0", -0.5f, }, in testPrimitivesOutside()
520 { "Draw primitives behind the far clipping plane, z > 1.0", 1.5f, }, in testPrimitivesOutside()
572 { "Draw primitives intersecting the near clipping plane, depth clamp disabled", -0.5f, false, IVec2(0, 0), Vec4(0.0f, 0.0f, 0.0f, 1.0f) }, in testPrimitivesDepthClamp()
573 { "Draw primitives intersecting the near clipping plane, depth clamp enabled", -0.5f, true, IVec2(0, 0), Vec4(1.0f, 0.0f, 0.0f, 1.0f) }, in testPrimitivesDepthClamp()
574 { "Draw primitives intersecting the far clipping plane, depth clamp disabled", 0.5f, false, IVec2(RENDER_SIZE/2, 0), Vec4(0.0f, 0.0f, 0.0f, 1.0f) }, in testPrimitivesDepthClamp()
575 { "Draw primitives intersecting the far clipping plane, depth clamp enabled", 0.5f, true, IVec2(RENDER_SIZE/2, 0), Vec4(1.0f, 1.0f, 0.0f, 1.0f) }, in testPrimitivesDepthClamp()
664 { "Draw primitives intersecting the near clipping plan in testPrimitivesDepthClip()
[all...]
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_emit.c397 /*00C00*/ EMIT_STATE_FIXP(SE_SCISSOR_LEFT, ctx->clipping.minx << 16); in etna_emit_state()
398 /*00C04*/ EMIT_STATE_FIXP(SE_SCISSOR_TOP, ctx->clipping.miny << 16); in etna_emit_state()
399 /*00C08*/ EMIT_STATE_FIXP(SE_SCISSOR_RIGHT, (ctx->clipping.maxx << 16) + ETNA_SE_SCISSOR_MARGIN_RIGHT); in etna_emit_state()
400 /*00C0C*/ EMIT_STATE_FIXP(SE_SCISSOR_BOTTOM, (ctx->clipping.maxy << 16) + ETNA_SE_SCISSOR_MARGIN_BOTTOM); in etna_emit_state()
410 /*00C20*/ EMIT_STATE_FIXP(SE_CLIP_RIGHT, (ctx->clipping.maxx << 16) + ETNA_SE_CLIP_MARGIN_RIGHT); in etna_emit_state()
411 /*00C24*/ EMIT_STATE_FIXP(SE_CLIP_BOTTOM, (ctx->clipping.maxy << 16) + ETNA_SE_CLIP_MARGIN_BOTTOM); in etna_emit_state()
H A Detnaviv_state.c270 VIVS_PE_DEPTH_CONFIG_UNK18; /* something to do with clipping? */ in etna_set_framebuffer_state()
699 ctx->clipping.minx = scissor_left; in etna_update_clipping()
700 ctx->clipping.miny = scissor_top; in etna_update_clipping()
701 ctx->clipping.maxx = scissor_right; in etna_update_clipping()
702 ctx->clipping.maxy = scissor_bottom; in etna_update_clipping()
H A Detnaviv_context.h160 struct pipe_scissor_state clipping; member
/third_party/ffmpeg/tests/fate/
H A Dwavpack.mak74 FATE_WAVPACK_S16 += fate-wavpack-clipping
75 fate-wavpack-clipping: CMD = md5pipe -i $(TARGET_SAMPLES)/wavpack/special/clipping.wv -f s16le -af aresample
/third_party/ffmpeg/libavcodec/
H A Dpsymodel.h82 float clipping[8]; ///< maximum absolute normalized intensity in the given window for clip avoidance member
H A Daacenc.c466 * Downscale spectral coefficients for near-clipping windows to avoid artifacts
609 wi[ch].clipping[0] = 0; in aac_encode_frame()
638 /* Calculate input sample maximums and evaluate clipping risk */ in aac_encode_frame()
648 wi[ch].clipping[w] = max; in aac_encode_frame()
651 if (wi[ch].clipping[w] > CLIP_AVOIDANCE_FACTOR) { in aac_encode_frame()
653 clip_avoidance_factor = FFMAX(clip_avoidance_factor, wi[ch].clipping[w]); in aac_encode_frame()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/
H A DvktTestPackage.cpp1173 addRootChild("clipping", m_caseListFilter, clipping::createTests); in init()
1239 addRootChild("clipping", m_caseListFilter, clipping::createTests); in init()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/
H A DvktTestPackage.cpp1114 addChild(clipping::createTests (m_testCtx)); in init()
1177 addChild(clipping::createTests (m_testCtx)); in init()
/third_party/vk-gl-cts/
H A DAndroidGen.mk113 external/vulkancts/modules/vulkan/clipping/vktClippingTests.cpp \
1334 $(deqp_dir)/external/vulkancts/modules/vulkan/clipping \

Completed in 15 milliseconds