From c2bc2ccd23cfabc2a6d8ac0295fef7b669206e28 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sat, 1 Jun 2024 23:21:04 -0500 Subject: VideoCommon: pull texture sampler out of texture cache so that it can be used in other places in the future --- Source/Core/VideoCommon/TextureCacheBase.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/TextureCacheBase.h') diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h index 998ff446d9..1a06fa671a 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.h +++ b/Source/Core/VideoCommon/TextureCacheBase.h @@ -33,6 +33,7 @@ class AbstractFramebuffer; class AbstractStagingTexture; class PointerWrap; +struct SamplerState; struct VideoConfig; namespace VideoCommon @@ -282,7 +283,7 @@ public: RcTcacheEntry GetXFBTexture(u32 address, u32 width, u32 height, u32 stride, MathUtil::Rectangle* display_rect); - virtual void BindTextures(BitSet32 used_textures); + virtual void BindTextures(BitSet32 used_textures, const std::array& samplers); void CopyRenderTargetToTexture(u32 dstAddr, EFBCopyFormat dstFormat, u32 width, u32 height, u32 dstStride, bool is_depth_copy, const MathUtil::Rectangle& srcRect, bool isIntensity, @@ -308,6 +309,10 @@ public: static bool AllCopyFilterCoefsNeeded(const std::array& coefficients); static bool CopyFilterCanOverflow(const std::array& coefficients); + // Get a new sampler state + static SamplerState GetSamplerState(u32 index, float custom_tex_scale, bool custom_tex, + bool has_arbitrary_mips); + protected: // Decodes the specified data to the GPU texture specified by entry. // Returns false if the configuration is not supported. -- cgit v1.2.3