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:
authorAntonioya <blendergit@gmail.com>2019-06-28 14:51:27 +0300
committerAntonioya <blendergit@gmail.com>2019-06-28 14:51:27 +0300
commita3428e07c83f5a5ed365ce5a502e7cb4319d589f (patch)
treeb904ff348b7fad19ebadafa26f45144a64f6d320 /source/blender/draw/engines/gpencil/gpencil_engine.h
parent89415e083d0e0c283cc36db20d1b4682a859a331 (diff)
GPencil: Rename Framebuffers and Textures
Diffstat (limited to 'source/blender/draw/engines/gpencil/gpencil_engine.h')
-rw-r--r--source/blender/draw/engines/gpencil/gpencil_engine.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/draw/engines/gpencil/gpencil_engine.h b/source/blender/draw/engines/gpencil/gpencil_engine.h
index 063cd00639b..5f1e620396b 100644
--- a/source/blender/draw/engines/gpencil/gpencil_engine.h
+++ b/source/blender/draw/engines/gpencil/gpencil_engine.h
@@ -224,10 +224,10 @@ typedef struct GPENCIL_PassList {
} GPENCIL_PassList;
typedef struct GPENCIL_FramebufferList {
- struct GPUFrameBuffer *main;
- struct GPUFrameBuffer *temp_fb_a;
- struct GPUFrameBuffer *temp_fb_b;
- struct GPUFrameBuffer *temp_fb_fx;
+ struct GPUFrameBuffer *main_fb;
+ struct GPUFrameBuffer *temp_a_fb;
+ struct GPUFrameBuffer *temp_b_fb;
+ struct GPUFrameBuffer *temp_fx_fb;
struct GPUFrameBuffer *background_fb;
struct GPUFrameBuffer *multisample_fb;
@@ -287,14 +287,14 @@ typedef struct g_data {
struct GPUTexture *input_color_tx;
/* working textures */
- struct GPUTexture *temp_color_tx_a;
- struct GPUTexture *temp_depth_tx_a;
+ struct GPUTexture *temp_color_a_tx;
+ struct GPUTexture *temp_depth_a_tx;
- struct GPUTexture *temp_color_tx_b;
- struct GPUTexture *temp_depth_tx_b;
+ struct GPUTexture *temp_color_b_tx;
+ struct GPUTexture *temp_depth_b_tx;
- struct GPUTexture *temp_color_tx_fx;
- struct GPUTexture *temp_depth_tx_fx;
+ struct GPUTexture *temp_color_fx_tx;
+ struct GPUTexture *temp_depth_fx_tx;
int session_flag;
bool do_instances;