Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-07Merge branch 'master' into soc-2014-viewport_contextsoc-2014-viewport_contextJason Wilkins
2014-10-05OSX/Ghost: little code cleanupJens Verwiebe
2014-09-24OSX: ensure windows are restored at their saved position,Jens Verwiebe
meaning here we need to take docksize into account
2014-09-01Minor fix in GLX logicAntony Riakiotakis
2014-09-01Merge branch 'master' into soc-2014-viewport_contextAntony Riakiotakis
Also fix scons issues with SDL. There is still a linking problem somewhere but i expect this is an issue in master as well. Conflicts: intern/cycles/SConscript intern/ghost/CMakeLists.txt intern/ghost/intern/GHOST_WindowX11.cpp source/blender/nodes/CMakeLists.txt
2014-08-27Cleanup: remove _DEBUG define usageCampbell Barton
2014-08-21CleanupCampbell Barton
2014-08-18Fix T39630: Mouse Wheel doesn't detect Multi Window FocusSergey Sharybin
2014-08-17CleanupCampbell Barton
2014-08-16CommentsCampbell Barton
2014-08-13OSX: fix paranthesis in last commitJens Verwiebe
2014-08-13OSX: add a fix for lion_fs loosing handles after calling fs from key ↵Jens Verwiebe
shortcut, also reenabled lion_fs for OSX >= 10.9 again
2014-08-13Fix T40717: Screen does not update while scrolling or zooming with touchpad ↵Sergey Sharybin
on a laptop This is rather workaround solution for now, which seems to work and it's not that huge to maintain (one liner apart from the comment). Idea is to make sure PeekMessage peeks the message when window proc receives WM_MOUSEWHEEL (some touchpad drivers seems to swallow the messages making it so PeekMessage doesn't get anything).
2014-08-13SpellingCampbell Barton
2014-08-13SpellingCampbell Barton
2014-08-12Stupid MSVC replaces tabs to spaces spontaneously :SSergey Sharybin
2014-08-12Console detection now works reliably when starting blender-app directlySergey Sharybin
2014-08-12SpellingCampbell Barton
2014-08-12Fix uninitialized memory useCampbell Barton
2014-08-11Pie Menus C code backend.Antony Riakiotakis
This commit merges the code in the pie-menu branch. As per decisions taken the last few days, there are no pie menus included and there will be an official add-on including overrides of some keys with pie menus. However, people will now be able to use the new code in python. Full Documentation is in http://wiki.blender.org/index.php/Dev:Ref/ Thanks: Campbell Barton, Dalai Felinto and Ton Roosendaal for the code review and design comments Jonathan Williamson, Pawel Lyczkowski, Pablo Vazquez among others for suggestions during the development. Special Thanks to Sean Olson, for his support, suggestions, testing and merciless bugging so that I would finish the pie menu code. Without him we wouldn't be here. Also to the rest of the developers of the original python add-on, Patrick Moore and Dan Eicher and finally to Matt Ebb, who did the research and first implementation and whose code I used to get started.
2014-08-07Tweaks to the recent wrapper on windowsSergey Sharybin
- Forgot to handle command line arguments - Because of the fact we need to be able to use stdout and stderr we need to use regular console application for the wrapper. - Because of using regular application for the wrapper we need to check forparent PID in the isStartedFromCommandPrompt(). I really hope it's not gonna to become any more complicated.
2014-08-07Cleanup: Remove special code for Visual Studio 2008.Thomas Dinges
Goodbye VC2008, it has been a pleasure (more or less) :D SCons / CMake cleaenup will follow. Differential Revision: https://developer.blender.org/D715
2014-08-05SpellingCampbell Barton
2014-08-03GLX and WGL should now build when using WITH_SYSTEM_GLEW=ON or WITH_GLEW_ES=OFFJason Wilkins
2014-08-02made GLEW_CHK extern again (ContextWGL wasn't using it and for some reason I ↵Jason Wilkins
assumed the other contexts didn't need it either)
2014-08-02Merge branch 'master' into soc-2014-viewport_contextCampbell Barton
Conflicts: intern/ghost/intern/GHOST_WindowWin32.cpp
2014-08-02SpellingCampbell Barton
2014-08-02Remove GLEW_CHK - its not definedCampbell Barton
2014-07-31Made glew-mx more easily extendable by creating a MXContext struct to put ↵Jason Wilkins
additional data in. Renamed the mx functions to more closely match their analogs in other systems. mxCreateContext now also calls glewInit
2014-07-29Add c++ guarded alloc define to GHOST_ContextCampbell Barton
2014-07-29Warning cleanup and remove unused functionCampbell Barton
2014-07-29Merge branch 'soc-2014-viewport_context' of git.blender.org:blender into ↵Jason Wilkins
soc-2014-viewport_context
2014-07-29added ifdefs for WITH_GLEW_MX to ContextWGLJason Wilkins
2014-07-29fixed some errors caught by gcc and clang and added ifdefs for WITH_GLEW_MXJason Wilkins
2014-07-29fixes to some misplaced ifdefs in GHOST_ContextGLXJason Wilkins
2014-07-28Fix for tests in X11Campbell Barton
2014-07-28Support for building without glew-mx on X11Campbell Barton
2014-07-27Merge branch 'soc-2014-viewport_context' of git.blender.org:blender into ↵Jason Wilkins
soc-2014-viewport_context
2014-07-27fix for 64-bit windowsJason Wilkins
2014-07-27Merge branch 'master' into soc-2014-viewport_contextCampbell Barton
Conflicts: intern/ghost/intern/GHOST_SystemWin32.cpp intern/ghost/intern/GHOST_WindowWin32.cpp
2014-07-27Style cleanup GHOST/Win32Campbell Barton
2014-07-26OSX/GHOST: Using lion_fullscreen suffers from an uncovered problem when ↵Jens Verwiebe
called from operator, disabled for now so ALT-F11 uses old behavior again. OSX menu and CTL-CMD-F still work as lion fullscreen as well as right-upper corner fs window-icon - We must investigate here why double promotion happens from op calls ( dispatchEvents on redraw cause duplicated calls here ) - The actual op calls cause fs to be in a wrong state, so also mousehandles fail and CTX_wm_window(C) is not valid. - similar problem is with quit op, which does not close the app right ( totblocks ) - i would prefer to try getting direct os function call here rather
2014-07-26some cleanup of SDL contextJason Wilkins
2014-07-26Style cleanup & no need for static vars hereCampbell Barton
2014-07-26Initial GHOST_ContextSDLCampbell Barton
Works with multiple windows & shared context, but may need some further changes to be considered finished.
2014-07-26Cleanup: minor editsCampbell Barton
2014-07-26SCons support for Ghost context refactorJason Wilkins
Tested on OSX Only tested the default options and did not implement code needed to link with EGL, but that can be done later
2014-07-26there is no reason to not release native handles on OSX, so ↵Jason Wilkins
releaseNativeHandles should always succeed
2014-07-24Cleanup: whitespace, also only keep file descriptions in cpp filesCampbell Barton
2014-07-24Remove `_` from _CASE_CODE_RETURN_STR, keep that for internal definesCampbell Barton