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
2015-09-14Fix T46106: Hidden socket w/ node link from Py APICampbell Barton
Internally this was OK, but an invalid state from the users POV.
2015-09-14Fix T45699: own regression w/ looptri updateCampbell Barton
Baking was still checking tessface in parts.
2015-09-14Alternate fix for offscreen render w/o npotCampbell Barton
Store the original texture size, since its needed for reading pixels and passing to glViewport.
2015-09-14Revert "Fix crash in opengl render caused..."Campbell Barton
This reverts commit d64b1221c67846bb954855a19c8dd093b83adc8e. While this prevents the crash, offscreen renders still aren't working right.
2015-09-14Fix crash in opengl render caused by gfx being blacklisted forJoe Eagar
non-power-of-2 texture support. Note that all I did was pass the correct width/height into glReadPixels; the result may not be the same as if non2 textures were enabled.
2015-09-13Fix T43033: VideoTexture module repeated loading of images causes memory leakPorteries Tristan
Fix proposal for memory leak caused by png decoding in videoFFmpeg.cpp T43033 Author: Ulysse MARTIN (youle) Reviewers: dfelinto, ben2610, moguri, lordloki, panzergame Reviewed By: lordloki, panzergame Subscribers: panzergame, lordloki Projects: #game_engine Differential Revision: https://developer.blender.org/D1396
2015-09-13Cleanup: spellingCampbell Barton
2015-09-13Fix T46089: Text from Effect Strip is invisible in VSE Preview.Bastien Montagne
Deviding two ints together never yields a float... Also, logic of various proxies size corrections was quite broken. Now we should always get the same (relative) size of text whatever proxy setting/render scale is chosen.
2015-09-13Fix T46091: Video Sequencer rewrite *.png to _.pngBastien Montagne
Own mistake when adding filename safety check...
2015-09-12Cleanup: Quiet some picky warning from Coverity.Bastien Montagne
2015-09-11File Bookmarks: use volume label on Windows, and set name of recent entriesBastien Montagne
from system/user bookmarks' name if possible. Volume label on Windows was request from T46083, makes Blender more in line with 'common' filebrowsing on this OS. And now, we automatically set name of recent entries from the bookmarks, if path can be found there, more consistent too from user PoV.
2015-09-11Fix T45755: Bad NLA text alignmentCampbell Barton
2015-09-11Fix T45579: Custom Hotkeys Dissapear.Bastien Montagne
Due to how we find kmi to remove and kmi to add when patching final keymap with user defines, we could actually end up with same kmi for both, see comments in code for details. Note that it may be a good idea to make user-defined customizations specific to a given base keymap, instead of applying them blindly?
2015-09-11Fix T45165, OSX quicktime fails with diacriticals in filename.Howard Trickey
Since Blender internal strings are UTF8, changed the initialization of the string to use initWithUTF8String from default encoding. Fix worked on OSX 10.5.5.
2015-09-11Fix memory leaks in collada importCampbell Barton
2015-09-11Fix T46074: Collada crashes importing animationCampbell Barton
double-frees and freeing memory already inserted into Blender.
2015-09-11Fix T46058: Modifiers on curve shows different results on OpenGL and cycles ↵Sergey Sharybin
render Not really ideal fix, but should make Cycles behave same as BI. For some details please refer to inline comment.
2015-09-10Fix T46070: Content of folders with a .blend extension aren't listed until ↵Bastien Montagne
filtering is disabled. Own stupid mistake somewhere during filebrowser revamp...
2015-09-10UI: increase threshold for color-band selectCampbell Barton
Was quite small, especially with hi-dpi displays. Increase to 50 since theres no benefit to not select when clicking.
2015-09-10Fix T46048: Custom properties UI redraw issueCampbell Barton
Adding/removing custom properties didn't refresh elsewhere in the UI.
2015-09-10PyAPI: add an update method for propertiesCampbell Barton
This is called when modifying an RNA property, however it can be useful to be able to make a properties update callback run without having to change it.
2015-09-10Show correct syntax for id-propertiesCampbell Barton
2015-09-10Correction to last commitJulian Eisel
Did a fullscreen check in a function that should only be called in fullscreen mode. Not a big deal, but bad API practice.
2015-09-10Fix T46069: Crash when saving a render with non-fullscreen file editorJulian Eisel
IMAGE_OT_save_as assumes that active area is an Image Editor and the logic that should return to image editor after saving didn't run after fullscreen was manually exited.
2015-09-10Fix T44344: paint bleed fails in perspective viewCampbell Barton
2015-09-10Fix leak in ContextGLXCampbell Barton
2015-09-10Fix T46067: ShrinkWrap + Threaded depsgraph crashCampbell Barton
Note that allocating DM arrays from an editmesh is currently not threadsafe, however even if were resolved, its more efficient to avoid having to do it in the first place.
2015-09-10Fix T46064: Sequencer view-selected does nothingCampbell Barton
2015-09-10Fix incorrect textbox use w/ scaled fontsCampbell Barton
2015-09-09Fix broken logic in new FileBrowser caching of entries.Bastien Montagne
We were still using main borwser's FileDirEntryArr to own memory of entries currently in cache. That was OK for common caching operation, but if was not released when clearing cache! Nothing dramatic, since that was cleared too, but less often, so e.g. by changing sorting options you could pile up more and more no-more-used entries there... Anyway, there is no reason to do that, much more sound and clean to keep everything cache-related in dedicated FileDirEntryCache struct. This means main borwser's FileDirEntryArr is now always expected to not store any actual entry! Note: this can probably be cleaned up a bit more, but would wait after 2.76 for this!
2015-09-09bgl: fix implicit overflowCampbell Barton
2015-09-09bgl: disable some defines not found in mesa 7Campbell Barton
2015-09-09Fix T45880: Texture Paint mask random angle failsCampbell Barton
Random mask failed when the paint brush didn't have random angle enabled too.
2015-09-09Fixes T46060 Regenerated the full list of constants we should exposeMartijn Berger
2015-09-09Add button for H.264 lossless outputJörg Müller
2015-09-09Fix crash viewing passes w/ scopesCampbell Barton
Scopes assumed all passes were RGBA, but some passes have 1-3 channels.
2015-09-09Fix T45839 : Regression - Multi-layer image issues when using non-standard namesDalai Felinto
This was introduced in the fix for T44336 . The code is now what it should have been in the first place at the time of multiview commit. ImageUser->passtype is being removed in favour of bringing ImageUser->pass back. Reviewers: sergey Differential Revision: https://developer.blender.org/D1504
2015-09-09Fix (unreported) crash with undo/outliner and drivers.Bastien Montagne
To reproduce the crash: * Add some shapekeys to default cube. * Add at least on driver (can be default empty one) to a shapekey value. * **Make this driver visible in Outliner**. * Delete all shapekeys. * Undo. * Crash. Root of the issue is outliner reading code in `blo_lib_link_screen_restore()`, which would try to `restore_pointer_by_name()` for all `TreeStoreElement->id` pointers. Thing is, those id pointers are not always IDs, they can be animdata, sequence, RNA struct/property... That's really not so great design, but also has reasons like size of the struct, we have to live with it. So now: * TreeStoreElement->type defines are braught back into DNA. * There we also define a `TSE_IS_REAL_ID` macro to check whether a given TreeStoreElement actually stores an ID pointer or not. * And in Outliner read code we only try to retore pointers by name for actual ID ones, and set the others to default NULL value. Also, added clear comment to TSE types that do not store a real ID pointer!
2015-09-09Cycles: Attempt to fix 32bit CUDA kernelsSergey Sharybin
2015-09-09Formatting fix.Sybren A. Stüvel
Reviewed by: Severin
2015-09-09Fix: VSE text strip size was wrong when preview render size != 100%Sybren A. Stüvel
Reviewed by: sergei
2015-09-09OpenSubdiv: More graceful handling of shader compile/linking errorsSergey Sharybin
2015-09-09Buildbot: Test enable CUDA binaries for Win32Sergey Sharybin
Linux 32bit seems to work fine now, let's see if Win32 also works.
2015-09-09Fix T46051: Loading certain Jpeg causes system alert sound (Win32)Sergey Sharybin
The issue was caused by RedCode library printing binary string to the terminal.
2015-09-09Fix (unreported) Outliner letting you edit path of indirect linked lib shown ↵Bastien Montagne
at 'first level'. From Gooseberry team request indirect libs were also added at root of 'BlendFile' Outliner view, but that allowed edition of their path, which is useless...
2015-09-09Fix crash in preview render w/ too small borderCampbell Barton
2015-09-09Cycles: Cleanup, typoSergey Sharybin
Spotted by Campbell, thanks!
2015-09-09Fix T46056: User Preferences-> install from File freezes Blender.Bastien Montagne
Own stupid error in recent fix for buffer overflow in `BLI_testextensie_glob()`... Also found & fixed another potential buffer overflow in this func.
2015-09-09Fix T46055: Volume doesn't render when PANORAMIC Camera is inside volume meshSergey Sharybin
2015-09-09Cycles: Limit triangle magnitude check for only GPUSergey Sharybin
Found a way to make AVX2 CPUs happy by reshuffling instructions a bit, so now there's no weird precision errors happening in there. This solves some render speed regressions on CPU, but unfortunately this doesn't help for GPU rendering.