Merge branch 'master' of https://github.com/yuzu-emu/yuzu into u/kemathe/GPU-puller

This commit is contained in:
kmather73
2018-12-28 18:04:21 -08:00
97 changed files with 2925 additions and 706 deletions
+2
View File
@@ -104,6 +104,7 @@ u32 RenderTargetBytesPerPixel(RenderTargetFormat format) {
return 1;
default:
UNIMPLEMENTED_MSG("Unimplemented render target format {}", static_cast<u32>(format));
return 1;
}
}
@@ -121,6 +122,7 @@ u32 DepthFormatBytesPerPixel(DepthFormat format) {
return 2;
default:
UNIMPLEMENTED_MSG("Unimplemented Depth format {}", static_cast<u32>(format));
return 1;
}
}