Merge pull request #3654 from ReinUsesLisp/fix-fb-attach

gl_texture_cache: Fix layered texture attachment base level
This commit is contained in:
Mat M 2020-04-15 03:17:18 -04:00 committed by GitHub
commit 4878d6bb49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -417,7 +417,7 @@ void CachedSurfaceView::Attach(GLenum attachment, GLenum target) const {
switch (params.target) {
case SurfaceTarget::Texture2DArray:
glFramebufferTexture(target, attachment, GetTexture(), params.base_level);
glFramebufferTexture(target, attachment, GetTexture(), 0);
break;
default:
UNIMPLEMENTED();