SHINRA-CORP Nov 23, 2024 @ 3:47am
Does my monitor support 4K
I have had this monitor for over a year now and something about it has baffled me. It is a 1440p monitor yet I'm able to output at 4k.

I know this because a message will pop up on the screen stating the resolution.

Is it a fake/upscaled version?

The best example I have is when I play on my Ps5 and I go to the screen settings. I have the option for 4k resolution. If you select it the Ps5 will enter a screen outputting 4k. It will then display a message saying "if you can see this press X" with a timer ticking down incase you cant see it.

Here is a link to my monitor: https://www.gigabyte.com/Monitor/M32Q#kf
< >
Showing 1-4 of 4 comments
ReBoot Nov 23, 2024 @ 3:55am 
Comes this message from the monitor, Steam, the game or driver?
󠀡󠀡 Nov 23, 2024 @ 4:46am 
You might have DSR turned on in nvidia control panel (or AMD if that's what you're using). It's a way of faking a higher monitor resolution so that the game can render at that resolution and then downscale.
metamec Nov 23, 2024 @ 5:05am 
Probably not. Connected hardware (PS5, your GPU, etc.) gets the supported resolutions ("source modes") by querying the monitors EDID chip.

If you open Powershell, you should be able to query this list directly by pasting this:

wmic /namespace:\\ROOT\WMI path WmiMonitorListedSupportedSourceModes

If you want more readable output, then paste this instead:

$wmicOutput = wmic /namespace:\\ROOT\WMI path WmiMonitorListedSupportedSourceModes $wmicOutput | ForEach-Object { $fields = $_ -split '\s+' if ($fields[3] -eq 'VideoModeDescriptor') { $width = $fields[7] $height = $fields[24] "$width x $height" } }

We can usually assume that the highest reported resolution is the native resolution of the monitor.

However, it's not exactly unusual for monitor firmware to be faulty and return incorrect EDID data or no EDID data at all!

It might be worth checking the monitor manufacturer's site for updated firmware... bearing in mind it can only usually be updated if your monitor has a USB port.

Edit to add: Most monitors deal with non-native and non-supported resolutions by scaling the image up or down... usually with bilinear or bicubic algorithms which reduce sharpness.
Last edited by metamec; Nov 23, 2024 @ 5:16am
Deranged Nov 23, 2024 @ 5:05am 
PS5 sounds like using spectral Super Resolution (PSSR) that monitor from specs only supports 1440p native but can you over drive refresh rate
Last edited by Deranged; Nov 23, 2024 @ 5:29am
< >
Showing 1-4 of 4 comments
Per page: 1530 50

Date Posted: Nov 23, 2024 @ 3:47am
Posts: 4