Revert "Implement RGB565 Framebuffer format"

This reverts commit 865387f3c3.

Conflicts:
	src/video_core/gpu.h
	src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
	src/video_core/surface.cpp
This commit is contained in:
greggameplayer
2019-02-09 23:50:39 +01:00
parent 5abf93266e
commit 60157170cb
3 changed files with 17 additions and 25 deletions
-2
View File
@@ -17,8 +17,6 @@ u32 FramebufferConfig::BytesPerPixel(PixelFormat format) {
switch (format) {
case PixelFormat::ABGR8:
return 4;
case PixelFormat::RGB565:
return 2;
default:
return 4;
}