Cleanup: make format

Remember to run `make format` after cleanups/renames/...
This commit is contained in:
Dalai Felinto
2020-02-07 15:26:35 +01:00
parent 6477fcf40f
commit 08a4cb0727
3 changed files with 4 additions and 9 deletions

View File

@@ -210,4 +210,3 @@ void BlenderSync::sync_background_light(BL::SpaceView3D &b_v3d, bool use_portal)
}
CCL_NAMESPACE_END

View File

@@ -356,8 +356,8 @@ bool Scene::need_update()
bool Scene::need_data_update()
{
return (background->need_update || image_manager->need_update || object_manager->need_update ||
geometry_manager->need_update || light_manager->need_update || lookup_tables->need_update ||
integrator->need_update || shader_manager->need_update ||
geometry_manager->need_update || light_manager->need_update ||
lookup_tables->need_update || integrator->need_update || shader_manager->need_update ||
particle_system_manager->need_update || curve_system_manager->need_update ||
bake_manager->need_update || film->need_update);
}

View File

@@ -69,9 +69,7 @@ MINLINE void blend_color_overlay_byte(unsigned char dst[4],
MINLINE void blend_color_hardlight_byte(unsigned char dst[4],
const uchar src1[4],
const uchar src2[4]);
MINLINE void blend_color_burn_byte(unsigned char dst[4],
const uchar src1[4],
const uchar src2[4]);
MINLINE void blend_color_burn_byte(unsigned char dst[4], const uchar src1[4], const uchar src2[4]);
MINLINE void blend_color_linearburn_byte(unsigned char dst[4],
const uchar src1[4],
const uchar src2[4]);
@@ -102,9 +100,7 @@ MINLINE void blend_color_exclusion_byte(unsigned char dst[4],
MINLINE void blend_color_color_byte(unsigned char dst[4],
const uchar src1[4],
const uchar src2[4]);
MINLINE void blend_color_hue_byte(unsigned char dst[4],
const uchar src1[4],
const uchar src2[4]);
MINLINE void blend_color_hue_byte(unsigned char dst[4], const uchar src1[4], const uchar src2[4]);
MINLINE void blend_color_saturation_byte(unsigned char dst[4],
const uchar src1[4],
const uchar src2[4]);