mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-03-17 10:44:40 +01:00
Changed GetDeviceCaps(dc, COLORRES) to use BITSPIXEL instead
This commit is contained in:
parent
3c709fa130
commit
d756657a48
|
|
@ -250,7 +250,7 @@ JNIEXPORT void JNICALL Java_org_lwjgl_Display_setDisplayMode
|
|||
// Get the device caps
|
||||
width = GetDeviceCaps(screenDC, HORZRES);
|
||||
height = GetDeviceCaps(screenDC, VERTRES);
|
||||
bpp = GetDeviceCaps(screenDC, COLORRES);
|
||||
bpp = GetDeviceCaps(screenDC, BITSPIXEL);
|
||||
freq = GetDeviceCaps(screenDC, VREFRESH);
|
||||
if (freq <= 1)
|
||||
freq = 0; // Unknown
|
||||
|
|
@ -400,7 +400,7 @@ JNIEXPORT void JNICALL Java_org_lwjgl_Display_init
|
|||
// Get the device caps
|
||||
int width = GetDeviceCaps(screenDC, HORZRES);
|
||||
int height = GetDeviceCaps(screenDC, VERTRES);
|
||||
int bpp = GetDeviceCaps(screenDC, COLORRES);
|
||||
int bpp = GetDeviceCaps(screenDC, BITSPIXEL);
|
||||
int freq = GetDeviceCaps(screenDC, VREFRESH);
|
||||
if (freq <= 1)
|
||||
freq = 0; // Unknown
|
||||
|
|
|
|||
Loading…
Reference in a new issue