Home
last modified time | relevance | path

Searched refs:clears (Results 1 - 24 of 24) sorted by relevance

/third_party/vk-gl-cts/modules/egl/
H A DteglColorClearCase.cpp101 static void renderReference (tcu::Surface& dst, const vector<ClearOp>& clears, const tcu::PixelFormat& pixelFormat) in renderReference() argument
103 for (vector<ClearOp>::const_iterator clearIter = clears.begin(); clearIter != clears.end(); clearIter++) in renderReference()
183 vector<ClearOp> clears; in executeForContexts() local
202 clears.push_back(clear); in executeForContexts()
221 clears.push_back(clear); in executeForContexts()
243 renderReference(refFrame, clears, pixelFmt); in executeForContexts()
259 NUM_CLEARS_PER_PACKET = 2 //!< Number of clears performed in one context activation in one thread.
273 ClearOp clears[NUM_CLEARS_PER_PACKET]; member
302 // Execute clears in run()
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fDepthStencilClearTests.cpp131 void renderGL (tcu::Surface& dst, const vector<Clear>& clears);
132 void renderReference (tcu::Surface& dst, const vector<Clear>& clears);
207 vector<Clear> clears; in iterate() local
213 generateClears(clears, deStringHash(getName())^deInt32Hash(m_curIter)); in iterate()
214 renderGL(result, clears); in iterate()
215 renderReference(reference, clears); in iterate()
227 void DepthStencilClearCase::generateClears (vector<Clear>& clears, deUint32 seed) in generateClears() argument
234 clears.resize(m_numClears); in generateClears()
236 for (vector<Clear>::iterator clear = clears.begin(); clear != clears in generateClears()
276 renderGL(tcu::Surface& dst, const vector<Clear>& clears) renderGL() argument
397 renderReference(tcu::Surface& dst, const vector<Clear>& clears) renderReference() argument
[all...]
H A Des2fDepthStencilTests.cpp164 // \note No depth here - don't use clears for setting depth values; use quad rendering instead. Cleared depths are in [0, 1] to begin with,
414 void render (const vector<ClearCommand>& clears, int viewportX, int viewportY) in render() argument
418 for (int ndx = 0; ndx < (int)clears.size(); ndx++) in render()
420 const ClearCommand& clear = clears[ndx]; in render()
481 void renderReference (const vector<ClearCommand>& clears, const tcu::PixelBufferAccess& dstColor, const tcu::PixelBufferAccess& dstStencil, int stencilBits) in renderReference() argument
483 for (int ndx = 0; ndx < (int)clears.size(); ndx++) in renderReference()
485 const ClearCommand& clear = clears[ndx]; in renderReference()
567 // Compute base clears & visualization commands. in init()
644 // Base clears. in iterate()
671 // Base clears in iterate()
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fDepthStencilClearTests.cpp131 void renderGL (tcu::Surface& dst, const vector<Clear>& clears);
132 void renderReference (tcu::Surface& dst, const vector<Clear>& clears);
210 vector<Clear> clears; in iterate() local
216 generateClears(clears, deStringHash(getName())^deInt32Hash(m_curIter)); in iterate()
217 renderGL(result, clears); in iterate()
218 renderReference(reference, clears); in iterate()
230 void DepthStencilClearCase::generateClears (vector<Clear>& clears, deUint32 seed) in generateClears() argument
237 clears.resize(m_numClears); in generateClears()
239 for (vector<Clear>::iterator clear = clears.begin(); clear != clears in generateClears()
279 renderGL(tcu::Surface& dst, const vector<Clear>& clears) renderGL() argument
400 renderReference(tcu::Surface& dst, const vector<Clear>& clears) renderReference() argument
[all...]
H A Des3fDepthStencilTests.cpp164 // \note No depth here - don't use clears for setting depth values; use quad rendering instead. Cleared depths are in [0, 1] to begin with,
414 void render (const vector<ClearCommand>& clears, int viewportX, int viewportY) in render() argument
418 for (int ndx = 0; ndx < (int)clears.size(); ndx++) in render()
420 const ClearCommand& clear = clears[ndx]; in render()
481 void renderReference (const vector<ClearCommand>& clears, const tcu::PixelBufferAccess& dstColor, const tcu::PixelBufferAccess& dstStencil, int stencilBits) in renderReference() argument
483 for (int ndx = 0; ndx < (int)clears.size(); ndx++) in renderReference()
485 const ClearCommand& clear = clears[ndx]; in renderReference()
567 // Compute base clears & visualization commands. in init()
644 // Base clears. in iterate()
671 // Base clears in iterate()
[all...]
/third_party/skia/gm/
H A Dclear_swizzle.cpp54 } clears[] { in DEF_SIMPLE_GPU_GM_CAN_FAIL() struct
62 for (const auto& c : clears) { in DEF_SIMPLE_GPU_GM_CAN_FAIL()
68 for (const auto& c : clears) { in DEF_SIMPLE_GPU_GM_CAN_FAIL()
75 // full offscreen clears in DEF_SIMPLE_GPU_GM_CAN_FAIL()
76 for (const auto& c : clears) { in DEF_SIMPLE_GPU_GM_CAN_FAIL()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_clear.h50 struct util_dynarray clears; member
97 return util_dynarray_element(&fb_clear->clears, struct zink_framebuffer_clear_data, idx); in zink_fb_clear_element()
103 return fb_clear ? util_dynarray_num_elements(&fb_clear->clears, struct zink_framebuffer_clear_data) : 0; in zink_fb_clear_count()
H A Dzink_render_pass.c383 uint32_t clears = 0; in get_render_pass() local
390 clears |= !!state.rts[i].clear_color ? PIPE_CLEAR_COLOR0 << i : 0; in get_render_pass()
414 clears |= PIPE_CLEAR_DEPTH; in get_render_pass()
416 clears |= PIPE_CLEAR_STENCIL; in get_render_pass()
421 assert(clears == (ctx->rp_clears_enabled & PIPE_CLEAR_DEPTHSTENCIL)); in get_render_pass()
423 assert(clears == ctx->rp_clears_enabled); in get_render_pass()
424 state.clears = clears; in get_render_pass()
431 assert(rp->state.clears == clears); in get_render_pass()
582 VkClearValue clears[PIPE_MAX_COLOR_BUFS + 1] = {0}; begin_render_pass() local
[all...]
H A Dzink_render_pass.h63 uint32_t clears; //for extra verification and update flagging member
H A Dzink_clear.c125 util_dynarray_append(&fb_clear->clears, struct zink_framebuffer_clear_data, cd); in add_new_clear()
260 * - shift existing clears back by one position in zink_clear()
264 struct zink_framebuffer_clear_data *clear = fb_clear->clears.data; in zink_clear()
350 /* different number of clears -> do another clear */ in zink_clear_framebuffer()
351 //XXX: could potentially merge "some" of the clears into this one for a very, very small optimization in zink_clear_framebuffer()
354 /* compare all the clears to determine if we can batch these buffers together */ in zink_clear_framebuffer()
380 /* compare all the clears to determine if we can batch these buffers together */ in zink_clear_framebuffer()
622 /* this will automatically trigger all the clears */ in fb_clears_apply_internal()
631 util_dynarray_clear(&ctx->fb_clears[i].clears); in zink_fb_clear_reset()
H A Dzink_context.c2267 /* stencil info only set for clears below */ in begin_rendering()
2692 /* start rp to do all the clears */ in flush_batch()
2791 /* flush all pending clears: these have already occurred */ in zink_set_color_write_enables()
3402 /* triggering clears will force has_work */ in zink_flush()
3404 /* if fbfetch outputs are active, disable them when flushing clears */ in zink_flush()
3410 /* start rp to do all the clears */ in zink_flush()
3535 /* if this is a fb barrier, flush all pending clears */ in zink_texture_barrier()
4528 util_dynarray_init(&ctx->fb_clears[i].clears, ctx); in zink_context_create()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_texture.c1054 /* Prepare metadata clears. */ in si_texture_create_object()
1055 struct si_clear_info clears[4]; in si_texture_create_object() local
1060 assert(num_clears < ARRAY_SIZE(clears)); in si_texture_create_object()
1061 si_init_buffer_clear(&clears[num_clears++], &tex->cmask_buffer->b.b, in si_texture_create_object()
1071 assert(num_clears < ARRAY_SIZE(clears)); in si_texture_create_object()
1072 si_init_buffer_clear(&clears[num_clears++], &tex->buffer.b.b, tex->surface.meta_offset, in si_texture_create_object()
1086 assert(num_clears < ARRAY_SIZE(clears)); in si_texture_create_object()
1087 si_init_buffer_clear(&clears[num_clears++], &tex->buffer.b.b, tex->surface.meta_offset, in si_texture_create_object()
1091 assert(num_clears < ARRAY_SIZE(clears)); in si_texture_create_object()
1092 si_init_buffer_clear(&clears[num_clear in si_texture_create_object()
1142 si_execute_clears(si_get_aux_context(sscreen), clears, num_clears, 0); si_texture_create_object() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMultisampleSampleLocationsExtTests.cpp1891 //! Determines where draws/clears with custom samples occur in the test
1922 TestClears clears; member
1978 const char* getString (const TestClears clears) in getString() argument
1980 switch (clears) in getString()
2052 //! Draw shapes using changing sample patterns. Add clears and other operations as necessary
2170 const bool isClearCase = (m_params.clears != TEST_CLEARS_NO_CLEAR); in iterate()
2172 (m_params.drawIn != TEST_DRAW_IN_RENDER_PASSES && m_params.clears != TEST_CLEARS_CMD_CLEAR_ATTACHMENTS)); in iterate()
2284 const VkClearValue clearColor0 = (m_params.clears == TEST_CLEARS_NO_CLEAR ? makeClearValueColor(CLEAR_COLOR_0) : makeClearValueColor(CLEAR_COLOR_1)); in drawPatternChangeReference()
2466 const VkAttachmentLoadOp loadOp = (m_params.clears == TEST_CLEARS_LOAD_OP_CLEAR ? VK_ATTACHMENT_LOAD_OP_CLEAR : VK_ATTACHMENT_LOAD_OP_LOAD); in drawRenderPasses()
2588 if (m_params.clears in drawRenderPasses()
3207 TestClears clears; createTestsInGroup() member
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineMultisampleSampleLocationsExtTests.cpp1867 //! Determines where draws/clears with custom samples occur in the test
1898 TestClears clears; member
1954 const char* getString (const TestClears clears) in getString() argument
1956 switch (clears) in getString()
2028 //! Draw shapes using changing sample patterns. Add clears and other operations as necessary
2146 const bool isClearCase = (m_params.clears != TEST_CLEARS_NO_CLEAR); in iterate()
2148 (m_params.drawIn != TEST_DRAW_IN_RENDER_PASSES && m_params.clears != TEST_CLEARS_CMD_CLEAR_ATTACHMENTS)); in iterate()
2258 const VkClearValue clearColor0 = (m_params.clears == TEST_CLEARS_NO_CLEAR ? makeClearValueColor(CLEAR_COLOR_0) : makeClearValueColor(CLEAR_COLOR_1)); in drawPatternChangeReference()
2433 const VkAttachmentLoadOp loadOp = (m_params.clears == TEST_CLEARS_LOAD_OP_CLEAR ? VK_ATTACHMENT_LOAD_OP_CLEAR : VK_ATTACHMENT_LOAD_OP_LOAD); in drawRenderPasses()
2552 if (m_params.clears in drawRenderPasses()
3161 TestClears clears; createTestsInGroup() member
[all...]
/third_party/vk-gl-cts/external/amber/src/src/vulkan/
H A Dgraphics_pipeline.cc832 std::vector<VkClearAttachment> clears; in Clear() local
839 clears.push_back(clear_attachment); in Clear()
857 clears.push_back(clear_attachment); in Clear()
866 command_->GetVkCommandBuffer(), static_cast<uint32_t>(clears.size()), in Clear()
867 clears.data(), 1, &clear_rect); in Clear()
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_cmd_buffer.c436 const struct panvk_clear_value *clears = cmdbuf->state.clear; in panvk_cmd_fb_info_set_subpass() local
454 memcpy(fbinfo->rts[cb].clear_value, clears[idx].color, in panvk_cmd_fb_info_set_subpass()
470 fbinfo->zs.clear_value.depth = clears[subpass->zs_attachment.idx].depth; in panvk_cmd_fb_info_set_subpass()
476 fbinfo->zs.clear_value.stencil = clears[subpass->zs_attachment.idx].stencil; in panvk_cmd_fb_info_set_subpass()
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm/crypto/bn/
H A Ds390x-mont.S142 ahi %r1,1 # restore %r1, incidentally clears "borrow"
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm_avx2/crypto/bn/
H A Ds390x-mont.S142 ahi %r1,1 # restore %r1, incidentally clears "borrow"
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm_avx2/crypto/bn/
H A Ds390x-mont.S142 ahi %r1,1 # restore %r1, incidentally clears "borrow"
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm/crypto/bn/
H A Ds390x-mont.S142 ahi %r1,1 # restore %r1, incidentally clears "borrow"
/third_party/skia/src/gpu/vk/
H A DGrVkGpu.cpp2649 VkClearValue clears[3]; in beginRenderPass() local
2651 clears[0].color = colorClear->color; in beginRenderPass()
2652 clears[stencilIndex].depthStencil.depth = 0.0f; in beginRenderPass()
2653 clears[stencilIndex].depthStencil.stencil = 0; in beginRenderPass()
2656 this, renderPass, std::move(framebuffer), clears, target, renderPassBounds, forSecondaryCB); in beginRenderPass()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiCopiesAndBlittingTests.cpp8976 } clears [] =
8993 for (const auto& clear : clears)
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiCopiesAndBlittingTests.cpp8691 } clears [] = in addImageToImageSimpleTests() local
8708 for (const auto& clear : clears) in addImageToImageSimpleTests()
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dtexinfo.tex4169 % @clear VAR clears (i.e., unsets) the variable VAR.

Completed in 78 milliseconds