ClassiCube icon indicating copy to clipboard operation
ClassiCube copied to clipboard

Launcher renders with blue tint on Apple Silicon

Open UnknownShadow200 opened this issue 1 year ago • 0 comments

Unfortunately I cannot fix it myself as I do not have access to an apple silicon device image

To fix this, most likely for the CGImageCreate call in DoDrawFramebuffer in interop_cocoa.m, need to change the kCGBitmapByteOrder32Host | kCGImageAlphaNoneSkipFirst to one of the following instead:

  • kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst
  • kCGBitmapByteOrder32Big | kCGImageAlphaNoneSkipFirst
  • kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipLast
  • kCGBitmapByteOrder32Big | kCGImageAlphaNoneSkipLast

UnknownShadow200 avatar Oct 20 '23 08:10 UnknownShadow200