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
2016-02-07Cleanup: line widthCampbell Barton
2016-01-28Cleanup: warnings & styleCampbell Barton
2016-01-27Tracking: Remove unfinished code from automation experimentsSergey Sharybin
2016-01-27Tracking: Update plane track solution after joining point tracksSergey Sharybin
Was in fact long term TODO, it all should work fine now.
2016-01-27Tracking: De-duplicate code for tracking a sequence and single frameSergey Sharybin
It was not so much better from performance point of view to have a special case here and it only made us having two entry points to the same things, which was rather annoying. Should no be functional changes for artists.
2016-01-27Tracking: Solve some TODOsSergey Sharybin
Should not be functional changes.
2016-01-27Tracking: Remove code which was dead for quite some time nowSergey Sharybin
2016-01-27Tracking: Cleanup, de-duplicate some codeSergey Sharybin
2016-01-24Fix yet another case broken after glLineWidth() changesSergey Sharybin
Original patch didn't have any tests or what? =\
2016-01-23OpenGL: call glLineWidth less oftenMike Erwin
Each LINES draw call is now responsible for its own line width. No need to set it back to its 1.0 default after every draw. This eliminates half our calls to glLineWidth , similar to last week’s work on glPointSize.
2016-01-22OpenGL: cleanupMike Erwin
- LINE_STRIP to LINES when only drawing one - group state changes for easier reading - general cleanup
2016-01-18Cleanup: styleCampbell Barton
2016-01-16OpenGL: fixes related to GL_POINTSMike Erwin
I put all usage of GL_POINTS under the microscope. Fixed problems & optimized a couple of spots. - reduce calls to glPointSize by about 50% - draw selected & unselected vertices together for UV editor & EditMesh - draw initial gpencil stroke point the proper size - a few other smaller fixes New policy: each GL_POINTS draw call needs to set its desired point size. This eliminates half our calls to glPointSize (setting it back to its 1.0 default after every draw).
2016-01-16Cleanup: styleCampbell Barton
2016-01-15Tracking: Make plane track sliding aware of closest mouseSergey Sharybin
Also made threshold aware of zoom, so now it's always 12px threshold regardless of how much you're zoomed in.
2016-01-15Tracking: Split tracking_ops into smaller filesSergey Sharybin
The file started to be rather really huge and difficult to follow. Should be no functional changes.
2016-01-15Tracking: Cleanup, use more strict code styleSergey Sharybin
Should be no functional changes.
2016-01-15Tracking: Use sliding zone which is closer to the mouseSergey Sharybin
Previously it was simplier logic which only checked whether the mouse is inside of some area around sliding zone, which was resulting in wrong sliding zone used when zoomed out.
2016-01-04Remove SCons building systemSergey Sharybin
While SCons building system was serving us really good for ages it's no longer having much attention by the developers and started to become quite a difficult task to maintain. What's even worse -- there started to be quite serious divergence between SCons and CMake which was only accumulating over the releases now. The fact that none of the active developers are really using SCons and that our main studio is also using CMake spotting bugs in the SCons builds became quite a difficult task and we aren't always spotting them in time. Meanwhile CMake became really mature building system which is available on every platform we support and arguably it's also easier and more robust to use. This commit includes: - Removal of actual SCons building system - Removal of SCons git submodule - Removal of documentation which is stored in the sources and covers SCons - Tweaks to the buildbot master to stop using SCons submodule (this change requires deploying to the server) - Tweaks to the install dependencies script to skip installing or mentioning SCons building system - Tweaks to various helper scripts to avoid mention of SCons folders/files as well Reviewers: mont29, dingto, dfelinto, lukastoenne, lukasstockner97, brecht, Severin, merwin, aligorith, psy-fi, campbellbarton, juicyfruit Reviewed By: campbellbarton, juicyfruit Differential Revision: https://developer.blender.org/D1680
2015-12-21Cleanup: warnings (msvc)Campbell Barton
Part of patch D1670 by @LazyDodo
2015-12-06OpenGL: rename simple shader to basic shader.Brecht Van Lommel
2015-12-06OpenGL: use simple shader for texture drawing in a few places.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D1645
2015-12-01Cleanup: use more logical names for View3D.aroundCampbell Barton
D1651 (own patch)
2015-11-28Cleanup: 'area' vs 'region'Julian Eisel
Apparently this is the result of some sloppiness during 2.5 project and since then it confused people who were trying to understand the area-region relation (myself included). Sorry if this causes merge conflicts for anyone, but at some point we really had to do it :/
2015-11-28OpenGL: remove unnecessarily paranoid bound texture preservation.Brecht Van Lommel
2015-11-28OpenGL: assume GL_TEXTURE_ENV_MODE GL_MODULATE is the default state.Brecht Van Lommel
2015-11-23Cleanup: use `rna_enum_` prefix for RNA enumsCampbell Barton
Definitions could shadow local vars.
2015-11-16Cleanup: typosCampbell Barton
2015-11-09Cleanup: avoid incrementing/decrementing id->us outside of BKE_library.Bastien Montagne
We have callbacks for that, they also do some checks and help ensure things are done correctly. Only place where this is assumed not true is blenloader (since here we may affect refcount of library IDs as well...).
2015-10-08Cleanup: typosCampbell Barton
2015-10-06RNA: Add check_existing arg to other load() funcsCampbell Barton
Note: movieclip was doing this already by default, now split into 2 functions, matching image behavior.
2015-10-05Cleanup: pass pointer to rctfCampbell Barton
2015-09-20Cleanup: Use new vector transform functionsJulian Eisel
2015-08-23This commit makes it possible to select the sort mode whenever we invoke an ↵Thomas Beck
operator. It's needed especially for the menu entry "recover auto save" where you'd like to have the files sorted by date most of the time but it could be useful in other places too. There should be no functional change in other areas, I just added the missing parameter (FILE_SORT_ALPHA). Was a request from @sebastian_k at #BCon13, so at least one guy needs it ;) Reviewers: mont29 Reviewed By: mont29 Subscribers: sebastian_k Differential Revision: https://developer.blender.org/D1476
2015-08-18Refactor translation code out of blenfontCampbell Barton
- Add blentranslation `BLT_*` module. - moved & split `BLF_translation.h` into (`BLT_translation.h`, `BLT_lang.h`). - moved `BLF_*_unifont` functions from `blf_translation.c` to new source file `blf_font_i18n.c`.
2015-08-04SCons: Fix for really nasty bug with polluting configuration environmentSergey Sharybin
The issue was caused by the following construction: def = env['SOMETHING'] defs.append('SOMETHING_MORE') Since first assignment was actually referencing environment option it was totally polluted hawing weird and wonderful side effects on all other areas of Blender.
2015-07-01Cleanup: Use bool instead of intJulian Eisel
2015-06-12Support metadata display in clip editorAntony Riakiotakis
2015-06-11Masking: Numpad-. now centers view to selected control pointsSergey Sharybin
Currently feather points are being ignored, it could be improved in the future.
2015-06-10Picky edits to previous commit.Bastien Montagne
2015-06-10Fix T45017: Crash when running 'track markers' operator with no clip loaded.Bastien Montagne
CLIP_OT_track_markers was missing a poll callback.
2015-05-18Fix T44752: Clip Editor doesn't respect ColorSpace setting when playback ↵Sergey Sharybin
after Prefetch
2015-05-13Clip editor: Selecting curves in graph view always extends tracks selectionSergey Sharybin
Was actually an old TODO, hopefully solved now in a way so everyone is happy.
2015-05-13Clip editor: Deselecting with shift-LMB does not work in graph viewSergey Sharybin
2015-05-13Fix T44683: Unable to mute movie clip when using stabilized displaySergey Sharybin
2015-05-08Cleanup: use r_* prefix for return argsCampbell Barton
2015-04-30Cleanup: typosCampbell Barton
2015-04-27Cleanup: rename GRAB_POINTER -> GRAB_CURSORCampbell Barton
Term pointer is overloaded already.
2015-04-22Tracking: Show plane track outline if image failed to loadSergey Sharybin
2015-04-22Tracking: Some more code de-duplicationSergey Sharybin