Hydra tasks refactor #73

Merged
Bogdan Nagirniak merged 8 commits from hydra-tasks-refactor into hydra-render 2023-07-25 22:13:33 +02:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 9e5242f9a7 - Show all commits

View File

@ -257,7 +257,7 @@ void GPURenderTaskDelegate::bind()
void GPURenderTaskDelegate::unbind()
{
//glDeleteVertexArrays(1, &VAO_);
glDeleteVertexArrays(1, &VAO_);
GPU_framebuffer_free(framebuffer_);
GPU_texture_free(tex_color_);
GPU_texture_free(tex_depth_);

View File

@ -7,12 +7,12 @@
#include "DNA_vec_types.h" /* this include must be before BKE_camera.h due to "rctf" type */
#include "DNA_camera_types.h"
#include "DNA_screen_types.h"
#include "BKE_camera.h"
#include "BLI_math_matrix.h"
#include "BLI_timecode.h"
#include "DEG_depsgraph_query.h"
#include "DNA_camera_types.h"
#include "DNA_screen_types.h"
#include "GPU_matrix.h"
#include "PIL_time.h"