Don’t specify a stencil buffer attachment for the onscreen FBO. (#4778)

This commit is contained in:
Chinmay Garde 2018-03-12 17:37:11 -07:00 committed by GitHub
parent 46eee66daa
commit ba67d0fe71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ class PlatformView : public std::enable_shared_from_this<PlatformView> {
uint8_t blue_bits = 8;
uint8_t alpha_bits = 8;
uint8_t depth_bits = 0;
uint8_t stencil_bits = 8;
uint8_t stencil_bits = 0;
};
void SetupResourceContextOnIOThread();