Wednesday, March 27th 2024
Microsoft Files to Patent a New Pixel Dimming Technology
Microsoft, in a patent application, revealed that it is developing a new pixel dimming technology that allows software to control the brightness of specific regions of a compatible display, to greatly enhance realism. Put simply, this is a means for software to tell a display to increase the brightness of specific pixels of a display, while dimming others.
This is accomplished more easily on some display types, such as OLED, where each pixel is its own source of illumination. LCDs rely on backlit illumination from usually no more than a hundred LEDs, and so they're not capable of this technology, at least the way Microsoft describes it. Patent applications tend to have oversimplified language, and here, Microsoft describes how a component called an EM gate driver sends a PWM signal to pixels to adjust their brightness. All modern displays rely on the concept of PWM to adjust brightness, where the number of pulses of energy in a time period define how bright a display gets; and so Microsoft's language is rather vague. What's important, though, is that the company is claiming that it found a way to dim individual pixels. The patent application was originally filed in 2022, but published on March 21, 2024.
Sources:
US Patents and Trademarks Office, Windows Report
This is accomplished more easily on some display types, such as OLED, where each pixel is its own source of illumination. LCDs rely on backlit illumination from usually no more than a hundred LEDs, and so they're not capable of this technology, at least the way Microsoft describes it. Patent applications tend to have oversimplified language, and here, Microsoft describes how a component called an EM gate driver sends a PWM signal to pixels to adjust their brightness. All modern displays rely on the concept of PWM to adjust brightness, where the number of pulses of energy in a time period define how bright a display gets; and so Microsoft's language is rather vague. What's important, though, is that the company is claiming that it found a way to dim individual pixels. The patent application was originally filed in 2022, but published on March 21, 2024.
8 Comments on Microsoft Files to Patent a New Pixel Dimming Technology
Dead pixel alert it's MS now not your monitors fault :slap:
The issue is the monitor industry is dominated by non oled panels.
SetPixel Win32 API function is a part of Windows GDI subsystem for more than 30 years! It allows to change the color of a pixel at coordinates X and Y.
This is how SetPixel is declared in wingdi.h header file:
COLORREF SetPixel(
HDC hdc, // handle to DC
int X, // x-coordinate of pixel
int Y, // y-coordinate of pixel
COLORREF crColor ); // pixel color
A developer should use RGB macro to create the COLORREF value:
COLORREF RGB(
BYTE byRed, // red component of color
BYTE byGreen, // green component of color
BYTE byBlue ); // blue component of color
If the Developer calls
...
SetPixel( hdc, 512, 512, RGB( 255, 255, 255 ) );
...
and some time later
...
SetPixel( hdc, 512, 512, RGB( 128, 128, 128 ) );
...
it will decrease brightness of the pixel at position X=512 and Y=512 by 50 percent. Once again, What is new here?
The patent appears to be a way to compensate for variable brightness when dimming tech (think either LD or BFI) is used with VRR. Usually this results in brightness variation or you disable VRR and live with potential flicker. this patent interleaves rows of dimmed pixels to average out the brightness over time leading to steady brightness while also allowing for a sort of row level brightness modifier (I think). I could be wrong link here : patents.justia.com/patent/20240096268