Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-21 | Add proper type to most public API uses of Array | Juan Linietsky | |
2020-04-20 | Exposed RenderingDevice to script API | Juan Linietsky | |
Also added an easier way to load native GLSL shaders. Extras: Had to fix no-cache for subresources in resource loader, it was not properly working, making shaders not properly reload. Note: The precommit hooks are broken because they don't seem to support enums from one class being used in another. Feel free to fix this after merging this PR. | |||
2020-04-18 | Ability to create local RenderingDevice instances. | Juan Linietsky | |
2020-04-15 | Fixes leaks in ResourceCache, Vulkan and X11 | qarmin | |
2020-04-14 | Implement decals | Juan Linietsky | |
Also implemented decal atlas, so projectors and other stuff can be added. Sidenote: Had to make RID hashable, so some unrelated includes changed in order to include it in hashfuncs.h | |||
2020-04-12 | Implement MSAA | Juan Linietsky | |
2020-04-11 | Merge pull request #37808 from reduz/port-effects-to-compute | Juan Linietsky | |
Moved most of the effect code to compute. | |||
2020-04-11 | Moved most of the effect code to compute. | Juan Linietsky | |
Simplifies it and improves performance. Improves image barrier handling per mipmap on RenderingDeviceVulkan | |||
2020-04-10 | Shows proper scene render time in editor info | Juan Linietsky | |
Also fixed GPU profiler, which was not working on nvidia hardware. | |||
2020-04-09 | Merge pull request #36919 from nekomatata/android-vulkan-rendering | Rémi Verschelde | |
Vulkan rendering support on Android | |||
2020-04-08 | Display Server support | PouleyKetchoupp | |
2020-04-07 | Merge pull request #37586 from qarmin/vulkan_allocator_leak | Rémi Verschelde | |
Fix leak with Vulkan allocator | |||
2020-04-06 | Merge pull request #37635 from qarmin/leak_vertex | Rémi Verschelde | |
Fixed leak with vertex_formats | |||
2020-04-06 | Fixed leak with vertex_formats | qarmin | |
2020-04-06 | Vulkan: Use VK_NULL_HANDLE for handles, fixes 32-bit builds | Rémi Verschelde | |
Some Vulkan types are defined as "non dispatchable handles" and use a different typedef on 32-bit and 64-bit systems (struct pointer on 64-bit, `uint64_t` otherwise). https://github.com/KhronosGroup/Vulkan-Headers/blob/0e78ffd1dcfc3e9f14a966b9660dbc59bd967c5c/include/vulkan/vulkan_core.h#L59-L65 Contrarily to `NULL`, `nullptr` can't be converted to `uint64_t` so build was now failing on 32-bit after converting the codebase from using `NULL` to `nullptr`. Fixes #37620. | |||
2020-04-04 | Fix leak with Vulkan allocator | qarmin | |
2020-04-03 | Vulkan rendering for Android | PouleyKetchoupp | |
2020-04-02 | Replace NULL with nullptr | lupoDharkael | |
2020-03-26 | Added a Window node, and made it the scene root. | Juan Linietsky | |
Still a lot of work to do. | |||
2020-03-17 | Style: Set clang-format Standard to Cpp11 | Rémi Verschelde | |
For us, it practically only changes the fact that `A<A<int>>` is now used instead of the C++03 compatible `A<A<int> >`. Note: clang-format 10+ changed the `Standard` arguments to fully specified `c++11`, `c++14`, etc. versions, but we can't use `c++17` now if we want to preserve compatibility with clang-format 8 and 9. `Cpp11` is still supported as deprecated alias for `Latest`. | |||
2020-03-09 | More explicit error messages when vulkan calls return errors | PouleyKetchoupp | |
2020-03-04 | Merge pull request #36733 from qarmin/static_analyzer_fixes | Rémi Verschelde | |
Fixes bugs found by Sonarcloud and Coverity | |||
2020-03-04 | Change when we can ERR_FAIL_COND and ERR_FAIL_CONV_V to static_assert | Mateo Dev .59 | |
2020-03-02 | Fixes bugs found by Sonarcloud and Coverity | qarmin | |
2020-02-22 | Correct condition wrongly converted to ERR_FAIL_COND_MSG | Juan Linietsky | |
Fixes debugging of giprobes not working, likely other stuff | |||
2020-02-18 | PoolVector is gone, replaced by Vector | Juan Linietsky | |
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`. | |||
2020-02-14 | Fix various GCC compilation warnings after Vulkan merge | Rémi Verschelde | |
Part of #36132. | |||
2020-02-11 | Vulkan: Move thirdparty code out of drivers, style fixes | Rémi Verschelde | |
- `vk_enum_string_helper.h` is a generated file taken from the SDK (Vulkan-ValidationLayers). - `vk_mem_alloc.h` is a library from GPUOpen: https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator | |||
2020-02-11 | Auto exposure re-implemented in Vulkan | Juan Linietsky | |
2020-02-11 | Several fixes to GIProbes | Juan Linietsky | |
2020-02-11 | Use a different strategy to get textures from GPU (via buffers), for more ↵ | Juan Linietsky | |
compatibility. | |||
2020-02-11 | Improve HiDPI handling, fix incorrect window viewport clipping. | bruvzg | |
2020-02-11 | Dynamic object support for GI Probes (a bit buggy still) | Juan Linietsky | |
2020-02-11 | More GIProbe work and fixes | Juan Linietsky | |
2020-02-11 | Better GIProbe quality settings. | Juan Linietsky | |
2020-02-11 | GIProbes working. | Juan Linietsky | |
2020-02-11 | Untested support for compute shaders | Juan Linietsky | |
2020-02-11 | Visual GPU profiler and related profiling support in Vulkan. | Juan Linietsky | |
2020-02-11 | Several fixes to 3D rendering, and multimesh implementation. | Juan Linietsky | |
2020-02-11 | Rewrote large part of rendering, omni and spot shadows now work. | Juan Linietsky | |
2020-02-11 | Environment sky more or less working. | Juan Linietsky | |
2020-02-11 | Yay very basic 3D (only white) finally shows. | Juan Linietsky | |
2020-02-11 | Base 3D engine done, still untested, though. | Juan Linietsky | |
2020-02-11 | Merge pull request #29993 from bruvzg/vulkan | Rémi Verschelde | |
Initial Vulkan support for macOS (MoltenVK) and Windows | |||
2020-02-11 | Add runtime GLES2 / Vulkan context selection. | bruvzg | |
2020-02-11 | Add static Vulkan loader. | bruvzg | |
Initial Vulkan support for Windows. Initial Vulkan support for macOS. | |||
2020-02-11 | Moved the shader source compilation code outside RenderingDevice and Vulkan | Juan Linietsky | |
2020-02-11 | Added a spinlock template as well as a thread work pool class. | Juan Linietsky | |
Also, optimized shader compilation to happen on threads. | |||
2020-02-11 | Replaced GLSLang reflection by SPIRV-Reflect, eventually allowing to move ↵ | Juan Linietsky | |
GLSLang out. | |||
2020-02-11 | Custom material support seems complete. | Juan Linietsky | |