Blender Git Commit Log
Git Commits -> Revision 1e891f8
Revision 1e891f8 by Willian Padovani Germano (master) May 8, 2003, 03:06 (GMT) |
* Added submodule Window, including FileSelector and ImageSelector: Most of the code comes from bpython/intern/opy_window.c, but two new functions were added, to access the file and image selector windows in Blender. * Added submodules Draw (gui) and BGL (OpenGL wrapper): The code comes from bpython/intern/opy_draw.c, with minor changes to integrate it in the new implementation. * Made changes to Camera, Lamp and Image submodules: The implementation was improved. These files should be good starting points for interested new coders to look at, now. * Renamed interface.[ch] to EXPP_interface.[ch] to avoid conflict: There is another interface.h file in source/blender/include. |
Commit Details:
Full Hash: 1e891f844aa02a59269d74d0dc0283e78a7ebda5
SVN Revision: 680
Parent Commit: f20e95b
Lines Changed: +4380, -1810
8 Added Paths:
/source/blender/python/api2_2x/BGL.c (+1486, -0) (View)
/source/blender/python/api2_2x/BGL.h (+424, -0) (View)
/source/blender/python/api2_2x/Draw.c (+741, -0) (View)
/source/blender/python/api2_2x/Draw.h (+306, -0) (View)
/source/blender/python/api2_2x/EXPP_interface.c (+130, -0) (View)
/source/blender/python/api2_2x/EXPP_interface.h (+35, -0) (View)
/source/blender/python/api2_2x/Window.c (+200, -0) (View)
/source/blender/python/api2_2x/Window.h (+129, -0) (View)
/source/blender/python/api2_2x/BGL.h (+424, -0) (View)
/source/blender/python/api2_2x/Draw.c (+741, -0) (View)
/source/blender/python/api2_2x/Draw.h (+306, -0) (View)
/source/blender/python/api2_2x/EXPP_interface.c (+130, -0) (View)
/source/blender/python/api2_2x/EXPP_interface.h (+35, -0) (View)
/source/blender/python/api2_2x/Window.c (+200, -0) (View)
/source/blender/python/api2_2x/Window.h (+129, -0) (View)
10 Modified Paths:
/source/blender/python/api2_2x/Blender.c (+5, -2) (Diff)
/source/blender/python/api2_2x/Camera.c (+186, -585) (Diff)
/source/blender/python/api2_2x/Camera.h (+0, -2) (Diff)
/source/blender/python/api2_2x/gen_utils.c (+13, -2) (Diff)
/source/blender/python/api2_2x/gen_utils.h (+5, -3) (Diff)
/source/blender/python/api2_2x/Image.c (+132, -248) (Diff)
/source/blender/python/api2_2x/Image.h (+7, -8) (Diff)
/source/blender/python/api2_2x/Lamp.c (+529, -918) (Diff)
/source/blender/python/api2_2x/Lamp.h (+44, -34) (Diff)
/source/blender/python/api2_2x/modules.h (+8, -8) (Diff)
/source/blender/python/api2_2x/Camera.c (+186, -585) (Diff)
/source/blender/python/api2_2x/Camera.h (+0, -2) (Diff)
/source/blender/python/api2_2x/gen_utils.c (+13, -2) (Diff)
/source/blender/python/api2_2x/gen_utils.h (+5, -3) (Diff)
/source/blender/python/api2_2x/Image.c (+132, -248) (Diff)
/source/blender/python/api2_2x/Image.h (+7, -8) (Diff)
/source/blender/python/api2_2x/Lamp.c (+529, -918) (Diff)
/source/blender/python/api2_2x/Lamp.h (+44, -34) (Diff)
/source/blender/python/api2_2x/modules.h (+8, -8) (Diff)