summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Null/NullTexture.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2023-02-01 00:03:59 +1300
committerGitHub <noreply@github.com>2023-02-01 00:03:59 +1300
commite98ab0784dd823bb974cc2f6fbed697accc76f57 (patch)
tree25e7c1f52f2be320829fc58f65cf04a59b5a892c /Source/Core/VideoBackends/Null/NullTexture.cpp
parented3ad9458d6825917f09c3ccf93a20c5fb363078 (diff)
parent7bea39b39e9978ca8461adf68a2c28535719c48e (diff)
Merge pull request #11501 from iwubcode/abstract_texture_load_specify_layer
VideoBackends: add a way to load data into a specific level AND layer
Diffstat (limited to 'Source/Core/VideoBackends/Null/NullTexture.cpp')
-rw-r--r--Source/Core/VideoBackends/Null/NullTexture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Null/NullTexture.cpp b/Source/Core/VideoBackends/Null/NullTexture.cpp
index 126356838b..1b238ef674 100644
--- a/Source/Core/VideoBackends/Null/NullTexture.cpp
+++ b/Source/Core/VideoBackends/Null/NullTexture.cpp
@@ -21,7 +21,7 @@ void NullTexture::ResolveFromTexture(const AbstractTexture* src,
}
void NullTexture::Load(u32 level, u32 width, u32 height, u32 row_length, const u8* buffer,
- size_t buffer_size)
+ size_t buffer_size, u32 layer)
{
}