summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Null/TextureCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoBackends/Null/TextureCache.h')
-rw-r--r--Source/Core/VideoBackends/Null/TextureCache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Null/TextureCache.h b/Source/Core/VideoBackends/Null/TextureCache.h
index 5b2b73c365..2b95586f44 100644
--- a/Source/Core/VideoBackends/Null/TextureCache.h
+++ b/Source/Core/VideoBackends/Null/TextureCache.h
@@ -14,7 +14,7 @@ protected:
u32 bytes_per_row, u32 num_blocks_y, u32 memory_stride,
const MathUtil::Rectangle<int>& src_rect, bool scale_by_half, bool linear_filter,
float y_scale, float gamma, bool clamp_top, bool clamp_bottom,
- const EFBCopyFilterCoefficients& filter_coefficients) override
+ const std::array<u32, 3>& filter_coefficients) override
{
}
@@ -22,7 +22,7 @@ protected:
const MathUtil::Rectangle<int>& src_rect, bool scale_by_half,
bool linear_filter, EFBCopyFormat dst_format, bool is_intensity,
float gamma, bool clamp_top, bool clamp_bottom,
- const EFBCopyFilterCoefficients& filter_coefficients) override
+ const std::array<u32, 3>& filter_coefficients) override
{
}
};