From 9c1ab47fc44aa592e78bd129f5911a9708a82e78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Sun, 25 Mar 2018 15:53:17 +0200 Subject: GPUOffscreen: Remove unused offscreen blit. --- source/blender/gpu/intern/gpu_framebuffer.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'source/blender/gpu/intern') diff --git a/source/blender/gpu/intern/gpu_framebuffer.c b/source/blender/gpu/intern/gpu_framebuffer.c index a267d9cf1ee..b911f6d9c7f 100644 --- a/source/blender/gpu/intern/gpu_framebuffer.c +++ b/source/blender/gpu/intern/gpu_framebuffer.c @@ -665,23 +665,6 @@ void GPU_offscreen_unbind(GPUOffScreen *ofs, bool restore) glEnable(GL_SCISSOR_TEST); } -void GPU_offscreen_blit(GPUOffScreen *ofs, int x, int y) -{ - const int w = GPU_texture_width(ofs->color); - const int h = GPU_texture_height(ofs->color); - - glBindFramebuffer(GL_READ_FRAMEBUFFER, ofs->fb->object); - GLenum status = glCheckFramebufferStatus(GL_READ_FRAMEBUFFER); - - if (status == GL_FRAMEBUFFER_COMPLETE) { - glBlitFramebuffer(0, 0, w, h, x, y, x + w, y + h, GL_COLOR_BUFFER_BIT, GL_NEAREST); - } - else { - gpu_print_framebuffer_error(status, NULL); - } - - glBindFramebuffer(GL_READ_FRAMEBUFFER, 0); -} void GPU_offscreen_read_pixels(GPUOffScreen *ofs, int type, void *pixels) { -- cgit v1.2.3