Blender Git Commit Log

Git Commits -> Revision b2d752d

Revision b2d752d by Joseph Eagar (master)
May 11, 2011, 20:37 (GMT)
add back ghost/guardedalloc from trunk

Commit Details:

Full Hash: b2d752d020eff85963383c2c2e49779e99cd60fc
SVN Revision: 36623
Parent Commit: ee7b7a5
Lines Changed: +30924, -0

110 Added Paths:

/intern/ghost/CMakeLists.txt (+173, -0) (View)
/intern/ghost/doc/ghost_interface.cfg (+626, -0) (View)
/intern/ghost/GHOST_C-api.h (+864, -0) (View)
/intern/ghost/GHOST_IEvent.h (+97, -0) (View)
/intern/ghost/GHOST_IEventConsumer.h (+75, -0) (View)
/intern/ghost/GHOST_ISystem.h (+410, -0) (View)
/intern/ghost/GHOST_ISystemPaths.h (+103, -0) (View)
/intern/ghost/GHOST_ITimerTask.h (+96, -0) (View)
/intern/ghost/GHOST_IWindow.h (+317, -0) (View)
/intern/ghost/GHOST_Path-api.h (+87, -0) (View)
/intern/ghost/GHOST_Rect.h (+259, -0) (View)
/intern/ghost/GHOST_Types.h (+516, -0) (View)
/intern/ghost/intern/GHOST_Buttons.cpp (+79, -0) (View)
/intern/ghost/intern/GHOST_Buttons.h (+79, -0) (View)
/intern/ghost/intern/GHOST_C-api.cpp (+885, -0) (View)
/intern/ghost/intern/GHOST_CallbackEventConsumer.cpp (+57, -0) (View)
/intern/ghost/intern/GHOST_CallbackEventConsumer.h (+80, -0) (View)
/intern/ghost/intern/GHOST_Debug.h (+70, -0) (View)
/intern/ghost/intern/GHOST_DisplayManager.cpp (+218, -0) (View)
/intern/ghost/intern/GHOST_DisplayManager.h (+134, -0) (View)
/intern/ghost/intern/GHOST_DisplayManagerCarbon.cpp (+179, -0) (View)
/intern/ghost/intern/GHOST_DisplayManagerCarbon.h (+117, -0) (View)
/intern/ghost/intern/GHOST_DisplayManagerCocoa.h (+107, -0) (View)
/intern/ghost/intern/GHOST_DisplayManagerCocoa.mm (+168, -0) (View)
/intern/ghost/intern/GHOST_DisplayManagerWin32.cpp (+182, -0) (View)
/intern/ghost/intern/GHOST_DisplayManagerWin32.h (+102, -0) (View)
/intern/ghost/intern/GHOST_DisplayManagerX11.cpp (+126, -0) (View)
/intern/ghost/intern/GHOST_DisplayManagerX11.h (+124, -0) (View)
/intern/ghost/intern/GHOST_DropTargetWin32.cpp (+431, -0) (View)
/intern/ghost/intern/GHOST_DropTargetWin32.h (+160, -0) (View)
/intern/ghost/intern/GHOST_Event.h (+108, -0) (View)
/intern/ghost/intern/GHOST_EventButton.h (+68, -0) (View)
/intern/ghost/intern/GHOST_EventCursor.h (+69, -0) (View)
/intern/ghost/intern/GHOST_EventDragnDrop.h (+131, -0) (View)
/intern/ghost/intern/GHOST_EventKey.h (+82, -0) (View)
/intern/ghost/intern/GHOST_EventManager.cpp (+268, -0) (View)
/intern/ghost/intern/GHOST_EventManager.h (+175, -0) (View)
/intern/ghost/intern/GHOST_EventNDOF.h (+62, -0) (View)
/intern/ghost/intern/GHOST_EventPrinter.cpp (+347, -0) (View)
/intern/ghost/intern/GHOST_EventPrinter.h (+65, -0) (View)
/intern/ghost/intern/GHOST_EventString.h (+67, -0) (View)
/intern/ghost/intern/GHOST_EventTrackpad.h (+72, -0) (View)
/intern/ghost/intern/GHOST_EventWheel.h (+69, -0) (View)
/intern/ghost/intern/GHOST_ISystem.cpp (+108, -0) (View)
/intern/ghost/intern/GHOST_ISystemPaths.cpp (+109, -0) (View)
/intern/ghost/intern/GHOST_ModifierKeys.cpp (+140, -0) (View)
/intern/ghost/intern/GHOST_ModifierKeys.h (+105, -0) (View)
/intern/ghost/intern/GHOST_NDOFManager.cpp (+132, -0) (View)
/intern/ghost/intern/GHOST_NDOFManager.h (+57, -0) (View)
/intern/ghost/intern/GHOST_Path-api.cpp (+74, -0) (View)
/intern/ghost/intern/GHOST_Rect.cpp (+142, -0) (View)
/intern/ghost/intern/GHOST_System.cpp (+357, -0) (View)
/intern/ghost/intern/GHOST_System.h (+373, -0) (View)
/intern/ghost/intern/GHOST_SystemCarbon.cpp (+1221, -0) (View)
/intern/ghost/intern/GHOST_SystemCarbon.h (+290, -0) (View)
/intern/ghost/intern/GHOST_SystemCocoa.h (+306, -0) (View)
/intern/ghost/intern/GHOST_SystemCocoa.mm (+1798, -0) (View)
/intern/ghost/intern/GHOST_SystemPaths.h (+84, -0) (View)
/intern/ghost/intern/GHOST_SystemPathsCarbon.cpp (+88, -0) (View)
/intern/ghost/intern/GHOST_SystemPathsCarbon.h (+92, -0) (View)
/intern/ghost/intern/GHOST_SystemPathsCocoa.h (+84, -0) (View)
/intern/ghost/intern/GHOST_SystemPathsCocoa.mm (+121, -0) (View)
/intern/ghost/intern/GHOST_SystemPathsWin32.cpp (+115, -0) (View)
/intern/ghost/intern/GHOST_SystemPathsWin32.h (+91, -0) (View)
/intern/ghost/intern/GHOST_SystemPathsX11.cpp (+85, -0) (View)
/intern/ghost/intern/GHOST_SystemPathsX11.h (+82, -0) (View)
/intern/ghost/intern/GHOST_SystemWin32.cpp (+1257, -0) (View)
/intern/ghost/intern/GHOST_SystemWin32.h (+489, -0) (View)
/intern/ghost/intern/GHOST_SystemX11.cpp (+1497, -0) (View)
/intern/ghost/intern/GHOST_SystemX11.h (+312, -0) (View)
/intern/ghost/intern/GHOST_TaskbarWin32.h (+76, -0) (View)
/intern/ghost/intern/GHOST_TimerManager.cpp (+165, -0) (View)
/intern/ghost/intern/GHOST_TimerManager.h (+126, -0) (View)
/intern/ghost/intern/GHOST_TimerTask.h (+189, -0) (View)
/intern/ghost/intern/GHOST_Window.cpp (+189, -0) (View)
/intern/ghost/intern/GHOST_Window.h (+395, -0) (View)
/intern/ghost/intern/GHOST_WindowCarbon.cpp (+748, -0) (View)
/intern/ghost/intern/GHOST_WindowCarbon.h (+313, -0) (View)
/intern/ghost/intern/GHOST_WindowCocoa.h (+309, -0) (View)
/intern/ghost/intern/GHOST_WindowCocoa.mm (+1352, -0) (View)
/intern/ghost/intern/GHOST_WindowManager.cpp (+220, -0) (View)
/intern/ghost/intern/GHOST_WindowManager.h (+174, -0) (View)
/intern/ghost/intern/GHOST_WindowWin32.cpp (+1351, -0) (View)
/intern/ghost/intern/GHOST_WindowWin32.h (+400, -0) (View)
/intern/ghost/intern/GHOST_WindowX11.cpp (+1598, -0) (View)
/intern/ghost/intern/GHOST_WindowX11.h (+370, -0) (View)
/intern/ghost/SConscript (+70, -0) (View)
/intern/ghost/test/gears/GHOST_C-Test.c (+557, -0) (View)
/intern/ghost/test/gears/GHOST_Test.cpp (+754, -0) (View)
/intern/ghost/test/multitest/Basic.c (+64, -0) (View)
/intern/ghost/test/multitest/Basic.h (+42, -0) (View)
/intern/ghost/test/multitest/EventToBuf.c (+233, -0) (View)
/intern/ghost/test/multitest/EventToBuf.h (+31, -0) (View)
/intern/ghost/test/multitest/GL.h (+41, -0) (View)
/intern/ghost/test/multitest/MultiTest.c (+859, -0) (View)
/intern/ghost/test/multitest/ScrollBar.c (+142, -0) (View)
/intern/ghost/test/multitest/ScrollBar.h (+54, -0) (View)
/intern/ghost/test/multitest/Util.c (+70, -0) (View)
/intern/ghost/test/multitest/Util.h (+33, -0) (View)
/intern/ghost/test/multitest/WindowData.c (+56, -0) (View)
/intern/ghost/test/multitest/WindowData.h (+37, -0) (View)
/intern/guardedalloc/CMakeLists.txt (+52, -0) (View)
/intern/guardedalloc/cpp/mallocn.cpp (+46, -0) (View)
/intern/guardedalloc/intern/mallocn.c (+879, -0) (View)
/intern/guardedalloc/intern/mmap_win.c (+273, -0) (View)
/intern/guardedalloc/MEM_guardedalloc.h (+177, -0) (View)
/intern/guardedalloc/MEM_sys_types.h (+131, -0) (View)
/intern/guardedalloc/mmap_win.h (+59, -0) (View)
/intern/guardedalloc/SConscript (+15, -0) (View)
/intern/guardedalloc/test/simpletest/memtest.c (+161, -0) (View)
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021