Revert "libobs-opengl: Add GS_RGBX format"

This reverts commit d940b9e580.
This commit is contained in:
Kurt Kartaltepe
2019-08-11 17:16:48 -07:00
parent 1402a80583
commit 491b6ec035
2 changed files with 0 additions and 9 deletions

View File

@@ -58,7 +58,6 @@ enum gs_color_format {
GS_A8,
GS_R8,
GS_RGBA,
GS_RGBX,
GS_BGRX,
GS_BGRA,
GS_R10G10B10A2,
@@ -895,8 +894,6 @@ static inline uint32_t gs_get_format_bpp(enum gs_color_format format)
return 8;
case GS_RGBA:
return 32;
case GS_RGBX:
return 32;
case GS_BGRX:
return 32;
case GS_BGRA: