Lukas Stockner LukasStockner
  • Joined on 2013-12-26
Lukas Stockner pushed to white-balance at LukasStockner/blender 2024-06-17 20:33:59 +02:00
4a3295f069 Support white balance in CPU path
4f67dd4935 Merge exposure into matrix
Compare 2 commits »
Lukas Stockner commented on pull request blender/blender#123278 2024-06-17 18:52:23 +02:00
Color management: Support white balance as part of the display transform

Honestly, not sure. I just copied the Curves panel.

Lukas Stockner commented on pull request blender/blender#123267 2024-06-17 13:14:34 +02:00
Fix #123249: Orthographic DOF is influenced by near clip

Sounds good to me, focal distance 0 indeed makes no sense.

Lukas Stockner pushed to main at LukasStockner/.profile 2024-06-17 03:04:27 +02:00
1d23907d30 Update reports/2024.md
Lukas Stockner created pull request blender/blender-developer-docs#64 2024-06-17 02:54:59 +02:00
Release Notes: Thin Film and Blue Noise for Cycles
6335767a4a Release Notes: Add blue noise for Cycles
4a8d55b55a Release Notes: Add thin film section for Cycles
Compare 2 commits »
a83db384ef Add blue noise for Cycles
59c49b86b2 Add thin film section for Cycles
Compare 2 commits »
Lukas Stockner created repository LukasStockner/blender-manual 2024-06-16 23:41:10 +02:00
Lukas Stockner created repository LukasStockner/blender-developer-docs 2024-06-16 23:40:37 +02:00
Lukas Stockner commented on pull request blender/blender#123046 2024-06-16 15:55:06 +02:00
Cycles: add Central Cylindrical Panoramic camera model

This is only a small detail, but: I'd prefer to only have the radius in the UI. Perform the division here, then only handle u/v_min/max in the rest of the Cycles code.

Lukas Stockner commented on pull request blender/blender#123046 2024-06-16 15:55:05 +02:00
Cycles: add Central Cylindrical Panoramic camera model

The padding is needed for alignment reasons, this is all over the DNA files.

Lukas Stockner commented on pull request blender/blender#123046 2024-06-16 15:55:04 +02:00
Cycles: add Central Cylindrical Panoramic camera model

I think these should be hard limits, not UI limits? Same goes for u_max and radius (that one doesn't need an upper hard limit, but it shouldn't be negative).

Lukas Stockner suggested changes for blender/blender#119869 2024-06-16 15:46:56 +02:00
Render: allow to select an entire collection to set the focal point in the Depth of Field settings in the Camera properties

Overall the functionality seems reasonable, but there's a bunch of code comments. Also, I think the collection needs to be handled in DepsgraphRelationBuilder::build_camera as well.

Lukas Stockner commented on pull request blender/blender#119869 2024-06-16 15:46:56 +02:00
Render: allow to select an entire collection to set the focal point in the Depth of Field settings in the Camera properties

"this object" -> "the center of the objects in this collection"

Lukas Stockner commented on pull request blender/blender#119869 2024-06-16 15:46:55 +02:00
Render: allow to select an entire collection to set the focal point in the Depth of Field settings in the Camera properties

Using FOREACH_COLLECTION_OBJECT_RECURSIVE_BEGIN would be cleaner here, and would avoid recursing explicitly.

Lukas Stockner commented on pull request blender/blender#119869 2024-06-16 15:46:54 +02:00
Render: allow to select an entire collection to set the focal point in the Depth of Field settings in the Camera properties

This file is already C++, so I'd prefer to use the new float3 consistently instead of C-style arrays.