Home
last modified time | relevance | path

Searched refs:fHeight (Results 1 - 25 of 27) sorted by relevance

12

/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/test/fuzztest/gerender_fuzzer/
H A Dge_render_fuzzer.cpp48 float fHeight = GETest::GetPlainData<float>(); in GERenderFuzzTest001() local
49 Drawing::Rect src{fLeft, fTop, fWidth, fHeight}; in GERenderFuzzTest001()
74 float fHeight = GETest::GetPlainData<float>(); in GERenderFuzzTest002() local
75 Drawing::Rect src{fLeft, fTop, fWidth, fHeight}; in GERenderFuzzTest002()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/
H A Djs_offscreen_canvas.cpp143 double fHeight = 0.0; in Constructor() local
157 if (napi_get_value_double(env, argv[1], &fHeight) == napi_ok) { in Constructor()
158 fHeight *= density; in Constructor()
159 workCanvas->SetHeight(fHeight); in Constructor()
162 static_cast<int32_t>(fWidth), static_cast<int32_t>(fHeight)); in Constructor()
249 double fHeight = GetHeight(); in OnGetHeight() local
251 fHeight /= density; in OnGetHeight()
253 napi_create_double(env, fHeight, &height); in OnGetHeight()
H A Djs_canvas_renderer.cpp621 double fHeight = 0.0; in JsCreateImageData() local
626 info.GetDoubleArg(1, fHeight); in JsCreateImageData()
628 fHeight *= density; in JsCreateImageData()
634 JSViewAbstract::ParseJsDouble(heightValue, fHeight); in JsCreateImageData()
637 uint32_t finalHeight = static_cast<uint32_t>(std::abs(fHeight + DIFF)); in JsCreateImageData()
/foundation/graphic/graphic_3d/lume/LumeRender/src/node/
H A Drender_motion_blur.cpp224 const float fHeight = static_cast<float>(renderPass.renderPassDesc.renderArea.extentHeight); in Execute() local
225 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, {} }; in Execute()
262 const float fHeight = static_cast<float>(renderPass.renderPassDesc.renderArea.extentHeight); in ExecuteTileVelocity() local
263 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, {} }; in ExecuteTileVelocity()
H A Drender_copy.cpp147 const float fHeight = static_cast<float>(renderPass.renderPassDesc.renderArea.extentHeight); in Execute() local
148 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, in Execute()
H A Drender_node_back_buffer.cpp53 const float fHeight = static_cast<float>(dstImageDesc.height); in FillPushConstant() local
56 pushData.texSizeInvTexSize[1u] = fHeight; in FillPushConstant()
58 pushData.texSizeInvTexSize[3u] = 1.0f / fHeight; in FillPushConstant()
H A Drender_node_single_post_process.cpp350 const float fHeight = static_cast<float>(renderPass.renderPassDesc.renderArea.extentHeight); in ExecuteSinglePostProcess() local
351 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, in ExecuteSinglePostProcess()
367 const float fHeight = static_cast<float>(targetSize.y); in ExecuteSinglePostProcess() local
368 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, in ExecuteSinglePostProcess()
H A Drender_node_mip_chain_post_process.cpp358 const float fHeight = static_cast<float>(height); in RenderGraphics() local
395 cmdList.SetDynamicStateViewport(ViewportDesc { 0.0f, 0.0f, fWidth, fHeight, 0.0f, 0.0f }); in RenderGraphics()
410 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, in RenderGraphics()
/foundation/arkui/ace_engine/frameworks/core/components_ng/image_provider/adapter/
H A Dskia_image_data.cpp106 imageSize.SetSizeT(SizeF(codec->dimensions().fHeight, codec->dimensions().fWidth)); in Parse()
109 imageSize.SetSizeT(SizeF(codec->dimensions().fWidth, codec->dimensions().fHeight)); in Parse()
/foundation/graphic/graphic_3d/3d_widget_adapter/core/src/lume/custom/
H A Dlume_custom_render.cpp205 auto fHeight = static_cast<float>(height); in OnSizeChange() local
206 if ((buffer[0] == fWidth) && (buffer[1] == fHeight)) { in OnSizeChange()
210 WIDGET_LOGD("update custom shader resolution %f X %f", fWidth, fHeight); in OnSizeChange()
212 resolutionBuffer_.Update(fHeight, 1U); in OnSizeChange()
/foundation/arkui/ace_engine/frameworks/core/components_ng/image_provider/adapter/rosen/
H A Ddrawing_image_data.cpp152 imageSize.SetSizeT(SizeF(codec->dimensions().fHeight, codec->dimensions().fWidth)); in Parse()
155 imageSize.SetSizeT(SizeF(codec->dimensions().fWidth, codec->dimensions().fHeight)); in Parse()
/foundation/graphic/graphic_2d/rosen/test/2d_engine/unittest/rosen_text/skia_txt/
H A Dparagraph_builder_test.cpp64 EXPECT_EQ(peekStyle.fHeight, style.height); in HWTEST_F()
124 EXPECT_EQ(builder->fPlaceholders[0].fStyle.fHeight, placeholderRunDefault.height); in HWTEST_F()
126 EXPECT_EQ(builder->fPlaceholders[1].fStyle.fHeight, placeholderRun.height); in HWTEST_F()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/render/node/
H A Drender_node_default_shadows_blur.cpp183 const float fHeight = static_cast<float>(tempImage.height); in ProcessSingleShadow() local
184 const Math::Vec4 texSizeInvTexSize = { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }; in ProcessSingleShadow()
186 const ViewportDesc viewport { 0.0f, 0.0f, fWidth, fHeight, 0.0f, 1.0f }; in ProcessSingleShadow()
H A Drender_node_camera_single_post_process.cpp359 const float fHeight = static_cast<float>(renderPass.renderPassDesc.renderArea.extentHeight); in ExecuteSinglePostProcess() local
360 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, in ExecuteSinglePostProcess()
376 const float fHeight = static_cast<float>(targetSize.y); in ExecuteSinglePostProcess() local
377 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, in ExecuteSinglePostProcess()
H A Drender_node_camera_cubemap.cpp296 const float fHeight = static_cast<float>(currSize.y); in ExecuteSinglePostProcess() local
297 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, in ExecuteSinglePostProcess()
H A Drender_node_default_material_deferred_shading.cpp213 const float fHeight = static_cast<float>(renderPass_.renderPassDesc.renderArea.extentHeight); in RenderData() local
214 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, in RenderData()
/foundation/graphic/graphic_3d/lume/LumeRender/src/nodecontext/
H A Drender_node_post_process_util.cpp559 const float fHeight = static_cast<float>(renderPass.renderPassDesc.renderArea.extentHeight); in ExecuteCombine() local
560 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, {} }; in ExecuteCombine()
669 const float fHeight = static_cast<float>(renderPass.renderPassDesc.renderArea.extentHeight); in ExecuteTAA() local
670 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, in ExecuteTAA()
748 const float fHeight = static_cast<float>(rp.renderPassDesc.renderArea.extentHeight); in ExecuteDofBlur() local
749 const LocalPostProcessPushConstantStruct pc { { fWidth, fHeight, 1.0f / fWidth, 1.0f / fHeight }, {} }; in ExecuteDofBlur()
811 const float fHeight in ExecuteDof() local
[all...]
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/adapter/skia_txt/
H A Dtypography.cpp266 return lines[lineNumber].fHeight; in GetLineHeight()
342 lineMetrics->height = sklineMetrics.fHeight; in GetLineInfo()
379 line.height = skLineMetrics.fHeight; in GetLineMetrics()
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/
H A Dcanvas_renderer.h102 std::unique_ptr<ImageData> GetImageData(double fLeft, double fTop, double fWidth, double fHeight);
/foundation/arkui/ace_engine/frameworks/core/image/
H A Dimage_object.cpp125 imageSize.SetSize(Size(codec->dimensions().fHeight, codec->dimensions().fWidth)); in BuildImageObject()
128 imageSize.SetSize(Size(codec->dimensions().fWidth, codec->dimensions().fHeight)); in BuildImageObject()
/foundation/multimedia/media_foundation/video_processing_engine/framework/algorithm/detail_enhancer/skia/
H A Dskia_impl.cpp168 imageSize.fHeight = buffer->GetHeight(); in CreateYUVPixmap()
169 if (imageSize.fHeight <= 0) { in CreateYUVPixmap()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/render/
H A Drender_node_scene_util.cpp89 const float fHeight = static_cast<float>(renderArea.extentHeight); in UpdateRenderArea() local
92 const float offsetY = (fHeight * scissor.y); in UpdateRenderArea()
94 const float extentHeight = (fHeight * scissor.w); in UpdateRenderArea()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsproperty_fuzzer/
H A Drsproperty_fuzzer.cpp309 float fHeight = GetData<float>(); in RSPropertiesPainterFuzzTest() local
310 RectF rect(fLeft, fTop, fWidth, fHeight); in RSPropertiesPainterFuzzTest()
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_canvas_ffi.h177 int64_t contextId, double fLeft, double fTop, double fWidth, double fHeight);
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/skia_txt/impl/
H A Dparagraph_builder_impl.cpp136 placeholderStyle.fHeight = run.height; in AddPlaceholder()

Completed in 20 milliseconds

12