Blender Git Statistics -> Developers -> mdewanchand
Monique Dewanchand (mdewanchand)
Total Commits : 36
Master Commits : 24
Branch Commits : 12
First Commit : May 4, 2012
Latest Commit : November 30, 2020
Commits by Month
Date | Number of Commits | |
---|---|---|
November, 2020 | 1 | |
October, 2020 | 0 | |
September, 2020 | 0 | |
August, 2020 | 0 | |
July, 2020 | 0 | |
June, 2020 | 0 | |
May, 2020 | 0 | |
April, 2020 | 0 | |
March, 2020 | 0 | |
February, 2020 | 0 | |
January, 2020 | 0 | |
December, 2019 | 0 | |
November, 2019 | 0 | |
October, 2019 | 0 | |
September, 2019 | 0 | |
August, 2019 | 0 | |
July, 2019 | 0 | |
June, 2019 | 0 | |
May, 2019 | 0 | |
April, 2019 | 0 | |
March, 2019 | 0 | |
February, 2019 | 0 | |
January, 2019 | 0 | |
December, 2018 | 0 | |
November, 2018 | 0 | |
October, 2018 | 0 | |
September, 2018 | 0 | |
August, 2018 | 1 | |
July, 2018 | 0 | |
June, 2018 | 0 | |
May, 2018 | 0 | |
April, 2018 | 0 | |
March, 2018 | 0 | |
February, 2018 | 0 | |
January, 2018 | 0 | |
December, 2017 | 0 | |
November, 2017 | 0 | |
October, 2017 | 0 | |
September, 2017 | 0 | |
August, 2017 | 0 | |
July, 2017 | 0 | |
June, 2017 | 0 | |
May, 2017 | 0 | |
April, 2017 | 0 | |
March, 2017 | 0 | |
February, 2017 | 0 | |
January, 2017 | 0 | |
December, 2016 | 0 | |
November, 2016 | 0 | |
October, 2016 | 0 | |
September, 2016 | 0 | |
August, 2016 | 0 | |
July, 2016 | 0 | |
June, 2016 | 4 | |
May, 2016 | 0 | |
April, 2016 | 0 | |
March, 2016 | 0 | |
February, 2016 | 0 | |
January, 2016 | 0 | |
December, 2015 | 0 | |
November, 2015 | 0 | |
October, 2015 | 0 | |
September, 2015 | 0 | |
August, 2015 | 0 | |
July, 2015 | 0 | |
June, 2015 | 0 | |
May, 2015 | 0 | |
April, 2015 | 0 | |
March, 2015 | 0 | |
February, 2015 | 0 | |
January, 2015 | 0 | |
December, 2014 | 0 | |
November, 2014 | 0 | |
October, 2014 | 0 | |
September, 2014 | 0 | |
August, 2014 | 0 | |
July, 2014 | 2 | |
June, 2014 | 0 | |
May, 2014 | 0 | |
April, 2014 | 1 | |
March, 2014 | 0 | |
February, 2014 | 0 | |
January, 2014 | 1 | |
December, 2013 | 0 | |
November, 2013 | 0 | |
October, 2013 | 0 | |
September, 2013 | 0 | |
August, 2013 | 0 | |
July, 2013 | 0 | |
June, 2013 | 1 | |
May, 2013 | 0 | |
April, 2013 | 0 | |
March, 2013 | 0 | |
February, 2013 | 4 | |
January, 2013 | 5 | |
December, 2012 | 0 | |
November, 2012 | 0 | |
October, 2012 | 0 | |
September, 2012 | 0 | |
August, 2012 | 0 | |
July, 2012 | 3 | |
June, 2012 | 3 | |
May, 2012 | 10 |
Commit Distribution
Path | Number of Commits |
---|---|
master | 24 |
tile | 6 |
compositor-2016 | 4 |
blender-tiles | 2 |
Favourite Files
Filename | Total Edits |
---|---|
rna_nodetree.c | 6 |
COM_BlurNode.cpp | 5 |
COM_TranslateNode.cpp | 3 |
COM_BokehBlurOperation.cpp | 3 |
COM_DilateErodeOperation.cpp | 3 |
COM_GaussianXBlurOperation.cpp | 3 |
COM_GaussianYBlurOperation.cpp | 3 |
drawnode.c | 3 |
COM_FastGaussianBlurOperation.cpp | 3 |
DNA_node_types.h | 3 |
File Changes
Action | Total | Per Commit |
---|---|---|
Added | 4 | 0.1 |
Modified | 126 | 3.5 |
Deleted | 4 | 0.1 |
Code Changes
Action | Total | Per Commit |
---|---|---|
Lines Added | 1 855 | 54.6 |
Lines Removed | 1 313 | 38.6 |
Latest commits
November 30, 2020, 07:00 (GMT) |
Cleanup hardcoded render percentage to factor conversion During revision of {D8952} one of the comments was to make a function that converts the render percentage to a factor. This to avoid code duplication. However the duplicated code was already all over the compositor code. So in order to avoid this code duplication for {D8952} I propose to first cleanup the duplicated code and build patch {D8952} based on this clean up. The method that converts the render percentage to a factor is put in the CompositorContext. Why? The CompositorContext keeps DNA information like the renderdata. DNA, and thus the CompositorContext, keeps the size of the render resolution in percentage (user oriented). The compositor needs the size of the render resolution as a factor. So the CompositorContext seems like the obvious place to have this conversion method. Why not in de NodeBase? The method could've been added to the nodebase, but I wanted to keep the nodebase as clean as possible and not put simple "conversion" methods into this base class. Also I didn't really like the call flow: you'd always have to get the renderdata size from the context and then convert. Putting it in the CompositorContext avoids this extra invoke of a call. Why not in the Converter? See nodebase. And the Converter seems more like a class for "structural" and complex node tree conversions. Not the simple conversions. Reviewed By: Sergey Sharybin Differential Revision: https://developer.blender.org/D9566 |
August 31, 2018, 13:00 (GMT) |
Python: Enable MASS unit in FloatProperty MASS unit was already implemented for the C api. Only making sure it is accessible in the python api. Also added 'CAMERA' to the documentation as a valid option. |
Revision d318324 by Monique Dewanchand (compositor-2016) June 8, 2016, 20:54 (GMT) |
disable glsl, glew import different on mac. Check on viewer node do_output io active. First check bnode output buffer, can be null, prevent compo from crashing. |
Revision 84794b3 by Monique Dewanchand (compositor-2016) June 2, 2016, 20:22 (GMT) |
Merge branch 'compositor-2016' of git.blender.org:blender into compositor-2016 |
Revision 79475ac by Monique Dewanchand (compositor-2016) June 2, 2016, 20:20 (GMT) |
only calculate active viewer nodes. |
Revision 55a56ec by Monique Dewanchand (compositor-2016) June 1, 2016, 20:11 (GMT) |
Implemented the hilbert spiral |
Revision 7997a36 by Monique Dewanchand (blender-tiles) July 31, 2014, 20:12 (GMT) |
Modified NUMBER_OF_CHANNELS |
Revision f4b3c92 by Monique Dewanchand (blender-tiles) July 29, 2014, 20:29 (GMT) |
Merge branch 'master' into blender-tiles |
April 5, 2014, 19:33 (GMT) |
Fix issue for OPENCL problem on Macosx 10.9.2 |
January 18, 2014, 17:20 (GMT) |
Make it possible to hide/unhide a node during node transform operations. During drag the H key can be used to toggle the hide flag of the selected nodes. This makes it easier to 'attach' nodes to available links in narrow places. |
MiikaHweb - Blender Git Statistics v1.06