Home
last modified time | relevance | path

Searched refs:screenDensity (Results 1 – 6 of 6) sorted by relevance

/ide/tools/previewer/util/
DModelConfig.h29 int screenDensity; member
/ide/tools/previewer/jsapp/rich/
DJsAppImpl.cpp190 SetDeviceScreenDensity(atoi(screenDensity.c_str()), in SetJsAppArgs()
610 void JsAppImpl::ResolutionChanged(ResolutionParam& param, int32_t screenDensity, string reason) in ResolutionChanged() argument
613 param.compressionHeight, screenDensity); in ResolutionChanged()
657 int32_t changedHeight, int32_t screenDensity) in SetResolutionParams() argument
663 SetDeviceScreenDensity(screenDensity, CommandParser::GetInstance().GetDeviceType()); in SetResolutionParams()
702 void JsAppImpl::SetDeviceScreenDensity(const int32_t screenDensity, const std::string type) in SetDeviceScreenDensity() argument
704 if (type == "wearable" && screenDensity != 0) { in SetDeviceScreenDensity()
705 watchScreenDensity = screenDensity; in SetDeviceScreenDensity()
708 if (type == "tv" && screenDensity != 0) { in SetDeviceScreenDensity()
709 tvScreenDensity = screenDensity; in SetDeviceScreenDensity()
[all …]
DJsAppImpl.h64 …void ResolutionChanged(ResolutionParam& param, int32_t screenDensity, std::string reason) override;
67 int32_t changedWidth, int32_t changedHeight, int32_t screenDensity);
130 void SetDeviceScreenDensity(const int32_t screenDensity, const std::string type);
/ide/tools/previewer/jsapp/
DJsApp.cpp42 screenDensity(""), in JsApp()
90 screenDensity = value; in SetScreenDensity()
DJsApp.h91 std::string screenDensity; variable
/ide/tools/previewer/cli/
DCommandLine.cpp476 int32_t screenDensity = args["screenDensity"].asInt(); in RunSet() local
482 JsAppImpl::GetInstance().ResolutionChanged(param, screenDensity, reason); in RunSet()