Blender Git Statistics -> Developers -> sebbas
Sebastián Barschkis (sebbas)
Total Commits : 1 127
Master Commits : 327
Branch Commits : 800
First Commit : August 15, 2015
Latest Commit : September 13, 2021
Commits by Month
Date | Number of Commits | |
---|---|---|
September, 2021 | 2 | |
August, 2021 | 2 | |
July, 2021 | 0 | |
June, 2021 | 4 | |
May, 2021 | 7 | |
April, 2021 | 1 | |
March, 2021 | 9 | |
February, 2021 | 11 | |
January, 2021 | 4 | |
December, 2020 | 2 | |
November, 2020 | 16 | |
October, 2020 | 19 | |
September, 2020 | 13 | |
August, 2020 | 8 | |
July, 2020 | 30 | |
June, 2020 | 10 | |
May, 2020 | 30 | |
April, 2020 | 41 | |
March, 2020 | 32 | |
February, 2020 | 40 | |
January, 2020 | 43 | |
December, 2019 | 48 | |
November, 2019 | 33 | |
October, 2019 | 9 | |
September, 2019 | 9 | |
August, 2019 | 6 | |
July, 2019 | 5 | |
June, 2019 | 4 | |
May, 2019 | 14 | |
April, 2019 | 31 | |
March, 2019 | 11 | |
February, 2019 | 0 | |
January, 2019 | 0 | |
December, 2018 | 0 | |
November, 2018 | 17 | |
October, 2018 | 1 | |
September, 2018 | 0 | |
August, 2018 | 23 | |
July, 2018 | 10 | |
June, 2018 | 1 | |
May, 2018 | 23 | |
April, 2018 | 8 | |
March, 2018 | 13 | |
February, 2018 | 3 | |
January, 2018 | 0 | |
December, 2017 | 12 | |
November, 2017 | 23 | |
October, 2017 | 6 | |
September, 2017 | 12 | |
August, 2017 | 15 | |
July, 2017 | 28 | |
June, 2017 | 43 | |
May, 2017 | 7 | |
April, 2017 | 8 | |
March, 2017 | 29 | |
February, 2017 | 10 | |
January, 2017 | 0 | |
December, 2016 | 4 | |
November, 2016 | 15 | |
October, 2016 | 19 | |
September, 2016 | 19 | |
August, 2016 | 48 | |
July, 2016 | 30 | |
June, 2016 | 43 | |
May, 2016 | 33 | |
April, 2016 | 11 | |
March, 2016 | 45 | |
February, 2016 | 12 | |
January, 2016 | 22 | |
December, 2015 | 7 | |
November, 2015 | 0 | |
October, 2015 | 9 | |
September, 2015 | 22 | |
August, 2015 | 2 |
Commit Distribution
Favourite Files
Filename | Total Edits |
---|---|
smoke.c | 203 |
liquid_script.h | 194 |
smoke_script.h | 140 |
FLUID.cpp | 129 |
properties_physics_smoke.py | 107 |
fluid.c | 105 |
rna_smoke.c | 100 |
MANTA_main.cpp | 91 |
manta_fluid_API.cpp | 83 |
DNA_smoke_types.h | 77 |
File Changes
Action | Total | Per Commit |
---|---|---|
Added | 1 546 | 1.4 |
Modified | 4 685 | 4.2 |
Deleted | 1 533 | 1.4 |
Code Changes
Action | Total | Per Commit |
---|---|---|
Lines Added | 46 344 | 48.4 |
Lines Removed | 34 243 | 35.7 |
Latest commits
Revision 063ce7f by Sebastián Barschkis (fluid-mantaflow-gpu) September 13, 2021, 13:03 (GMT) |
Fluid: Initial changes for OpenMP GPU support Contains basic support for OpenMP GPU offloading. That is, offloading of fluid KERNEL loops to the GPU. This branch offloads pressure and advection calls only - the 2 most expensive operation per step. In theory though, any function can be offloaded. For now, this branch needs to be build with a compiler that supports Nvidia GPU offloading. Exact GPU models need to be specified via CMake. |
September 6, 2021, 15:30 (GMT) |
Fluid: Clang-format cleanups Just cleanup. |
Revision 4e84e07 by Sebastián Barschkis (fluid-mantaflow-2d) August 9, 2021, 09:19 (GMT) |
Fluid: Initial support for 2D fluid simulations Initial adjustments for 2D (real-time) simulations. Basic functionality includes: - 2D/3D switcher in domain settings - 2D simulation support for smoke/fire, wavelet noise, liquid particles, secondary particles - UI switcher to choose the axis that will be simulated on - Planar visualization in workbench render Some things that remain to do (non-exhaustive list): - Eevee & Cycles support - Liquid meshing - Liquid viscosity solver |
Revision 23d5bbd by Sebastián Barschkis (fluid-mantaflow-2d) August 9, 2021, 09:14 (GMT) |
Fluid: Removed noise resolution field in domain settings There is no need to keep have noise resolution in the domain settings. Resolutions are stored in the fluid object which also handles memory of grids. |
Revision b3f5f6d by Sebastián Barschkis / Dilith Jayakody (soc-2021-curves) June 21, 2021, 14:31 (GMT) |
Fluid: Optimization for FLIP neighbor search radius Contributed by @erik85 in D11400. The idea from this patch was placed in a more generic context: A new FOR macro has been added that loops over the neighbors of a cell within a given radius. |
Revision 1356683 by Sebastián Barschkis / Dilith Jayakody (soc-2021-curves) June 21, 2021, 14:31 (GMT) |
Fluid: Clang-format cleanup Updated fluid source files in extern with clang-format. |
June 18, 2021, 10:28 (GMT) |
Fluid: Clang-format cleanup Updated fluid source files in extern with clang-format. |
June 18, 2021, 10:18 (GMT) |
Fluid: Optimization for FLIP neighbor search radius Contributed by @erik85 in D11400. The idea from this patch was placed in a more generic context: A new FOR macro has been added that loops over the neighbors of a cell within a given radius. |
May 18, 2021, 20:37 (GMT) |
Merge branch 'blender-v2.93-release' |
May 18, 2021, 20:36 (GMT) |
Fluid: Updated Mantaflow source files Includes update for OpenVDB file IO, i.e. fixes an issue with compression flag combination that resulted in random segfaults. Other changes: Cleanup and formatting. |
MiikaHweb - Blender Git Statistics v1.06