summaryrefslogtreecommitdiffstats
path: root/editor/editor_resource_preview.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-1/+22
|\
| * Generate editor thumbnails on imported scenes.Saracen2024-11-241-1/+22
| |
* | 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>
* Implement asynchronous transfer queues, thread guards on RenderingDevice. ↵Dario2024-10-021-1/+1
| | | | | | | | | | | Add ubershaders and rework pipeline caches for Forward+ and Mobile. - Implements asynchronous transfer queues from PR #87590. - Adds ubershaders that can run with specialization constants specified as push constants. - Pipelines with specialization constants can compile in the background. - Added monitoring for pipeline compilations. - Materials and shaders can now be created asynchronously on background threads. - Meshes that are loaded on background threads can also compile pipelines as part of the loading process.
* New Quick Open DialogStijn Hinlopen2024-10-011-0/+18
| | | | | | | | | | | | | | | | | | - Updated list view with thumbnails, and separate file name. - Added a grid view which has larger icons. - Added toggle to filter out files from addons. - Store history for each opened resource type. New Editor settings for Quick Open: - Startup display mode (grid or list): - Determined by the requested resource type. - Whatever was last used. - Toggle to filter out files from addons (for persistence). Notes - The dialog is now created once in EditorNode, and globally available for other components. - A fixed number of result scenes are instantiated, and reused based on query. - Drop support for multiselect.
* EditorResourcePreview: Let loads complete after exit requestedPedro J. Estébanez2024-09-131-1/+3
|
* Keep looking when a preview plugin returns an empty image.Rob Blanckaert2024-09-011-1/+3
| | | | | | | | EditorResourcePreviewGenerator::_generate says that "Returning an empty texture is an OK way to fail and let another generator take care." This patch enables that behavior.
* Fix certain resource previews empty with GL compatPedro J. Estébanez2024-07-221-1/+13
| | | | As an additional fix, the preview render request now ignores the main viewport hierarchy so previews don't pay the cost of re-rendering the whole editor and descendant viewports.
* Remove unused order variable from EditorResourcePreviewkobewi2024-06-071-4/+0
|
* Add a way to invalidate preview cachekobewi2024-04-261-4/+8
|
* Speed up inspector updates for TileMapkobewi2024-03-071-2/+2
|
* Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-1/+1
|
* Rework viewport capture in preview generationPedro J. Estébanez2024-02-211-2/+29
|
* Fix resource previews not created in compatibility renderingPedro J. Estébanez2024-02-161-0/+1
| | | | | See https://github.com/godotengine/godot/commit/e5454cd6603ca01bdf47f69cafbb1ef755525a12#r138705235. Fixes #88170.
* Benchmark resource preview generator with a verbose printYuri Sizov2024-01-261-0/+10
|
* Reorganize code related to editor themingYuri Sizov2024-01-161-1/+1
| | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well.
* Run resource previewer on the main thread if using GL compatibilityPedro J. Estébanez2024-01-161-12/+36
|
* Update deferred calls to use Callableskobewi2024-01-091-2/+1
|
* Abort threaded preview generators on exitYuri Sizov2023-11-101-93/+96
|
* Add theme contexts to various parts of the editorYuri Sizov2023-09-061-1/+3
| | | | | | | | | | | | | | | | | | | | This change defines additional theme contexts for editor branches to prevent theme leaking between the default theme, the project theme, and the editor theme. - Both editor window and EditorNode define an editor-specific context with the editor theme and the default theme. - The 2D viewport defines a project-specific context with the project theme and the default theme. - Theme editor preview tabs define the default-only context with the default theme. Additionally, the default theme context now only includes the project theme for running projects (both export and debug). This prevents the project theme from leaking into the editor. This commit also does a little clean up on the theming aspects of the EditorNode.
* Add EditorStringNames singletonkobewi2023-09-031-1/+1
|
* Merge pull request #78108 from aaronfranke/variant-util-headerRémi Verschelde2023-08-031-1/+1
|\ | | | | | | Make a header for VariantUtilityFunctions
| * Make a header for VariantUtilityFunctionsAaron Franke2023-06-121-1/+1
| |
* | Extract and reorganize texture resource classesHendrik Brucker2023-07-141-0/+1
|/
* Merge pull request #77000 from reduz/make-more-base-nodes-thread-safeRémi Verschelde2023-05-161-2/+9
|\ | | | | Make more base nodes thread safe
| * Make more base nodes thread safeJuan Linietsky2023-05-151-2/+9
| | | | | | | | Ongoing work to make more of the base nodes thread safe.
* | Enhance filesystem dock tooltipskobewi2023-05-121-3/+3
|/
* Add metadata to resource previewskobewi2023-05-101-52/+63
|
* Fix editor resource preview deadlocking with --headless modeGordon MacPherson2023-02-231-2/+4
|
* 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 #67578 from KoBeWi/GEDITORRémi Verschelde2022-10-311-2/+2
|\ | | | | | | Unify usage of GLOBAL/EDITOR_GET
| * Unify usage of GLOBAL/EDITOR_GETkobewi2022-10-181-2/+2
| |
* | Simplify GDVIRTUAL_CALL callskobewi2022-10-191-10/+4
|/
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-3/+3
| | | | change warnings=all to use /W4.
* Rename String `plus_file` to `path_join`Aaron Franke2022-08-291-1/+1
|
* Swap arguments of ResourceSaver.save()kobewi2022-07-291-2/+2
|
* Add static methods for creating Image and ImageTexturekobewi2022-07-081-3/+3
|
* Basic 3D renderingclayjohn2022-05-121-21/+2
|
* Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-2/+2
| | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* Narrow FileAccess scope to prevent deadlocks.bruvzg2022-04-121-7/+10
|
* Make FileAccess and DirAccess classes reference counted.bruvzg2022-04-111-12/+5
|
* Editor: Cleanup some includes dependenciesRémi Verschelde2022-02-151-0/+1
| | | | | | | | | | | Removes some unnecessary includes from `editor_node.h`, and instead add those where they're used. Removes unnecessary `editor_node.h` includes in various editor classes. Renames `dynamicfont` to `dynamic_font` in a couple files. Misc cleanup while jumping through that rabbit hole.
* Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-3/+3
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Replace String comparisons with "", String() to is_empty()Nathan Franke2021-12-091-1/+1
| | | | | | Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings
* Add GLES2 2D renderer + Linux display managerlawnjelly2021-10-301-97/+120
| | | | | | | | | First implementation with Linux display manager. - Add single-threaded mode for EditorResourcePreview (needed for OpenGL). Co-authored-by: clayjohn <claynjohn@gmail.com> Co-authored-by: Fabio Alessandrelli <fabio.alessandrelli@gmail.com>
* Replace references to VisualServer in code comments with RenderingServerHugo Locurcio2021-10-071-1/+1
| | | | VisualServer no longer exists in the `master` branch.
* Replace BIND_VMETHOD by new GDVIRTUAL syntaxreduz2021-08-221-15/+20
| | | | | | | | | | | * New syntax is type safe. * New syntax allows for type safe virtuals in native extensions. * New syntax permits extremely fast calling. Note: Everything was replaced where possible except for `_gui_input` `_input` and `_unhandled_input`. These will require API rework on a separate PR as they work different than the rest of the functions. Added a new method flag METHOD_FLAG_OBJECT_CORE, used internally. Allows to not dump the core virtuals like `_notification` to the json API, since each language will implement those as it is best fits.
* Optimize StringName usagereduz2021-07-181-2/+2
| | | | | | | | | | | * Added a new macro SNAME() that constructs and caches a local stringname. * Subsequent usages use the cached version. * Since these use a global static variable, a second refcounter of static usages need to be kept for cleanup time. * Replaced all theme usages by this new macro. * Replace all signal emission usages by this new macro. * Replace all call_deferred usages by this new macro. This is part of ongoing work to optimize GUI and the editor.