Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/gpu/GPU_pbr.h')
-rw-r--r--source/blender/gpu/GPU_pbr.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/gpu/GPU_pbr.h b/source/blender/gpu/GPU_pbr.h
index 6670987acef..1efca5ca68b 100644
--- a/source/blender/gpu/GPU_pbr.h
+++ b/source/blender/gpu/GPU_pbr.h
@@ -47,6 +47,7 @@ typedef struct GPUScreenBuffer {
struct GPUTexture *tex;
struct GPUTexture *depth;
struct GPUFrameBuffer *fb;
+ struct GPUFrameBuffer *downsamplingfb;
} GPUScreenBuffer;
typedef struct GPUPBR {
@@ -73,6 +74,7 @@ GPUScreenBuffer *GPU_pbr_scene_buffer(GPUPBR *pbr, int width, int height);
GPUScreenBuffer *GPU_pbr_backface_buffer(GPUPBR *pbr, int width, int height);
void GPU_scenebuf_bind(GPUScreenBuffer* buf, float winmat[4][4], int winsize[2], float clipsta, float clipend);
void GPU_scenebuf_unbind(GPUScreenBuffer* buf);
+void GPU_scenebuf_filter_texture(GPUScreenBuffer* buf);
void GPU_pbr_settings_validate(struct GPUPBRSettings *pbr_settings);