2014-02-03 13:02:17 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
|
|
|
|
|
|
|
namespace Null
|
|
|
|
{
|
|
|
|
class TextureCache : public TextureCacheBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TextureCache() {}
|
|
|
|
~TextureCache() {}
|
2016-08-13 12:56:01 +00:00
|
|
|
bool CompileShaders() override { return true; }
|
2014-02-03 13:02:17 +00:00
|
|
|
void DeleteShaders() override {}
|
|
|
|
void ConvertTexture(TCacheEntryBase* entry, TCacheEntryBase* unconverted, void* palette,
|
|
|
|
TlutFormat format) override
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CopyEFB(u8* dst, u32 format, u32 native_width, u32 bytes_per_row, u32 num_blocks_y,
|
2016-12-26 19:54:37 +00:00
|
|
|
u32 memory_stride, bool is_depth_copy, const EFBRectangle& src_rect,
|
2014-02-03 13:02:17 +00:00
|
|
|
bool is_intensity, bool scale_by_half) override
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct TCacheEntry : TCacheEntryBase
|
|
|
|
{
|
|
|
|
TCacheEntry(const TCacheEntryConfig& _config) : TCacheEntryBase(_config) {}
|
|
|
|
~TCacheEntry() {}
|
2016-09-06 22:57:58 +00:00
|
|
|
void Load(const u8* buffer, u32 width, u32 height, u32 expanded_width, u32 level) override {}
|
2016-12-26 20:33:57 +00:00
|
|
|
void FromRenderTarget(bool is_depth_copy, const EFBRectangle& src_rect, bool scale_by_half,
|
|
|
|
unsigned int cbufid, const float* colmat) override
|
2014-02-03 13:02:17 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CopyRectangleFromTexture(const TCacheEntryBase* source,
|
|
|
|
const MathUtil::Rectangle<int>& srcrect,
|
|
|
|
const MathUtil::Rectangle<int>& dstrect) override
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void Bind(unsigned int stage) override {}
|
|
|
|
bool Save(const std::string& filename, unsigned int level) override { return false; }
|
|
|
|
};
|
|
|
|
|
|
|
|
TCacheEntryBase* CreateTexture(const TCacheEntryConfig& config) override
|
|
|
|
{
|
|
|
|
return new TCacheEntry(config);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // Null name space
|