Bastien Montagne mont29
  • Amsterdam, The Netherlands
  • Blender developer, mainly focused on 'Core' module.

  • Joined on 2010-10-07
Bastien Montagne commented on pull request blender/blender#104525 2023-02-15 11:14:31 +01:00
BLI: add function for changing working directory

Although not strictly mandatory, it's good practice to add a comment reminder of the entering condition when the closing #endif is a bit far away in code: #endif /* !defined (__APPLE__) */

Bastien Montagne approved blender/blender#104525 2023-02-15 11:14:31 +01:00
BLI: add function for changing working directory

Besides the two style-related comments below, this LGTM now. No need for another review from me once these are addressed.

Bastien Montagne commented on pull request blender/blender#104525 2023-02-15 11:14:30 +01:00
BLI: add function for changing working directory

These (and the ones below inside the `` block) should be indented (# if defined(WIN32)). clangformat should handle that for you if configured in your IDE... Otherwise please run make format before committing. ;)

Bastien Montagne commented on pull request blender/blender#104518 2023-02-15 11:02:02 +01:00
Vulkan: Initial Compute Shaders support.

Patch builds for me with WITH_VULKAN_BACKEND enabled.

How do we run these tests? I enabled both draw and render Opengl options in CMake, but these do not seem to run any of the GPU ones…

Bastien Montagne pushed to main at mont29/blender 2023-02-15 10:20:30 +01:00
fc6d13eced Cleanup: extract the check to save a blend file into a function
e424931cf7 Cleanup: rename Byte to Bytes in Python string utilities
6661342dc5 Mesh: Set active attribute values edit mode operator
02c3889b1c Cleanup: quiet clang warnings
8d35b28f2a Cleanup: spelling in comments
Compare 30 commits »
Bastien Montagne created pull request blender/blender#104746 2023-02-14 15:31:38 +01:00
Add a basic support to BKE library linking code to generate liboverrides.
Bastien Montagne created branch F-link-override-basics in mont29/blender 2023-02-14 15:29:43 +01:00
Bastien Montagne pushed to F-link-override-basics at mont29/blender 2023-02-14 15:29:43 +01:00
a5bb77aff6 Add a basic support to BKE library linking code to generate liboverrides.
Bastien Montagne pushed to main at mont29/blender-addons 2023-02-14 14:26:23 +01:00
9060f1e1c8 Fix #104407: Sun Position: shader error when enabling
Bastien Montagne pushed to main at mont29/blender 2023-02-14 14:22:31 +01:00
a76b5d3a07 Curves: change collision radius for consistency with default radius
59b9a88a35 Fix: duplicate elements node does not update curve type counts
4126284e46 Allocator: Fail building when trying to MEM_delete a void pointer
1fd0c80725 Build: correct forwarding jobs argument to make_deps_wrapper.sh
5215543280 Constraints: use a dimensionless unit prop for Maintain Volume
Compare 47 commits »
Bastien Montagne commented on pull request blender/blender#104525 2023-02-14 12:42:51 +01:00
BLI: add function for changing working directory

Yes, exactly as e.g. BLI_file_attributes is handled.

Bastien Montagne closed issue infrastructure/blender-projects-platform#25 2023-02-13 17:26:07 +01:00
inconsistencies in git-hash-based links between organizations
Bastien Montagne commented on pull request blender/blender#104525 2023-02-13 16:16:20 +01:00
BLI: add function for changing working directory

Note that other functions, like BLI_expand_tilde, are fully defined in the .mm file for OSX, and not defined at all in the C file for this platform.

Since these new functions also share very…

Bastien Montagne closed issue blender/blender#104576 2023-02-13 15:33:07 +01:00
Action assigned to an object is unlinked when performing user_remap()
Bastien Montagne commented on issue blender/blender#104576 2023-02-13 15:33:06 +01:00
Action assigned to an object is unlinked when performing user_remap()

This is indeed expected behavior, the Action ID is used by the Object, not using the Object, so it is unaffected by the remapping of usages from old object to new one.