From d1226a6d9d2714443cbc6e911ddd26904edcde44 Mon Sep 17 00:00:00 2001 From: mano-wii Date: Mon, 4 May 2020 08:40:45 -0300 Subject: Revert "Possible fix for T76113: Use GL_STATIC_DRAW in immBegin" This reverts commit 7df51ca11a227b5e51290f8dc976972a01db5d81. Did not solve the main problem. --- source/blender/gpu/intern/gpu_immediate.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender/gpu') diff --git a/source/blender/gpu/intern/gpu_immediate.c b/source/blender/gpu/intern/gpu_immediate.c index f91a13a3b62..5a5dfb3e1e8 100644 --- a/source/blender/gpu/intern/gpu_immediate.c +++ b/source/blender/gpu/intern/gpu_immediate.c @@ -268,8 +268,7 @@ void immBegin(GPUPrimType prim_type, uint vertex_len) else { /* orphan this buffer & start with a fresh one */ /* this method works on all platforms, old & new */ - /* `GL_DYNAMIC_DRAW` was causing problems when closing temporary windows on old AMD GPUs. */ - glBufferData(GL_ARRAY_BUFFER, active_buffer->buffer_size, NULL, GL_STATIC_DRAW); + glBufferData(GL_ARRAY_BUFFER, active_buffer->buffer_size, NULL, GL_DYNAMIC_DRAW); active_buffer->buffer_offset = 0; } -- cgit v1.2.3