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
path: root/intern
AgeCommit message (Collapse)Author
2018-07-05Merge branch 'master' into blender2.8Campbell Barton
2018-07-04Cycles Denoising: Pass tile buffers to every OpenCL kernel to conform to ↵Lukas Stockner
standard and get rid of set_tile_info
2018-07-04Cycles Denoising: Correctly handle target buffer in tile unmapping and move ↵Lukas Stockner
device swap logic to the device_memory
2018-07-04Cycles Denoising: Cleanup: Rename tiles to tile_infoLukas Stockner
2018-07-04Cycles Denoising: Refactor denoiser tile handlingLukas Stockner
This deduplicates the calls for tile (un)mapping and allows to have a target buffer that is different from the source buffer (needed for baking and animation denoising).
2018-07-04Cycles Denoising: Split main function into logical stepsLukas Stockner
2018-07-03Cleanup: unused functionCampbell Barton
2018-07-03GHOST: Fix assert and rebind previous ogl context.Clément Foucault
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-07-02Merge branch 'master' into blender2.8Campbell Barton
2018-07-02Cycles: Fix missing curve hair when building with GCC-8 in release modeSergey Sharybin
Reshuffle cast intrinsics to make XOR to operate on __m128i rather than on __m128. Hopefully this does not affect performance.
2018-07-01Merge branch 'master' into blender2.8Campbell Barton
2018-07-01Fix T55626, fix T55106: Cycles motion blur + persistent images bug.Brecht Van Lommel
2018-07-01Merge branch 'master' into blender2.8Campbell Barton
2018-07-01RNA: use bool for boolean RNA typesCampbell Barton
We were using int's for bool arguments in BKE, just to avoid having wrapper functions.
2018-07-01Cleanup: remove num argument prefixCampbell Barton
2018-06-30Merge branch 'master' into blender2.8Campbell Barton
2018-06-29Cycles: change AO node default to 16 samples and only local off.Brecht Van Lommel
2018-06-29Merge branch 'master' into blender2.8Campbell Barton
2018-06-29Cleanup: trailing newlinesCampbell Barton
2018-06-29Merge branch 'master' into blender2.8Campbell Barton
2018-06-29Cleanup: trailing newlinesCampbell Barton
2018-06-28Merge branch 'master' into blender2.8Brecht Van Lommel
2018-06-28Fix Cycles tests build on macOS.Brecht Van Lommel
2018-06-27UI: Single-column layout for Lamp panelWilliam Reynish
2018-06-26Merge branch 'master' into blender2.8Sybren A. Stüvel
2018-06-26UI: Tweaks to Cycles Bake panelWilliam Reynish
-Correctly aligns bake options in the column -Updated Metadata panel with right-aligned checkboxes for consistency
2018-06-26Revert "Turned off clang warnings in third party includes."Stefan Werner
This reverts commit d53093953f8f3b58600cb19020ecbe0b5f254b52.
2018-06-26Merge branch 'master' into blender2.8Campbell Barton
2018-06-26Cycles: Fix wrong row count for World MIS CDF calculationLukas Stockner
2018-06-26Turned off clang warnings in third party includes.Stefan Werner
The latest clang compiler (at least the one in Xcode 9.4.1) warns about the register keyword and macro expansions using defined(). Since these warnings come from third party code, we can't address them directly in Blender. Silencing them via #pramgas will at least keep the warnings during a build down to the ones that are relevant to Blender code.
2018-06-25Cycles: Fix memory leak with sessionSergey Sharybin
We didn't check for sync object being already allocated. In fact, we simply need to use proper function to free session.
2018-06-25Cycles: Cleanup, indentationSergey Sharybin
2018-06-25Merge branch 'master' into blender2.8Campbell Barton
2018-06-24Cycles: change AO node color default to 1.0.Brecht Van Lommel
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-22CMake: Make language explicit for per-file strict flags removalSergey Sharybin
2018-06-22Math: Set matrix to zero when inversion failsSergey Sharybin
Avoids usage of uninitialized memory when inversion fails. That uninitialized memory can cause object to become visible when it is supposed not to or other artifacts like that. Longer term solution would be to check every instance of invert_m# function and to explicit fallback when needed (possibly, using extra utility functions).
2018-06-21Merge branch 'master' into blender2.8Campbell Barton
2018-06-21Fix Cycles incorrect versioning for automatic sample world resolution.Brecht Van Lommel
2018-06-21Merge branch 'master' into blender2.8Campbell Barton
2018-06-21Fix Cycles CUDA render errors with CUDA 9.2.Brecht Van Lommel
Work around what might be a compiler bug.
2018-06-21Fix T55564: Cycles OpenCL build error on some scenes.Brecht Van Lommel
2018-06-20Cleanup: pep8, single quotes for enumsCampbell Barton
2018-06-19Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/editors/sculpt_paint/paint_image_proj.c
2018-06-19Cycles: Fixed crash when the camera was inside 16 volumes or more. It still ↵Stefan Werner
won't render those volumes correctly, but at least the crash is addressed.
2018-06-19Merge branch 'master' into blender2.8Brecht Van Lommel