DisplayIntegerScaling
导航: 使用 ADLX 进行编程 → ADLX 示例 → C++ 示例 → 显示
演示了在使用 ADLX 进行编程时如何获取整数缩放并执行相关操作。
命令提示符
| 命令提示符 | 描述 |
|---|---|
| 1 | 显示整数缩放支持。 |
| 2 | 获取整数缩放状态。 |
| 3 | 将当前整数缩放设置为禁用。 |
| 4 | 将当前整数缩放设置为启用。 |
| M/m | 显示命令提示符菜单。 |
| Q/q | 终止应用程序。 |
示例路径
/Samples/CPP/Display/DisplayIntegerScaling
C++
代码
C++
//// Copyright Advanced Micro Devices, Inc. All rights reserved.////-------------------------------------------------------------------------------------------------
/// \file mainDisplayIntegerScaling.cpp/// \brief Demonstrates how to obtain the display IntegerScaling when programming with ADLX and perform related operations.
#include "SDK/ADLXHelper/Windows/Cpp/ADLXHelper.h"#include "SDK/Include/IDisplaySettings.h"#include "SDK/Include/IDisplays.h"#include <iostream>#include <string>
// Use ADLX namespaceusing namespace adlx;
// ADLXHelper instance// No outstanding interfaces from ADLX must exist when ADLX is destroyed.// so we use global variables to ensure the validity of the interface.static ADLXHelper g_ADLXHelp;
// Display displayIntegerScaling supportvoid ShowDisplayIntegerScalingSupport(const IADLXDisplayServicesPtr& displayService, const IADLXDisplayPtr& display);
// Display current displayIntegerScaling statevoid GetIntegerScalingState(const IADLXDisplayServicesPtr& displayService, const IADLXDisplayPtr& display);
// Set displayIntegerScalingvoid SetIntegerScalingState(const IADLXDisplayServicesPtr& displayService, const IADLXDisplayPtr& display, const int key);
// Main menuvoid MainMenu();
// Menu action controlvoid MenuControl(const IADLXDisplayServicesPtr& displayService, const IADLXDisplayPtr& display);
// Wait for exit with error messageint WaitAndExit(const char* msg, const int retCode);
int main(){ // Define return code ADLX_RESULT res = ADLX_FAIL;
// Initialize ADLX res = g_ADLXHelp.Initialize(); if (ADLX_SUCCEEDED(res)) { // Get display service IADLXDisplayServicesPtr displayService; res = g_ADLXHelp.GetSystemServices()->GetDisplaysServices(&displayService); if (ADLX_SUCCEEDED(res)) { // Get display list IADLXDisplayListPtr displayList; res = displayService->GetDisplays(&displayList); if (ADLX_SUCCEEDED (res)) { // Inspect for the first display in the list adlx_uint it = 0; IADLXDisplayPtr display; res = displayList->At(it, &display); if (ADLX_SUCCEEDED(res)) { // Display main menu options MainMenu(); // Get and parse the selection MenuControl(displayService, display); } } else { std::cout << "Failed to get the displays list" << std::endl; } } else { // Destroy ADLX res = g_ADLXHelp.Terminate (); std::cout << "Destroy ADLX result: " << res << std::endl; return WaitAndExit ("Failed to get the display services", 0); } } else { return WaitAndExit("ADLX initialization failed", 0); }
// Destroy ADLX res = g_ADLXHelp.Terminate(); std::cout << "Destroy ADLX result: " << res << std::endl;
// Pause to see the print out system("Pause");
return 0;}
void ShowDisplayIntegerScalingSupport(const IADLXDisplayServicesPtr& displayService, const IADLXDisplayPtr& display){ IADLXDisplayIntegerScalingPtr displayIntegerScaling; ADLX_RESULT res = displayService->GetIntegerScaling(display, &displayIntegerScaling); if (ADLX_SUCCEEDED(res)) { std::cout << " === Get IntegerScaling supported ===" << std::endl; adlx_bool supported = false; res = displayIntegerScaling->IsSupported(&supported); std::cout << "\tIsSupported, res: " << res << " supported: " << (supported ? "true" : "false") << std::endl; }}
void GetIntegerScalingState(const IADLXDisplayServicesPtr& displayService, const IADLXDisplayPtr& display){ IADLXDisplayIntegerScalingPtr displayIntegerScaling; ADLX_RESULT res = displayService->GetIntegerScaling(display, &displayIntegerScaling); if (ADLX_SUCCEEDED(res)) { std::cout << " === Get IntegerScaling enabled ===" << std::endl; adlx_bool enabled = false; res = displayIntegerScaling->IsEnabled(&enabled); std::cout << "\tGetEnabled, res: " << res << " enabled: " << (enabled ? "true" : "false") << std::endl; }}
void SetIntegerScalingState(const IADLXDisplayServicesPtr& displayService, const IADLXDisplayPtr& display, const int key){ IADLXDisplayIntegerScalingPtr displayIntegerScaling; ADLX_RESULT res = displayService->GetIntegerScaling(display, &displayIntegerScaling); if (ADLX_SUCCEEDED(res)) { ADLX_RESULT res = ADLX_FAIL; switch (key) { // Set integer scaling disabled case 0: std::cout << " === Set IntegerScaling Enabled: false" << std::endl; res = displayIntegerScaling->SetEnabled(false); break; // Set integer scaling enabled case 1: std::cout << " === Set IntegerScaling Enabled: true" << std::endl; res = displayIntegerScaling->SetEnabled(true); break; default: break; } std::cout << "\tReturn code is: " << res <<" (0 means success)" << std::endl; }}
void MainMenu(){ std::cout << "\tChoose from following options" << std::endl;
std::cout << "\t->Press 1 to display integer scaling support" << std::endl;
std::cout << "\t->Press 2 to get integer scaling state" << std::endl;
std::cout << "\t->Press 3 to set current integer scaling to disabled" << std::endl; std::cout << "\t->Press 4 to set current integer scaling to enabled" << std::endl;
std::cout << "\t->Press Q/q to terminate the application" << std::endl; std::cout << "\t->Press M/m to display main menu options" << std::endl;}
// Menu action controlvoid MenuControl(const IADLXDisplayServicesPtr& displayService, const IADLXDisplayPtr& display){ int num = 0; while ((num = getchar()) != 'q' && num != 'Q') { switch (num) { // Display displayIntegerScaling support case '1': ShowDisplayIntegerScalingSupport(displayService, display); break;
// Display current displayIntegerScaling state case '2': GetIntegerScalingState(displayService, display); break;
// Set displayIntegerScaling case '3': case '4': SetIntegerScalingState(displayService, display, num - '3'); break;
// Display main menu options case 'm': case 'M': MainMenu(); break; default: break; } }}
// Wait for exit with error messageint WaitAndExit(const char* msg, const int retCode){ // Printout the message and pause to see it before returning the desired code if (nullptr != msg) std::cout << msg << std::endl;
system("Pause"); return retCode;}