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
2015-10-11Cycles: Increase number of textures allowed for OpenCL renderSergey Sharybin
Currently OpenCL devices are packing images into a single texture, which means technically number of textures is not limited here. Now OpenCL will use same number of textures as CPU. If we want to bump number of textures further, this values are to be modified in sync. NOTE OpenCL still does not support float textures. Original patch from a guy called bliblubli in the tracker with some own modifications. Reviewers: brecht, dingto, sergey Differential Revision: https://developer.blender.org/D1530
2015-10-10Revert "Fix T46406: Cycles ignores default socket value associated with ↵Brecht Van Lommel
group socket" Fixes T46442.
2015-10-10Fix various compiler warnings.Brecht Van Lommel
2015-10-10Fix T45167: OS X inertial scrolling can lead to unexpected zooming.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D1539
2015-10-10Fix T46341: OS X trackpad and magic mouse gestures not working with 10.11 SDK.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D1539
2015-10-10Fix/Workaround T46431: blender-softwaregl crashesCampbell Barton
Order of initialization bug only impacted mesa's software-gl. For now effectively revert support for glx-context-flags.
2015-10-09Cycles: Fix compilation error of CUDA kernel after recent decomposition changesSergey Sharybin
2015-10-09Cycles: Make sure ray direction is always normalizedSergey Sharybin
Ray direction is assumed to be normalized in such areas as scaling intersection distance on instance push/pop when doing ray-scene intersection, but it was possible that some closures wouldn't give normalized direction which could cause wrong intersection checks. Now normalization will happen on surface bounce, which could be a bit of a waste if closure actually gives normalized direction, but currently only transparent BSDF seems to give guaranteed normalized direction.
2015-10-09Cycles: Fix wrong intersection with motion blur and degenerate object transformSergey Sharybin
2015-10-09Cycles: Fix issues with quick inverse of degenerate matrixSergey Sharybin
This fixes part of the issues reported in T46322. Still need to solve issue with wrong intersection distance scaling.
2015-10-09Cycles: Fix intersection issues caused by degenerate instance matrixSergey Sharybin
Issue was caused by wrong intersection distance scaling on instance pop, which could cause intersection distance to become zero, confusing following intersection checks.
2015-10-08Cycles: Cleanup, whitespace around keywordsSergey Sharybin
2015-10-08Fix T46407: Enabling OSL breaks Vector Transform nodeSergey Sharybin
2015-10-08Cycles: Add an interpolation option to environment texturesLukas Stockner
This commit exposes the interpolation parameter for environment textures (requested by DolpheenDream on IRC), just as it already is for image textures. Reviewers: sergey Differential Revision: https://developer.blender.org/D1544
2015-10-08Fix T46406: Cycles ignores default socket value associated with group socketSergey Sharybin
2015-10-08Cycles: Fix wrong float3->float3 conversion nodeSergey Sharybin
2015-10-08Fix T46405: Cycles point density missing update when modifying source objectSergey Sharybin
2015-10-08Cycles: Fix for point density always using render settings for modifiersSergey Sharybin
2015-10-05Fix T46352: Cycles fails to render when material contains UV mapped texture ↵Sergey Sharybin
as volume input
2015-10-05Cycles: Add some TODO comments about derivativesSergey Sharybin
2015-10-05Cycles: Fix for builtin textures when linking against OSL 1.6.8Sergey Sharybin
Issue was caused by changed function signature. This is still not really full support of new OSL API since we don't store anything in the derivatives which could confuse mipmapping.
2015-10-05Cycles: Remove redundant coordinate clipping in voxel SVM nodeSergey Sharybin
It is now handled via texture extension type.
2015-10-05Cycles: Fix missing z-coordinate check in volume samplingSergey Sharybin
2015-10-05Fix T46358: Cycles point density uses repeat extension typeSergey Sharybin
2015-10-03Fix T44605: OS X continuous grab issues.Brecht Van Lommel
2015-10-01Cycles: Correction to point density with particle source and world mappingSergey Sharybin
2015-09-24Cleanup: And one more commit... (BVH Cache).Thomas Dinges
2015-09-24Cleanup: Remove some more BVH cache code, for reading/writing the cache.Thomas Dinges
2015-09-24Cleanup: Remove some underlying code for the BVH disk cache.Thomas Dinges
Notes: - There is still some bvh cache code, but that is from the engines initial commit, we might clean this up further or keep it. - Changes in util_cache.h/.c are kept, this might be re-used in the future.
2015-09-24Cleanup: Typo fixes in OpenCL log messages.Thomas Dinges
2015-09-24Cycles: Remove the BVH cache featureThomas Dinges
This removes the BVH cache feature from the UI, underlying code will be removed in a separate commit. The BVH cache was added before we had a multi-threaded BVH build, and a lot of other optimizations were done since then, which makes this not useful anymore. Fix T46162.
2015-09-23Cycles: Support building with latest OSL-1.7devSergey Sharybin
So now the following OSL versions are supported (at least for compilation): - 1.5 with closure alignment patch applied - 1.6.8 release - 1.7 development version from latest git
2015-09-21Fix T46159: OpenSubdiv does not always give same results as Blender own ↵Sergey Sharybin
subsurf code with crease edges
2015-09-21Fix T43715: IK pole target + stretch not working for a single bone chain.Brecht Van Lommel
2015-09-18Fix T46030: Strange behavior of Cycles Brick TextureSergey Sharybin
Added some extra seed to the hash, so it's now less likely to give repetitive patters at values around zero. This will change distribution of bricks for existing files. but it's something inevitable.
2015-09-18Cycles: simplify logic for calculating dof-distCampbell Barton
Matches change from BKE_camera
2015-09-17Fix T46143: Faces missing with GPU renderSergey Sharybin
Epsilon was quite arbitrary for GPU, replaced with checking for zero-sized faces. It should solve both original report and the new one. After the release we can check why GPU doesn't produce accurate math here and go to the root of the issue.
2015-09-16OpenSubdiv: Fix crash caused by accessing OpenGL vendor from non-main threadSergey Sharybin
2015-09-16OpenSubdiv: Attempt to solve crash in background modeSergey Sharybin
2015-09-16Code cleanup, whitespaceSergey Sharybin
2015-09-16OpenSubdiv: Fix for missing caching of vendor string parsing resultSergey Sharybin
2015-09-16Fllowup to previous commit, remove unused codeSergey Sharybin
2015-09-16Fix T45708: OpenSubdiv crashes on Windows with Intel cardsSergey Sharybin
Disable Intel cards for until we'll go to the root of the issue of the crash. This will take a bit, so being so close to the release we go safe and disable unstable GPU, so blender at least doesn't crash. This could be bypassed by setting OPENSUBDIV_ALLOW_INTEL environment variable.
2015-09-13Cleanup: spellingCampbell Barton
2015-09-10Fix leak in ContextGLXCampbell Barton
2015-09-09Cycles: Attempt to fix 32bit CUDA kernelsSergey Sharybin
2015-09-09OpenSubdiv: More graceful handling of shader compile/linking errorsSergey Sharybin
2015-09-09Cycles: Cleanup, typoSergey Sharybin
Spotted by Campbell, thanks!
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.