gl_buffer_cache: Remove unused ReserveMemory method

This commit is contained in:
ReinUsesLisp
2019-05-27 20:51:41 -03:00
parent a89cc0bafc
commit 6ac4490751
2 changed files with 0 additions and 13 deletions

View File

@@ -61,9 +61,6 @@ public:
/// Uploads from a host memory. Returns host's buffer offset where it's been allocated.
GLintptr UploadHostMemory(const void* raw_pointer, std::size_t size, std::size_t alignment = 4);
/// Reserves memory to be used by host's CPU. Returns mapped address and offset.
std::tuple<u8*, GLintptr> ReserveMemory(std::size_t size, std::size_t alignment = 4);
bool Map(std::size_t max_size);
void Unmap();