summaryrefslogtreecommitdiffstats
path: root/scene/resources/texture.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* GDExtension: Mark virtual function as `is_required` in `extension_api.json`David Snopek2024-09-111-15/+15
| | | | Co-authored-by: Jovan Gerodetti <jovan.gerodetti@titannano.de>
* Extract and reorganize texture resource classesHendrik Brucker2023-07-141-949/+0
|
* Add a square fill mode to GradientTexture2DVolTer2023-04-201-0/+1
|
* Add dedicated setter for `ImageTextureLayered::_images` to fix ↵RedworkDE2023-03-091-0/+1
| | | | `create_from_images` being hidden from the C# bindings
* Remove unexposed ProxyTexture, mark AnimatedTexture as deprecatedRémi Verschelde2023-02-171-23/+0
| | | | | | | | | | | | | According to reduz: > [AnimatedTexture] should be removed together with ProxyTexture, its just > not efficient at all in Vulkan and causes invalidation of all descriptor > sets depending on it > it was needed mostly for animated tilemaps, but nowadays there is not a lot > of reason for it Marking AnimatedTexture as deprecated accordingly, until we reach consensus for removing it completely.
* Add "dedicated server" export mode which can strip unneeded visual resourcesDavid Snopek2023-01-231-0/+19
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | 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".
* Merge pull request #63271 from Chaosus/fix_texture_errorRémi Verschelde2022-10-111-5/+5
|\ | | | | | | Fix error emitting when opening some textures in the inspector
| * Fix error emitting when opening some textures in the inspectorYuri Rubinsky2022-07-211-5/+5
| |
* | Remove unused struct in GradientTexture1DMicky2022-09-211-9/+0
| |
* | Rework AnimatedTexture's `fps` into `speed_scale`Micky2022-09-061-6/+6
| | | | | | | | | | | | | | | | `fps` has been turned into `speed_scale`. It now affects the scale of the entire animation. If `speed_scale` is a negative value, the animation is played in reverse. `frame_n/delay_sec` has been renamed to `frame_n/duration` _(prefixes exist, making the previous name redundant)_. Setters and getters, documentation updated, too.
* | Merge pull request #65194 from Mickeon/rename-one-shotRémi Verschelde2022-09-061-3/+3
|\ \
| * | Rename AnimatedTexture `oneshot` to `one_shot`Micky2022-09-011-3/+3
| | | | | | | | | | | | | | | | | | AnimatedTexture.`oneshot` -> `one_shot` For consistency. Every other exposed `one_shot` is spaced out like this.
* | | Change Array arguments to TypedArraykobewi2022-09-011-2/+2
|/ /
* | Make `_validate_property` a multilevel methodYuri Sizov2022-08-221-4/+4
| |
* | Unexpose ProxyTextureMax Hilbrunner2022-08-191-2/+0
| |
* | Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-1/+1
|/ | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Use integer types in Image and ImageTexture methodsFireForge2022-07-181-1/+1
| | | | | | | | | | | - Image.blit_rect() - Image.blit_rect_mask() - Image.blend_rect() - Image.blend_rect_mask() - Image.fill_rect() - Image.get_used_rect() - Image.get_rect() - ImageTexture.set_size_override()
* Add static methods for creating Image and ImageTexturekobewi2022-07-081-1/+2
|
* Re-add internal image field to ImageTexturekobewi2022-06-081-0/+5
|
* Remove image property of ImageTexturekobewi2022-06-071-5/+0
|
* Merge pull request #60583 from reduz/placeholder-assetsRémi Verschelde2022-05-031-0/+94
|\
| * Implement placeholder assetsreduz2022-04-281-0/+94
| | | | | | | | | | | | | | | | | | * Placeholder textures * Placeholder meshes * Placeholder material This PR is the first step towards implementing https://github.com/godotengine/godot-proposals/issues/2756 It adds an asset type that uses no resources, which can be used to replace the existing ones on export for using on the upcoming server export.
* | Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-3/+3
|/ | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* Make FileAccess and DirAccess classes reference counted.bruvzg2022-04-111-1/+1
|
* Add PortableCompressedTexturereduz2022-03-301-0/+72
| | | | | | | | | | | | | * Resource that allows saving textures embedded in scenes or standalone. * Supports only formats that are portable: Lossy, Lossles or BasisUniversal This is something I wanted to add for a long time. I made it now because @fire requires it for importing GLTF2 files with embedded textures, but also this will allow saving Godot scenes as standalone binary files that will run in all platforms (because textures will load everywhere). This is ideal when you want to distribute individual standalone assets online in games that can be built from Godot scenes.
* Discern between virtual and abstract class bindingsreduz2022-03-101-19/+43
| | | | | | | | | | | | | | * Previous "virtual" classes (which can't be instantiated) are not corretly named "abstract". * Added a new "virtual" category for classes, they can't be instantiated from the editor, but can be inherited from script and extensions. * Converted a large amount of classes from "abstract" to "virtual" where it makes sense. Most classes that make sense have been converted. Missing: * Physics servers * VideoStream * Script* classes. which will go in a separate PR due to the complexity involved.
* Rename StreamTexture* to CompressedTexture*reduz2022-03-051-29/+29
| | | | | | * Its not and will not be used for streaming. * Streaming will be implemented in 4.1 and it will work different. * It makes more sense to be called CompressedTexture since it imports and compresses texture files.
* Decrease the default GradientTexture and CurveTexture sizeHugo Locurcio2022-01-291-3/+3
| | | | | | | | This provides better usability when a GradientTexture or CurveTexture is added to a Control node. Visual appearance of most GradientTextures and CurveTextures will be unaffected.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Merge pull request #54715 from goostengine/gradient-texture-1d-renameYuri Roubinsky2021-11-081-4/+4
|\
| * Rename `GradientTexture` to `GradientTexture1D`Andrii Doroshenko (Xrayez)2021-11-071-4/+4
| | | | | | | | | | 1. Explicit and unambiguous when comparing to `GradientTexture2D` 2. Consistent with other class names where 1D is used in the engine.
* | Remove redundant texture flag setters/getters for `CameraTexture`Aaron Record2021-11-071-3/+0
|/
* Add GradientTexture2DHendrik Brucker2021-10-121-0/+71
| | | | | Co-authored-by: Mariano Javier Suligoy <marianognu.easyrpg@gmail.com> Co-authored-by: Andrii Doroshenko <xrayez@gmail.com>
* Merge pull request #53180 from boruok/4.0-fix-atlas-texture-return-nullRémi Verschelde2021-09-281-0/+2
|\
| * 4.0 fix atlas texture return nullboruok2021-09-281-0/+2
| |
* | Remove unused ImageTexture functionsHaoyu Qiu2021-09-141-2/+0
|/ | | | | * `_resource_path_changed()` does nothing * `_reload_hook()` has been unused since the beginning of GLES3 renderer
* Add an `use_hdr` property to GradientTexture to allow storing HDR colorsHugo Locurcio2021-08-131-0/+4
| | | | | This is disabled by default to save some memory and preserve the existing behavior of clamping colors.
* Add placeholder textures to ensure CameraTexture / CameraFeed always have ↵bruvzg2021-08-131-0/+1
| | | | valid RIDs.
* Rename Curve3Texture to CurveXYZTextureRémi Verschelde2021-07-141-4/+4
| | | | | | Neither name is a perfect match but `Curve3Texture` looked too similar to `CurveTexture` and `Curve3D`, which made things confusing when picking a texture type or browsing the API reference.
* Implement Curve3Texturereduz2021-07-031-11/+53
| | | | | | * This was required by users in some scenarios, such as animating individual axes over time with a single texture. * Examples: Shaders, Particles, etc. * CurveTexture now defaults to RGB, can be changed to Red if needed, this allows to freely exchange them.
* Clean up RenderingServer and its bindingsreduz2021-07-011-1/+1
| | | | | | * Rewrote bindings for RenderingServer. * They are now all up to date. * Several unused methods and deprecated features were cleaned up.
* Merge pull request #47835 from mortarroad/master-lossless-webpRémi Verschelde2021-06-111-15/+6
|\ | | | | Implement lossless WebP encoding
| * Implement lossless WebP encodingMorris Tabor2021-06-111-15/+6
| |
* | Core: Move DirAccess and FileAccess to `core/io`Rémi Verschelde2021-06-111-1/+1
|/ | | | | File handling APIs are typically considered part of I/O, and we did have most `FileAccess` implementations in `core/io` already.
* Fix some warnings raised by GCC-11.1jfons2021-05-251-1/+1
|
* Remove obsolete LargeTexture, it's no longer useful since 3.xRémi Verschelde2021-04-281-45/+0
| | | | | | | | | | | | | It existed in early Godot releases to allow working around hardware limitations on max texture sizes (e.g. hardware limits of 1024x1024 pixels). Nowadays the max texture size supported natively by Godot is 16384x16384, and even low end mobile hardware should support at least 4096x4096. The LargeTexture implementation is basically just an array with offsets, sizes and textures and should be easy to replicate with a custom Texture resource if needed - solving most of its bugs on the way as the implementation removed here has various unimplemented or incomplete methods.
* Rename Texture.get_data() to get_image()Marcel Admiraal2021-03-281-6/+6
|