video_core/memory_manager: Remove unused CopyBlockUnsafe

This function was not being used.
This commit is contained in:
ReinUsesLisp
2021-01-21 19:14:49 -03:00
parent 0e9a6759f9
commit b7febb5625
2 changed files with 0 additions and 8 deletions

View File

@ -107,7 +107,6 @@ public:
*/
void ReadBlockUnsafe(GPUVAddr gpu_src_addr, void* dest_buffer, std::size_t size) const;
void WriteBlockUnsafe(GPUVAddr gpu_dest_addr, const void* src_buffer, std::size_t size);
void CopyBlockUnsafe(GPUVAddr gpu_dest_addr, GPUVAddr gpu_src_addr, std::size_t size);
/**
* IsGranularRange checks if a gpu region can be simply read with a pointer.