Jelajahi Sumber

UI: Make RGB output use RGB, not BGR

Noticed that the red and blue channels were inverted when testing.
jp9000 10 tahun lalu
induk
melakukan
abdc2b61ce
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      obs/window-basic-main.cpp

+ 1 - 1
obs/window-basic-main.cpp

@@ -1523,7 +1523,7 @@ static inline enum video_format GetVideoFormatFromName(const char *name)
 		return VIDEO_FORMAT_UYVY;
 #endif
 	else
-		return VIDEO_FORMAT_BGRA;
+		return VIDEO_FORMAT_RGBA;
 }
 
 int OBSBasic::ResetVideo()