ensure same bpp and framerate when get and set for mac
This commit is contained in:
parent
b9b4913ca0
commit
e3d704dfde
@ -74,44 +74,11 @@ extern "C" float BackingScaleFactor() {
|
|||||||
// https://github.com/jhford/screenresolution/blob/master/cg_utils.c
|
// https://github.com/jhford/screenresolution/blob/master/cg_utils.c
|
||||||
// https://github.com/jdoupe/screenres/blob/master/setgetscreen.m
|
// https://github.com/jdoupe/screenres/blob/master/setgetscreen.m
|
||||||
|
|
||||||
extern "C" bool MacGetModeNum(CGDirectDisplayID display, uint32_t *numModes) {
|
|
||||||
CFArrayRef allModes = CGDisplayCopyAllDisplayModes(display, NULL);
|
|
||||||
if (allModes == NULL) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
*numModes = CFArrayGetCount(allModes);
|
|
||||||
CFRelease(allModes);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
extern "C" bool MacGetModes(CGDirectDisplayID display, uint32_t *widths, uint32_t *heights, uint32_t max, uint32_t *numModes) {
|
|
||||||
CFArrayRef allModes = CGDisplayCopyAllDisplayModes(display, NULL);
|
|
||||||
if (allModes == NULL) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
*numModes = CFArrayGetCount(allModes);
|
|
||||||
for (uint32_t i = 0; i < *numModes && i < max; i++) {
|
|
||||||
CGDisplayModeRef mode = (CGDisplayModeRef)CFArrayGetValueAtIndex(allModes, i);
|
|
||||||
widths[i] = (uint32_t)CGDisplayModeGetWidth(mode);
|
|
||||||
heights[i] = (uint32_t)CGDisplayModeGetHeight(mode);
|
|
||||||
}
|
|
||||||
CFRelease(allModes);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
extern "C" bool MacGetMode(CGDirectDisplayID display, uint32_t *width, uint32_t *height) {
|
|
||||||
CGDisplayModeRef mode = CGDisplayCopyDisplayMode(display);
|
|
||||||
if (mode == NULL) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
*width = (uint32_t)CGDisplayModeGetWidth(mode);
|
|
||||||
*height = (uint32_t)CGDisplayModeGetHeight(mode);
|
|
||||||
CGDisplayModeRelease(mode);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t bitDepth(CGDisplayModeRef mode) {
|
size_t bitDepth(CGDisplayModeRef mode) {
|
||||||
size_t depth = 0;
|
size_t depth = 0;
|
||||||
|
// Deprecated, same display same bpp?
|
||||||
|
// https://stackoverflow.com/questions/8210824/how-to-avoid-cgdisplaymodecopypixelencoding-to-get-bpp
|
||||||
|
// https://github.com/libsdl-org/SDL/pull/6628
|
||||||
CFStringRef pixelEncoding = CGDisplayModeCopyPixelEncoding(mode);
|
CFStringRef pixelEncoding = CGDisplayModeCopyPixelEncoding(mode);
|
||||||
// my numerical representation for kIO16BitFloatPixels and kIO32bitFloatPixels
|
// my numerical representation for kIO16BitFloatPixels and kIO32bitFloatPixels
|
||||||
// are made up and possibly non-sensical
|
// are made up and possibly non-sensical
|
||||||
@ -134,7 +101,56 @@ size_t bitDepth(CGDisplayModeRef mode) {
|
|||||||
return depth;
|
return depth;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool setDisplayToMode(CGDirectDisplayID display, CGDisplayModeRef mode) {
|
extern "C" bool MacGetModeNum(CGDirectDisplayID display, uint32_t *numModes) {
|
||||||
|
CFArrayRef allModes = CGDisplayCopyAllDisplayModes(display, NULL);
|
||||||
|
if (allModes == NULL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
*numModes = CFArrayGetCount(allModes);
|
||||||
|
CFRelease(allModes);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" bool MacGetModes(CGDirectDisplayID display, uint32_t *widths, uint32_t *heights, uint32_t max, uint32_t *numModes) {
|
||||||
|
CGDisplayModeRef currentMode = CGDisplayCopyDisplayMode(display);
|
||||||
|
if (currentMode == NULL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
CFArrayRef allModes = CGDisplayCopyAllDisplayModes(display, NULL);
|
||||||
|
if (allModes == NULL) {
|
||||||
|
CGDisplayModeRelease(currentMode);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
uint32_t allModeCount = CFArrayGetCount(allModes);
|
||||||
|
uint32_t realNum = 0;
|
||||||
|
for (uint32_t i = 0; i < allModeCount && realNum < max; i++) {
|
||||||
|
CGDisplayModeRef mode = (CGDisplayModeRef)CFArrayGetValueAtIndex(allModes, i);
|
||||||
|
if (CGDisplayModeGetRefreshRate(currentMode) == CGDisplayModeGetRefreshRate(mode) &&
|
||||||
|
bitDepth(currentMode) == bitDepth(mode)) {
|
||||||
|
widths[realNum] = (uint32_t)CGDisplayModeGetWidth(mode);
|
||||||
|
heights[realNum] = (uint32_t)CGDisplayModeGetHeight(mode);
|
||||||
|
realNum++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*numModes = realNum;
|
||||||
|
CGDisplayModeRelease(currentMode);
|
||||||
|
CFRelease(allModes);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" bool MacGetMode(CGDirectDisplayID display, uint32_t *width, uint32_t *height) {
|
||||||
|
CGDisplayModeRef mode = CGDisplayCopyDisplayMode(display);
|
||||||
|
if (mode == NULL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
*width = (uint32_t)CGDisplayModeGetWidth(mode);
|
||||||
|
*height = (uint32_t)CGDisplayModeGetHeight(mode);
|
||||||
|
CGDisplayModeRelease(mode);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static bool setDisplayToMode(CGDirectDisplayID display, CGDisplayModeRef mode) {
|
||||||
CGError rc;
|
CGError rc;
|
||||||
CGDisplayConfigRef config;
|
CGDisplayConfigRef config;
|
||||||
rc = CGBeginDisplayConfiguration(&config);
|
rc = CGBeginDisplayConfiguration(&config);
|
||||||
@ -152,7 +168,6 @@ bool setDisplayToMode(CGDirectDisplayID display, CGDisplayModeRef mode) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
extern "C" bool MacSetMode(CGDirectDisplayID display, uint32_t width, uint32_t height)
|
extern "C" bool MacSetMode(CGDirectDisplayID display, uint32_t width, uint32_t height)
|
||||||
{
|
{
|
||||||
bool ret = false;
|
bool ret = false;
|
||||||
@ -170,8 +185,8 @@ extern "C" bool MacSetMode(CGDirectDisplayID display, uint32_t width, uint32_t h
|
|||||||
CGDisplayModeRef mode = (CGDisplayModeRef)CFArrayGetValueAtIndex(allModes, i);
|
CGDisplayModeRef mode = (CGDisplayModeRef)CFArrayGetValueAtIndex(allModes, i);
|
||||||
if (width == CGDisplayModeGetWidth(mode) &&
|
if (width == CGDisplayModeGetWidth(mode) &&
|
||||||
height == CGDisplayModeGetHeight(mode) &&
|
height == CGDisplayModeGetHeight(mode) &&
|
||||||
bitDepth(currentMode) == bitDepth(mode) &&
|
CGDisplayModeGetRefreshRate(currentMode) == CGDisplayModeGetRefreshRate(mode) &&
|
||||||
CGDisplayModeGetRefreshRate(currentMode) == CGDisplayModeGetRefreshRate(mode)) {
|
bitDepth(currentMode) == bitDepth(mode)) {
|
||||||
ret = setDisplayToMode(display, mode);
|
ret = setDisplayToMode(display, mode);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user