mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
VideoCommon/FramebufferManager: Rename m_efb_cache_tiles_wide to m_efb_cache_tile_row_stride
This also initializes it in the non-tiled case just for consistency, although it's not actually read in that case.
This commit is contained in:
@ -191,9 +191,14 @@ protected:
|
||||
// Format conversion shaders
|
||||
std::array<std::unique_ptr<AbstractPipeline>, 6> m_format_conversion_pipelines;
|
||||
|
||||
// EFB cache - for CPU EFB access
|
||||
// EFB cache - for CPU EFB access (EFB peeks/pokes), not for EFB copies
|
||||
|
||||
// Width and height of a tile in pixels at 1x IR. 0 indicates non-tiled, in which case a single
|
||||
// tile is used for the entire EFB.
|
||||
// Note that as EFB peeks and pokes are a CPU feature, they always operate at 1x IR.
|
||||
u32 m_efb_cache_tile_size = 0;
|
||||
u32 m_efb_cache_tiles_wide = 0;
|
||||
// Number of tiles that make up a row in m_efb_color_cache.tiles / m_efb_depth_cache.tiles.
|
||||
u32 m_efb_cache_tile_row_stride = 1;
|
||||
EFBCacheData m_efb_color_cache = {};
|
||||
EFBCacheData m_efb_depth_cache = {};
|
||||
|
||||
|
Reference in New Issue
Block a user