rsx: add virtual destructor for default_vertex_cache

This commit is contained in:
scribam 2018-09-09 17:03:16 +02:00 committed by Ivan
parent f413996362
commit c8c8ce5e9e

View file

@ -855,6 +855,7 @@ namespace rsx
class default_vertex_cache
{
public:
virtual ~default_vertex_cache() {};
virtual storage_type* find_vertex_range(uintptr_t /*local_addr*/, upload_format, u32 /*data_length*/) { return nullptr; }
virtual void store_range(uintptr_t /*local_addr*/, upload_format, u32 /*data_length*/, u32 /*offset_in_heap*/) {}
virtual void purge() {}