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
2018-12-01Revert "Win32: Use the nicer looking blender-drawn confirmation message box ↵Antony Ryakiotakis
when" This reverts commit 60d6eb0b5d578eb02c5f1f31cb51a6cbeea6ee6f. There is already a full patch (D3118) by brecht for this, will leave it up to him.
2018-11-30Win32: Use the nicer looking blender-drawn confirmation message box whenAntony Ryakiotakis
quitting with unsaved changes, instead of an ugly messagebox
2018-11-25Merge branch 'master' into blender2.8Brecht Van Lommel
2018-11-25Fix X11 tablet pen and eraser distinction being wrong in some cases.Brecht Van Lommel
This extends the earlier fix to use the latest logic from Wine's wintab.c, to better handle eraser detection.
2018-11-25Merge branch 'master' into blender2.8Campbell Barton
2018-11-24Fix penpressure for tablets that use libinput on linuxJens Verwiebe
2018-11-14Merge branch 'master' into blender2.8Campbell Barton
2018-11-14Cleanup: comment block tabsCampbell Barton
2018-10-09Merge branch 'master' into blender2.8Campbell Barton
2018-10-09Cleanup: spellingCampbell Barton
2018-10-01Fix T56909: wrong interface scale on macOS 10.14, when using 10.14 SDK.Brecht Van Lommel
This does not affect existing releases as far as I can tell, only new builds using the new SDK have the problem.
2018-09-30Fix T56909: wrong interface scale on macOS 10.14, when using 10.14 SDK.Brecht Van Lommel
This does not affect existing releases as far as I can tell, only new builds using the new SDK have the problem.
2018-09-27Merge branch 'master' into blender2.8Sergey Sharybin
2018-09-27Tests: add --no-window-focus to open window without focus.Brecht Van Lommel
This is useful to run OpenGL tests while continuing to do other tasks without windows constantly popping up in the foreground.
2018-09-02Cleanup: comment blocksCampbell Barton
2018-09-02Cleanup: comment blocksCampbell Barton
2018-08-31Merge branch 'master' into blender2.8Brecht Van Lommel
2018-08-31Fix T56618: crash when typing certain characters on Linux.Brecht Van Lommel
2018-08-28Merge branch 'master' into blender2.8Brecht Van Lommel
2018-08-27Fix pen tablet stuck on Windows for some non-Wacom tablets.Colby Klein
Differential Revision: https://developer.blender.org/D3573
2018-08-14GHOST: Make win32 errors more readable on some driversClément Foucault
2018-08-08Merge branch 'master' into blender2.8Campbell Barton
2018-08-08Ghost/X11: correct function signatureCampbell Barton
2018-08-08Merge branch 'master' into blender2.8Campbell Barton
2018-08-08Cleanup: use static variablesCampbell Barton
2018-08-07macOS GHOST: use non-deprecated functions for coordinatesArto Kitula
2018-08-07Fix T54799: NDOF events not dispatched on windows.mano-wii
Caused by commit rB785e8a636a29
2018-07-27GHOST: Fix SDL backend.Clément Foucault
We use a hidden window for each offscreen context we need. On X11 (linux) it does not show any other windows in the OS task bar but it might be the case on other operating systems (untested).
2018-07-20Fix WITH_HEADLESS build.Brecht Van Lommel
2018-07-16Merge branch 'master' into blender2.8Sergey Sharybin
2018-07-16Ghost: Fix memory leak happening with keyboard mapping accessSergey Sharybin
So far only noticed system de-initialization doesn't perform full object free. So rather harmless but yet stupid.
2018-07-10GHOST/Windows: don't prefer swap copy method.Brecht Van Lommel
This is no longer needed with the new offscreen draw method, so use whatever is default and hopefully fastest. Fixes console warnings in some setups that don't have swap copy.
2018-07-10Merge branch 'master' into blender2.8Sergey Sharybin
2018-07-10GHOST: Fix memory leak in X11 DPI querySergey Sharybin
The X resource database is to be explicitly destroyed. This fixes 46 bytes leak per every window DPI query (which happens a lot on window move/resize and even on areas resize). Unfortunately, this does not fully fix the leak since the known leak: https://bugs.freedesktop.org/show_bug.cgi?id=94604
2018-07-03Revert "GHOST: Delay opengl context initialization"Clément Foucault
This reverts commit 128926a41b368e166af63515370d9c9367e3dda2.
2018-07-03Revert "GHOST: WGL: Delay context initialization for offscreen contexts."Clément Foucault
This reverts commit 800c3c5ca581d5427c4270c60f022c3ccdd8b312. # Conflicts: # intern/ghost/intern/GHOST_ContextWGL.cpp
2018-07-03Revert "GHOST: Fix uninitialized var"Clément Foucault
This reverts commit 27b673402228aeede8369d99bf64f3da21541058.
2018-07-03Revert "GHOST: Fix uninitialized values."Clément Foucault
This reverts commit aca403c819c4fc9e1e7197bbe3027d43d114bfd6.
2018-06-29Merge branch 'master' into blender2.8Campbell Barton
2018-06-29Cleanup: trailing newlinesCampbell Barton
2018-06-23Ghost: Fix F12 render on windows.Ray Molenkamp
createOffscreenContext left the new context bound to the calling thread causing a race condition with the background thread doing the actual rendering. see T55555 for a more detailed description of the problem. this patch changes the behavior of createOffscreenContext to restore the context to the calling context. Reviewers: fclem Differential Revision: https://developer.blender.org/D3499
2018-06-19Ghost: Fix offline OGL render on windows.Ray Molenkamp
rBe0c088f8fb5a introduced offline rendering support on windows, sadly it was trying to use the desktop window for getting a context, which given SetPixelFormat can only be called once for any given HDC was an unfortunate choice. This patch uses a temporary hidden window for getting the opengl context. Reviewers: mano-wii Differential Revision: https://developer.blender.org/D3481
2018-06-14Revert "GHOST: GLX: Remove XInitThreads"Clément Foucault
This reverts commit 7529690df38ced314d59af3b10c610e3fd56c807. I tried to put manually add threading protection to GHOST around Xlib calls but that did not fix the crashes. So reverting that for now despite the performance implication on some system.
2018-06-11GHOST: Fix uninitialized values.fclem
2018-06-11GHOST: GLX: Remove XInitThreadsClément Foucault
This was needed because we were sharing opengl contexts across multiple threads. With the recent refactor this should be no longer needed.
2018-06-11GHOST: Fix uninitialized varClément Foucault
Was causing crash on startup.
2018-06-11GHOST: WGL: Delay context initialization for offscreen contexts.fclem
Same as 128926a41b368e166af63515370d9c9367e3dda2 but for windows.
2018-06-11GHOST: Delay opengl context initializationClément Foucault
This way they can be init in their owner thread. Contexts should not be shared accross threads. Once you make a context active on a thread it is owned by the thread. This commit only have the GLX backend updated but should not break orther platform.
2018-06-09Merge branch 'master' into blender2.8Campbell Barton
2018-06-09GHOST/X11: Print the keycode w/ debug enabledCampbell Barton