| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
| |
| |
| | |
Extends mesh instances that required custom vertex buffers to create two alternating buffers that are written to and binds them to use them as the previous vertex buffer when generating motion vectors.
|
| | |
|
|/
|
|
|
|
|
| |
This is needed to allow 2D to fully make use of 3D effects (e.g. glow), and can be used to substantially improve quality of 2D rendering at the cost of performance
Additionally, the 2D rendering pipeline is done in linear space (we skip linear_to_srgb conversion in 3D tonemapping) so the entire Viewport can be kept linear.
This is necessary for proper HDR screen support in the future.
|
|\
| |
| |
| | |
Replace sampler arrays with constant sampler elements, simplify and reuse code for all shaders
|
| | |
|
|\ \
| |/
|/| |
Fix "Light Only" mode of `CanvasItemMaterial`
|
| | |
|
|/
|
|
|
|
|
|
| |
behaviour of the Godot 3 and Compatibility renderers
The OpenGL implementation has used GL_FUNC_REVERSE_SUBTRACT for a long time, but the new RenderingDevice abstraction used by the Vulkan renderers had been mistakenly set to BLEND_OP_SUBTRACT instead of BLEND_OP_REVERSE_SUBTRACT.
Fixes #77448
|
| |
|
|
|
|
| |
are visible
|
|\
| |
| |
| | |
Use the original canvas to calculate light positioning
|
| | |
|
|/ |
|
| |
|
|
|
|
| |
The decal atlas is used for Light2Ds, decals, and Light3Ds
|
| |
|
|
|
|
| |
canvas renderer
|
|
|
|
| |
in favour of texture hints
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
As many open source projects have started doing it, we're removing the
current year from the copyright notice, so that we don't need to bump
it every year.
It seems like only the first year of publication is technically
relevant for copyright notices, and even that seems to be something
that many companies stopped listing altogether (in a version controlled
codebase, the commits are a much better source of date of publication
than a hardcoded copyright statement).
We also now list Godot Engine contributors first as we're collectively
the current maintainers of the project, and we clarify that the
"exclusive" copyright of the co-founders covers the timespan before
opensourcing (their further contributions are included as part of Godot
Engine contributors).
Also fixed "cf." Frenchism - it's meant as "refer to / see".
|
|
|
|
| |
In 2D the particle uniform set isn't obtained until the render pass. So in 2D just avoid rendering if not updated yet.
|
|
|
|
|
|
| |
they have been used.
For the RD renderer, this does not work for Viewports used in scene shaders yet
|
| |
|
|
|
|
| |
This ensures that the SDF is updated even if not used in a canvas_item shader
|
|
|
|
|
|
|
| |
They are based on:
- Boolean arithmetic simplifications
- setting variables that are not accessed
- constant variables
|
|
|
|
|
|
| |
Also clean up skeleton code in preparation for adding them to GLES3
Properly update Mesh2D AABBs when skeleton is updated
|
|\
| |
| |
| | |
Fix draw_primitive ignoring texture argument
|
| | |
|
| |
| |
| |
| |
| |
| | |
This is an initial implementation based on the current RD implementation
Performance will improve later
|
|\ \
| | |
| | | |
Improve behaviour of clip_children by clipping to parent alpha value but still retaining parent color
|
| | | |
|
| |/
| |
| |
| |
| | |
to parent alpha value, but still retaining
parent color
|
|/ |
|
|
|
|
|
|
|
|
| |
Replace all TODO uses of `#warning` by proper TODO comments, and will open
matching bug reports to keep track of them.
We don't have a great track record fixing TODOs, but I'd wager we're even
worse for fixing these "TODO #warning" so we should prohibit this usage.
|
|
|
|
|
| |
This avoids an issue where having multiple CanvasGroups overlap
would create a weird artifact
|
|\
| |
| |
| | |
Default CanvasItem materials to use sRGB space for uniform colors
|
| |
| |
| |
| |
| | |
The 2D renderer in Godot is totally in sRGB space so it is appropriate
to keep 2D uniform colors in sRGB space
|
|/ |
|
|
|
|
|
| |
Expose LIGHT_ENERGY and LIGHT_IS_DIRECTIONAL.
Add LIGHT_DIRECTION
|
| |
|
| |
|
| |
|
|\
| |
| | |
Rename `str2var` to `str_to_var` and similar
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Affects the Math class, a good chunk of the audio code, and a lot of other miscellaneous classes, too.
- `var2str` -> `var_to_str`
- `str2var` -> `str_to_var`
- `bytes2var` -> `bytes_to_var`
- `bytes2var_with_objects` -> `bytes_to_var_with_objects`
- `var2bytes` -> `var_to_bytes`
- `var2bytes_with_objects` -> `var_to_bytes_with_objects`
- `linear2db` -> `linear_to_db`
- `db2linear` -> `db_to_linear`
- `deg2rad` -> `deg_to_rad`
- `rad2deg` -> `rad_to_deg`
- `dict2inst` -> `dict_to_inst`
- `inst2dict` -> `inst_to_dict`
|
|/ |
|
|\
| |
| | |
Add shader uniform hints for screen textures
|
| |
| |
| |
| |
| |
| |
| |
| | |
filter and repeat modes.
At this time, it works best in the Vulkan Renderers as they support using multiple samplers with the same texture.
In GLES3 this feature really only allows you to use the screen texture without mipmaps if you want to save the cost of generating them.
|
|/
|
|
|
|
| |
`shader_uniform` is now consistenly used across both per-shader
and per-instance shader uniform methods. This makes methods easier
to find in the class reference when looking for them.
|
| |
|
|
|
|
|
| |
The `global_shader_uniform` name is longer, but it makes it much
easier to find the methods when searching in the class reference.
|