Support for 32bit color format

This commit is contained in:
negativeExponent
2025-09-01 22:07:53 +08:00
committed by LibretroAdmin
parent 3544ff567e
commit 033c5e2f32
7 changed files with 100 additions and 57 deletions

View File

@@ -11,7 +11,11 @@ of the base 64 color palette. */
handle things however it wants. */
/* Bits per pixel of output. Can be 15, 16, 32, or 24 (same as 32). */
#ifdef FRONTEND_SUPPORTS_RGB888
#define NES_NTSC_OUT_DEPTH 32
#else
#define NES_NTSC_OUT_DEPTH 16
#endif
/* Type of input pixel values. You'll probably use unsigned short
if you enable emphasis above. */