November 5, 2019, 14:38 (GMT) |
GPencil: Use Vertex Color in Hue/Saturation modifier |
November 5, 2019, 14:38 (GMT) |
Fix build errors in GHOST SDL |
November 5, 2019, 14:38 (GMT) |
Fix T71093: fluid settings not visible for workbench engine |
November 5, 2019, 14:38 (GMT) |
Fix compositor Denoise node showing Normal value buttons Any values typed in here manually would not be used, it needs an image. |
November 5, 2019, 14:38 (GMT) |
Fix bug in Draco encoding for glTF, files are now smaller Data was not quantified properly. It also lets the library choose the suitable encoding method rather than forcing it to use the edgebreaker method. Differential Revision: https://developer.blender.org/D6183 |
November 5, 2019, 14:34 (GMT) |
GPencil: Use Vertex Color in Tint modifier |
November 5, 2019, 14:33 (GMT) |
Core XR Support [part 4]: Blender-side changes (+ the remaining bits) Changes for the higher level, more Blender specific side of the implementation. Main additions: * WM-XR: Layer tying Ghost-XR to the Blender specific APIs/data * wmSurface API: drawable, non-window container (manages Ghost-OpenGL and GPU context) * DNA/RNA for initial management of VR session settings * Utility batch & config file for using the Oculus runtime (Windows only) Differential Revision: https://developer.blender.org/D6193 |
Revision 2ae8040 by Jacques Lucke (builtin-simulation-nodes, functions, functions-experimental-refactor, particle-solver-dev, simulation-tree) November 5, 2019, 14:32 (GMT) |
improve aligned allocation in monotonic allocator |
November 5, 2019, 14:26 (GMT) |
Merge branch 'blender-v2.81-release' |
November 5, 2019, 14:00 (GMT) |
Core XR Support [part 3]: Ghost-XR API based on OpenXR ## Design Overview * For code using this API, the most important object is a GHOST_XrContext handle. Through it, all API functions and internal state can be accessed/modified. * Main responsibilities of the Ghost XR-context are to manage lifetimes of the OpenXR runtime connection (represented by XrInstance), the session and to delegate operations/data to the session. * The OpenXR related graphics code, which is OS dependent, is managed through a `GHOST_IXrGraphicsBinding` interface, that can be implemented for the different graphics libraries supported (currently OpenGL and DirectX). * Much of this code here has to follow the OpenXR specification and is based on the OpenXR [[https://github.com/KhronosGroup/OpenXR-SDK-Source/tree/master/src/tests/hello_xr | `hello_xr`]] implentation. * In future we may want to take some code out of the context, e.g. extension and API layer management. * There are runtime debugging and benchmarking options (exposed through --debug-xr and --debug-xr-time, but not as part of this patch). * Error handling is described in a section below. ## Why have this in Ghost? Early on, I decided to do the OpenXR level access through GHOST. Main reasons: * OpenXR requires access to low level, OS dependent graphics lib data (e.g. see [[https://www.khronos.org/registry/OpenXR/specs/0.90/man/html/openxr.html#XrGraphicsBindingOpenGLXlibKHR| XrGraphicsBindingOpenGLXlibKHR]]) * Some C++ features appeared handy (`std::vector`, RAII + exception handling, cleaner code through object methods, etc.) * General low level nature of the OpenXR API After all I think much of the functionality is too high level to live in GHOST however. I would like to address this by having a separate `VAMR` (virtual + augmented + mixed reality) module, placed in `intern/`. The main issue is getting this to work well with Ghost data, especially how to get the mentioned low level data out of Ghost. This is something I'd like to look into again before too long, but for now I think having this in Ghost is reasonable. ## Error Handling Strategy The error handling strategy I chose uses C++ exceptions, a controversial feature. Let me explain why I think this is reasonable here. The strategy requirements were: * If an error occurs, cleanly exit the VR session (or destroy the entire context), causing no resource leaks or side effects to the rest of Blender. * Show a *useful* error message to the user. * Don't impair readability of code too much with error handling. Here's why I chose an exception based strategy: * Most alternatives require early exiting functions. This early exiting has to be 'bubbled up' the call stack to the point that performs error handling. For safe code, early exit checks have to be performed everywhere and code gets really impaired by error checking. Tried this first and wasn't happy at all. Even if error handling is wrapped into macros. * All `GHOST_Xr` resources are managed via RAII. So stack unwinding will cause them to be released cleanly whenever an exception is thrown. * `GHOST_Xr` has a clear boundary (the Ghost C-API) with only a handful of public functions. That is the only place we need to have try-catch blocks at. (Generally, try-catch blocks at kinda random places are a bad code smell IMHO. Module boundaries are a valid place to put them.) * Exceptions allow us to pass multiple bits of error information through mulitple layers of the call stack. This information can also be made specific with a useful error message. As of now, they conain a user error message, the OpenXR error code (if any), as well as the exact source code location the error was caught at. So the strategy I went with works as follows: * If a VR related error occurs within `GHOST_Xr`, throw an exception (`GHOST_XrException` currently). * OpenXR calls are wrapped into a macro throwing an exception if the return value indicates an error. * Useful debugging information and user messages are stored in the exceptions. * All resources must be managed through RAII, so throwing an exception will release 'dangling' ones cleanly. * In the GHOST C-API wrappers, the exceptions are caught and contained error information is forwarded to a custom error handling callback. * The error handling callback is set in `wm_xr.c`, prior to creating the XR-Context, and implements clean destruction of the context. Differential Revision: https://developer.blender.org/D6192 |
November 5, 2019, 13:48 (GMT) |
Fix T71259: Array Modifier Performance is slow Was happening when object transform is animated. Caused by overly aggressive dependency construction introduced a while back in 9d4129eee649: we shouldn't add dependencies unless we really need them. This change removes unneeded transform dependency for cap objects (since only their geometry is used), and also removes own transform dependency if there is no offset object (which is the only case when own transform is needed). Differential Revision: https://developer.blender.org/D6184 |
November 5, 2019, 13:37 (GMT) |
Initial basic support for assets definition in .blend file itself, and RNA api access. This still *very* basic, but should be usable as proof of concept for Cosmos pipeline tests... Note that the question of where to put all asset metadata remains open, we could extend AssetUUID struct, and/or add support of IDProps to it, or just use some special-named IDProp in IDs themselves (like the _RNA_UI thing for custo; props UI settings...). |
Revision 7317074 by Jacques Lucke (builtin-simulation-nodes, functions, functions-experimental-refactor, particle-solver-dev, simulation-tree) November 5, 2019, 13:36 (GMT) |
bring back some more math operations |
November 5, 2019, 13:35 (GMT) |
Merge branch 'master' into asset-engine Conflicts: release/scripts/startup/bl_ui/space_filebrowser.py source/blender/editors/space_file/file_ops.c |
November 5, 2019, 13:34 (GMT) |
Merge branch 'blender-v2.81-release' |
November 5, 2019, 13:31 (GMT) |
Fix T71356: Motion Paths no longer update |
November 5, 2019, 13:23 (GMT) |
November 5, 2019, 13:22 (GMT) |
GPencil: Fix Title for Mix Factor The text is inside the value if put the parameter in the same row and we want the text before value. |
November 5, 2019, 13:20 (GMT) |
Merge branch 'blender-v2.81-release' |
November 5, 2019, 13:19 (GMT) |
Fix Cycles failing to compile when "WITH_CYCLES_LOGGING" is off |
|
|
|


Master Commits
MiikaHweb | 2003-2021