clear render targets after creation

This commit is contained in:
Samuliak 2024-08-29 19:43:36 +02:00
parent 45eda2f120
commit 8830747e90
2 changed files with 17 additions and 4 deletions

View file

@ -12,7 +12,7 @@ struct BufferHandle {
};
// 64MB buffer for caching vertex data
#define CACHE_BUFFER_SIZE 64 * 1024 * 1024
#define CACHE_BUFFER_SIZE 128 * 1024 * 1024
class VertexBufferCache {
public: