Cleanup: format

This commit is contained in:
Campbell Barton 2023-08-09 10:46:10 +10:00
parent 5cdec2f12a
commit faaac97239
13 changed files with 14 additions and 14 deletions

View File

@ -48,6 +48,7 @@ import pxr.Sdf as Sdf
import pxr.Usd as Usd
import pxr.UsdShade as UsdShade
class USDHookExample(bpy.types.USDHook):
bl_idname = "usd_hook_example"
bl_label = "Example"
@ -97,10 +98,12 @@ class USDHookExample(bpy.types.USDHook):
def register():
bpy.utils.register_class(USDHookExample)
bpy.utils.register_class(USDHookExample)
def unregister():
bpy.utils.unregister_class(USDHookExample)
bpy.utils.unregister_class(USDHookExample)
if __name__ == "__main__":
register()

View File

@ -317,4 +317,3 @@ if(WITH_OPENCOLORIO)
endif()
blender_add_lib(bf_realtime_compositor "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")

View File

@ -216,4 +216,4 @@ vec3 sample_uniform_cone(vec3 rand, float angle, vec3 N, vec3 T, vec3 B)
return tH * mat3(N, T, B);
}
/** \} */
/** \} */

View File

@ -186,4 +186,4 @@ void main()
out_radiance = from_accumulation_space(out_radiance);
imageStore(out_radiance_img, texel_fullres, vec4(out_radiance, 0.0));
}
}

View File

@ -230,4 +230,4 @@ void main()
imageStore(out_radiance_img, texel_fullres, vec4(radiance_accum, 0.0));
imageStore(out_variance_img, texel_fullres, vec4(hit_variance));
imageStore(out_hit_depth_img, texel_fullres, vec4(hit_depth));
}
}

View File

@ -209,4 +209,4 @@ void main()
float out_variance = mix(in_variance, history_variance.x, mix_variance_fac);
/* This is feedback next frame as variance_history_tx. */
imageStore(out_variance_img, texel_fullres, vec4(out_variance));
}
}

View File

@ -64,4 +64,4 @@ void main()
imageStore(tile_mask_img, tile_co, uvec4(tile_mask));
}
}
}

View File

@ -36,4 +36,4 @@ void main()
uint tile_index = atomicAdd(ray_dispatch_buf.num_groups_x, 1u);
ray_tiles_buf[tile_index] = packUvec2x16(uvec2(tile));
}
}
}

View File

@ -73,4 +73,4 @@ void main()
atlas_store(result[2], atlas_coord, 2);
atlas_store(result[3], atlas_coord, 3);
}
}
}

View File

@ -37,4 +37,3 @@ endif()
blender_add_lib(bf_editor_space_console "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")

View File

@ -51,4 +51,3 @@ endif()
blender_add_lib(bf_editor_space_text "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")

View File

@ -15,7 +15,7 @@ set(INC
../../windowmanager
../../../../intern/clog
../../../../intern/guardedalloc
../../../../intern/utfconv
../../../../intern/utfconv
)
set(INC_SYS

View File

@ -39,4 +39,4 @@ Render::~Render()
BKE_curvemapping_free_data(&r.mblur_shutter_curve);
render_result_free(pushedresult);
}
}