views
7
likes
3

Comments

What do you think?
No comments yet.

Github Link

What is This

This plugin fetches monitor information and determines all potential resolutions based on the monitor's aspect ratio. This plugin can be used with all RHIs but is primarily intended for Vulkan, as screen resolutions cannot be obtained while using the Vulkan RHI.
This plugin was developed for UE4 4.26.2 and has been tested on versions 4.27 and 5.2.

Fetches monitor information and determines all potential resolutions based on the monitor's aspect ratio. This plugin can be used with all RHIs but is primarily intended for Vulkan, as screen resolutions cannot be obtained while using the Vulkan RHI.
This plugin was developed for UE4 4.26.2 and has been tested on versions 4.27 and 5.2.

Functions

1. Get Supported Resolutions

359649928-2fda18dc-519a-4b18-9592-87ba698f780f.png

This function retrieves a list of supported screen resolutions for a specified monitor. It takes an integer MonitorIndex as input, which indicates which monitor's resolutions to fetch.

  • Obtains the display metrics for all connected monitors.

  • Checks if the provided MonitorIndex is valid; if not, it adjusts it to the last monitor.

  • Calculates the aspect ratio of the monitor by finding the greatest common divisor (GCD) of its width and height.

  • Generates a list of possible resolutions based on the aspect ratio.

  • Includes the current monitor's native resolution in the list.

  • Returns an array of FIntPoint structures representing the supported resolutions.

2. Get Primary Monitor's Supported Resolutions

359651138-9453a1f2-e133-4732-a8fd-eadf860ea508.png

This function calls GetSupportedResolutions with an argument of 0, which corresponds to the primary monitor. It returns the list of supported resolutions for the primary monitor.

3. Get Monitor Info

359651546-475e4807-ef6b-4b87-bff0-571ace0ba0ba.png

This function retrieves detailed information about a specific monitor based on the provided MonitorIndex.

Name: The name of the monitor.
ID: The unique identifier of the monitor.
NativeWidth: The native width of the monitor.
NativeHeight: The native height of the monitor.
MaxResolution: The maximum supported resolution of the monitor.
bIsPrimary: A boolean indicating whether the monitor is the primary monitor.
DPI: The dots per inch (DPI) of the monitor.

4. Get Number Of Connected Monitors

359653330-4627e734-c88d-4111-9146-7d856d6af60b.png

Basically just returns the number of monitors currently connected to the system.

#other #Plugin #VulkanRHI #UnrealEngine



all-ages

I've made a plugin for Unreal Engine that fetches monitor's information and makes an array of all possible screen resolutions based on the aspect ratio.

This plugin is primarily intended for Vulkan, as Get Screen Resolutions have not been implemented.