Fix intel view copy workaround. (#2216)

The texture target must be taken from the storage rather than the view, when using the storage handle for the copy.
This commit is contained in:
riperiperi 2021-04-17 21:16:28 +01:00 committed by GitHub
parent dc8c781d7a
commit 38be18ef2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 9 deletions

View file

@ -10,10 +10,10 @@ namespace Ryujinx.Graphics.OpenGL.Image
private readonly TextureStorage _parent;
public int StorageHandle => _parent.Handle;
private TextureView _incompatibleFormatView;
public ITextureInfo Storage => _parent;
public int FirstLayer { get; private set; }
public int FirstLevel { get; private set; }