Cleanup: Unused variable warnings

This commit is contained in:
Omar Emara 2024-02-06 17:07:51 +02:00
parent 36f0ecb978
commit c4f9484c18
2 changed files with 1 additions and 4 deletions

View File

@ -11,6 +11,7 @@
#include "RE_pipeline.h"
#include "COM_MemoryBuffer.h"
#include "COM_SymmetricSeparableBlurVariableSizeAlgorithm.h"
namespace blender::compositor {
@ -59,8 +60,6 @@ static void blur_pass(const MemoryBuffer &input,
threading::parallel_for(IndexRange(size.y), 1, [&](const IndexRange sub_y_range) {
for (const int64_t y : sub_y_range) {
for (const int64_t x : IndexRange(size.x)) {
int2 texel = int2(x, y);
float accumulated_weight = 0.0f;
float4 accumulated_color = float4(0.0f);

View File

@ -26,8 +26,6 @@ void InpaintSimpleOperation::compute_inpainting_region(
threading::parallel_for(IndexRange(size.y), 1, [&](const IndexRange sub_y_range) {
for (const int64_t y : sub_y_range) {
for (const int64_t x : IndexRange(size.x)) {
int2 texel = int2(x, y);
float4 color = float4(input->get_elem(x, y));
if (color.w == 1.0f) {