/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | render_backend_vk.h | 169 void RenderCommand(const RenderCommandDraw& renderCmd, const LowLevelCommandBufferVk& cmdBuf, 171 …void RenderCommand(const RenderCommandDrawIndirect& renderCmd, const LowLevelCommandBufferVk& cmdB… 173 … void RenderCommand(const RenderCommandDispatch& renderCmd, const LowLevelCommandBufferVk& cmdBuf, 178 …void RenderCommand(const RenderCommandBindPipeline& renderCmd, const LowLevelCommandBufferVk& cmdB… 187 …void RenderCommand(const RenderCommandNextSubpass& renderCmd, const LowLevelCommandBufferVk& cmdBu… 192 …void RenderCommand(const RenderCommandCopyBuffer& renderCmd, const LowLevelCommandBufferVk& cmdBuf, 196 … void RenderCommand(const RenderCommandCopyImage& renderCmd, const LowLevelCommandBufferVk& cmdBuf, 199 …void RenderCommand(const RenderCommandBarrierPoint& renderCmd, const LowLevelCommandBufferVk& cmdB… 203 … void RenderCommand(const RenderCommandBlitImage& renderCmd, const LowLevelCommandBufferVk& cmdBuf, 210 …void RenderCommand(const RenderCommandPushConstant& renderCmd, const LowLevelCommandBufferVk& cmdB… [all …]
|
H A D | render_backend_vk.cpp | 1227 if (renderCmd.indexCount) { in RenderCommand() 1237 stateCache.perfCounters.triangleCount += renderCmd.indexCount * renderCmd.instanceCount; in RenderCommand() 1571 renderCmd.bufferCopy.srcOffset, in RenderCommand() 1572 renderCmd.bufferCopy.dstOffset, in RenderCommand() 1573 renderCmd.bufferCopy.size, in RenderCommand() 2143 const uint32_t firstSet = renderCmd.firstSet; in RenderCommand() 2144 const uint32_t setCount = renderCmd.setCount; in RenderCommand() 2226 PLUGIN_ASSERT(renderCmd.data); in RenderCommand() 2265 … renderCmd.trianglesView.size() + renderCmd.aabbsView.size() + renderCmd.instancesView.size(); in RenderCommand() 2415 CloneData(&clearColor, sizeof(clearColor), &renderCmd.color, sizeof(renderCmd.color)); in RenderCommand() [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/ |
H A D | render_backend_gles.cpp | 968 BindComputePipeline(renderCmd); in RenderCommandBindPipeline() 1085 if (renderCmd.indexCount) { in RenderCommandDraw() 1120 perfCounters_.triangleCount += renderCmd.indexCount * renderCmd.instanceCount; in RenderCommandDraw() 1189 glDispatchCompute(renderCmd.groupCountX, renderCmd.groupCountY, renderCmd.groupCountZ); in RenderCommandDispatch() 1444 switch (renderCmd.beginType) { in RenderCommandBeginRenderPass() 1497 PLUGIN_UNUSED(renderCmd); in RenderCommandNextSubpass() 1812 BufferToImageCopy(renderCmd); in RenderCommandCopyBufferImage() 1814 ImageToBufferCopy(renderCmd); in RenderCommandCopyBufferImage() 2141 for (uint32_t idx = renderCmd.firstSet; idx < renderCmd.firstSet + renderCmd.setCount; ++idx) { in RenderCommandBindDescriptorSets() 2196 if ((renderCmd.data == nullptr) || (renderCmd.pushConstant.byteSize == 0)) in SetPushConstants() [all …]
|
H A D | render_backend_gles.h | 108 void RenderCommandFragmentShadingRate(const RenderCommandWithType& renderCmd); 246 void ProcessBindings(const struct RenderCommandBindDescriptorSets& renderCmd, 314 void BufferToImageCopy(const struct RenderCommandCopyBufferImage& renderCmd); 315 void ImageToBufferCopy(const struct RenderCommandCopyBufferImage& renderCmd);
|
/ohos5.0/base/startup/appspawn/modules/ace_adapter/ |
H A D | ace_adapter.cpp | 211 …char *renderCmd = reinterpret_cast<char *>(GetAppPropertyExt(property, MSG_EXT_NAME_RENDER_CMD, &l… in RunChildByRenderCmd() local 212 if (renderCmd == NULL || !IsDeveloperModeOn(property)) { in RunChildByRenderCmd() 216 APPSPAWN_LOGI("renderCmd %{public}s", renderCmd); in RunChildByRenderCmd() 218 std::string command(renderCmd); in RunChildByRenderCmd() 224 APPSPAWN_LOGE("Failed to run a native process: empty command %{public}s", renderCmd); in RunChildByRenderCmd()
|
/ohos5.0/base/startup/appspawn/modules/nweb_adapter/ |
H A D | nwebspawn_adapter.cpp | 92 char *renderCmd = reinterpret_cast<char *>(GetAppPropertyExt( in RunChildProcessor() local 94 if (renderCmd == nullptr) { in RunChildProcessor() 97 std::string renderStr(renderCmd); in RunChildProcessor()
|
/ohos5.0/base/startup/appspawn/test/moduletest/ |
H A D | appspawn_test_cmder.cpp | 294 std::string renderCmd = GetStringFromJsonObj(appInfoConfig, "render-cmd"); in BuildMsgFromJson() local 295 if (!renderCmd.empty()) { in BuildMsgFromJson() 296 ret = AppSpawnReqMsgAddStringInfo(reqHandle, MSG_EXT_NAME_RENDER_CMD, renderCmd.c_str()); in BuildMsgFromJson() 297 … APPSPAWN_CHECK(ret == 0, return -1, "Failed to add renderCmd %{public}s", renderCmd.c_str()); in BuildMsgFromJson()
|
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | app_spawn_msg_wrapper.cpp | 133 … if (strcpy_s(msg_->renderCmd, sizeof(msg_->renderCmd), startMsg.renderParam.c_str()) != EOK) { in AssembleMsg()
|
/ohos5.0/base/startup/appspawn/test/unittest/ |
H A D | app_spawn_test_helper.cpp | 514 const char *renderCmd = "/system/bin/sh ls -l "; in CreateMsg() local 516 reinterpret_cast<const uint8_t *>(renderCmd), strlen(renderCmd)); in CreateMsg()
|
/ohos5.0/docs/zh-cn/device-dev/subsystems/ |
H A D | subsys-boot-appspawn.md | 25 | renderCmd | 即图形图像渲染命令, 最大1024字节。 |
|
/ohos5.0/base/startup/appspawn/test/unittest/app_spawn_client_test/ |
H A D | app_spawn_client_test.cpp | 310 const char *renderCmd = "test 222222222222222222222222222222222222222222222222 \ variable 313 ret = AppSpawnReqMsgAddStringInfo(reqHandle, MSG_EXT_NAME_RENDER_CMD, renderCmd); 324 APPSPAWN_CHECK(strcmp(renderCmdMsg, renderCmd) == 0, 325 break, "Invalid renderCmd %{public}s", renderCmd);
|
/ohos5.0/docs/en/device-dev/subsystems/ |
H A D | subsys-boot-appspawn.md | 25 | renderCmd | Image rendering command. The value contains a maximum of 1024 bytes.|
|