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:
authorCampbell Barton <ideasman42@gmail.com>2021-08-11 03:11:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-11 03:11:12 +0300
commitd480f03952a13355eb3f4ad2dbc0df332d6aff67 (patch)
tree911df0d24e621307a983d6faf9f3db7f96e26f45
parent55615e2600735d83c2332dbc18a8553d3d5e5cfd (diff)
Cleanup: clang-format
-rw-r--r--source/blender/compositor/operations/COM_BilateralBlurOperation.h4
-rw-r--r--source/blender/gpu/tests/gpu_shader_test.cc3
2 files changed, 3 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_BilateralBlurOperation.h b/source/blender/compositor/operations/COM_BilateralBlurOperation.h
index 4819715deb0..517c5292827 100644
--- a/source/blender/compositor/operations/COM_BilateralBlurOperation.h
+++ b/source/blender/compositor/operations/COM_BilateralBlurOperation.h
@@ -58,9 +58,7 @@ class BilateralBlurOperation : public MultiThreadedOperation, public QualityStep
this->m_space = data->sigma_space + data->iter;
}
- void get_area_of_interest(int input_idx,
- const rcti &output_area,
- rcti &r_input_area) override;
+ void get_area_of_interest(int input_idx, const rcti &output_area, rcti &r_input_area) override;
void update_memory_buffer_partial(MemoryBuffer *output,
const rcti &area,
diff --git a/source/blender/gpu/tests/gpu_shader_test.cc b/source/blender/gpu/tests/gpu_shader_test.cc
index 561858f421e..dbe336af097 100644
--- a/source/blender/gpu/tests/gpu_shader_test.cc
+++ b/source/blender/gpu/tests/gpu_shader_test.cc
@@ -108,7 +108,8 @@ void main() {
EXPECT_NE(shader, nullptr);
/* Construct Texture. */
- GPUTexture *texture = GPU_texture_create_1d("gpu_shader_compute_1d", SIZE, 0, GPU_RGBA32F, nullptr);
+ GPUTexture *texture = GPU_texture_create_1d(
+ "gpu_shader_compute_1d", SIZE, 0, GPU_RGBA32F, nullptr);
EXPECT_NE(texture, nullptr);
GPU_shader_bind(shader);