summaryrefslogtreecommitdiffstats
path: root/modules/bmp
Commit message (Collapse)AuthorAgeFilesLines
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|
* Support importing 1/2/4-bpp BMP images of size non-divisible by 8/4/2kleonc2024-08-131-57/+10
|
* Fix some typos in source.emacser02023-10-041-1/+1
|
* Adds some basic 16BPP BMP Support.ScorpionInc2023-04-122-5/+78
| | | | | | | | | | This commit adds some basic 16bpp support for BMP File Format. Added support for reading and using of 16 bit mask values from file. All values are scaled to ARGB255 format based on bit depth of source color channel. Removed warning, it's no longer required as 16 bit with alpha bit(s) are now supported. Adjusted spacing, added spacing and brackets to make clang static check happy.
* Merge pull request #67661 from cooperra/bmp-2bpp-loaderRémi Verschelde2023-01-191-1/+19
|\ | | | | | | BMP loader: Fix 2 bits-per-pixel images
| * Support 2 bits per pixel BMP imagesRobbie Cooper2022-10-191-1/+19
| |
* | One Copyright Update to rule them allRémi Verschelde2023-01-054-116/+116
|/ | | | | | | | | | | | | | | | | | | | 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".
* Make some Image methods statickobewi2022-10-141-2/+2
|
* [Core] Make ImageFormatLoader extensible.Fabio Alessandrelli2022-09-203-5/+6
|
* Make `ImageLoader` take bit field flagsYuri Sizov2022-08-232-2/+2
|
* Make "Godot source files" comment consistent in modulesAaron Franke2022-08-051-1/+1
|
* Refactor module initializationreduz2022-05-042-4/+14
| | | | | | | * Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
* Make FileAccess and DirAccess classes reference counted.bruvzg2022-04-112-9/+7
|
* Update copyright statements to 2022Rémi Verschelde2022-01-034-8/+8
| | | | Happy new year to the wonderful Godot community!
* clang-format: Disable alignment of operands, too unreliableRémi Verschelde2021-10-281-4/+2
| | | | | | | | | Sets `AlignOperands` to `DontAlign`. `clang-format` developers seem to mostly care about space-based indentation and every other version of clang-format breaks the bad mismatch of tabs and spaces that it seems to use for operand alignment. So it's better without, so that it respects our two-tabs `ContinuationIndentWidth`.
* Merge pull request #46555 from gongpha/line-ptr-more-than-size-bmpRémi Verschelde2021-10-031-0/+2
|\ | | | | Check if the line pointer goes away from the image buffer's EOF in the BMP importer
| * Check if the line pointer goes away from the image buffer's EOF in the BMP ↵Kongfa Waroros2021-03-021-0/+2
| | | | | | | | importer
* | Rename `instance()`->`instantiate()` when it's a verbLightning_A2021-06-191-1/+1
| |
* | Rename File::get_len() get_length()Marcel Admiraal2021-05-251-1/+1
| |
* | fix misaligned loads in bmp loaderMorris Tabor2021-05-081-16/+10
|/
* Initialize class/struct variables with default values in modules/Rafał Mikrut2021-02-081-15/+15
|
* Update copyright statements to 2021Rémi Verschelde2021-01-014-8/+8
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Add `Image.load_bmp_from_buffer()` for run-time BMP image loadingHugo Locurcio2020-10-201-3/+17
| | | | | This partially addresses https://github.com/godotengine/godot-proposals/issues/676.
* Add more error explanations in the BMP image loaderHugo Locurcio2020-08-181-12/+19
| | | | This closes #32166 and closes #30629.
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-1/+2
| | | | | Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-4/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Enforce use of bool literals instead of integersRémi Verschelde2020-05-141-2/+2
| | | | | Using clang-tidy's `modernize-use-bool-literals`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-bool-literals.html
* Replace NULL with nullptrlupoDharkael2020-04-022-3/+3
|
* SCons: Format buildsystem files with psf/blackRémi Verschelde2020-03-302-2/+3
| | | | | | | | | | | | | | | | | | | | | Configured for a max line length of 120 characters. psf/black is very opinionated and purposely doesn't leave much room for configuration. The output is mostly OK so that should be fine for us, but some things worth noting: - Manually wrapped strings will be reflowed, so by using a line length of 120 for the sake of preserving readability for our long command calls, it also means that some manually wrapped strings are back on the same line and should be manually merged again. - Code generators using string concatenation extensively look awful, since black puts each operand on a single line. We need to refactor these generators to use more pythonic string formatting, for which many options are available (`%`, `format` or f-strings). - CI checks and a pre-commit hook will be added to ensure that future buildsystem changes are well-formatted.
* Adding missing include guards to header files identified by LGTM.Rajat Goswami2020-03-231-0/+5
| | | | This addresses the issue godotengine/godot#37143
* PoolVector is gone, replaced by VectorJuan Linietsky2020-02-181-19/+19
| | | | | Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
* Update copyright statements to 2020Rémi Verschelde2020-01-014-8/+8
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Changed some code found by Clang Tidy and Coverityqarmin2019-09-221-115/+113
|
* Replace 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG' in rest of 'modules/'Robin Hübner2019-08-121-2/+2
|
* Fix BMP loader to distinguish between compression typesAndrii Doroshenko (Xrayez)2019-07-172-12/+14
| | | | | | | | | Some of the values in compression enumeration represent uncompressed formats: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/4e588f70-bd92-4a6f-b77f-35d0feaf7a57 This allows the loader to proceed with uncompressed formats. Note that loading compressed BMP's is still not supported.
* Fix BMP loader incorrectly interpreting color table sizeAndrii Doroshenko (Xrayez)2019-07-171-1/+1
| | | | | | Color table should exist for images with bit count <= 8. Importing 16-bit BMP images could also likely have a color table but they're not currently supported in Godot.
* Some code changed with Clang-Tidyqarmin2019-06-261-1/+1
|
* Fix always true/false valuesqarmin2019-06-201-6/+4
|
* Import 4/1 bit bmp imagesAndrii Doroshenko (Xrayez)2019-04-232-40/+140
| | | | | | | | | | | Add some sanity checks according to bmp specification. Read color table and index data within the same scope and then simply extend the color palette. This particular implementation has one limitation: not all 4/1 bit images can be imported as it requires bit unpacking (size dimensions must be a multiple of 8 for 1-bit and 2 (even) for 4-bit images).
* Merge pull request #24547 from Shinryuuji/masterHein-Pieter van Braam2019-04-232-34/+50
|\ | | | | Add support for 8bpp bmp files
| * Add support for 8bpp bmp filesShinryuuji2018-12-232-34/+50
| |
* | Update copyright statements to 2019Rémi Verschelde2019-01-014-8/+8
|/ | | | Happy new year to the wonderful Godot community!
* Fix warnings on release builds (not DEBUG_ENABLED)Rémi Verschelde2018-10-031-6/+3
| | | | | | | | | | | | | | | | | | | | | | | | Fixes the following Clang 5 warnings: ``` modules/bmp/image_loader_bmp.cpp:46:60: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare] modules/bmp/image_loader_bmp.cpp:48:61: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare] drivers/png/image_loader_png.cpp:231:20: warning: comparison of unsigned expression >= 0 is always true [-Wtautological-compare] scene/gui/graph_edit.cpp:1045:8: warning: comparison of constant 0 with expression of type 'bool' is always false [-Wtautological-constant-out-of-range-compare] core/class_db.cpp:812:13: warning: unused variable 'check' [-Wunused-variable] core/io/file_access_pack.cpp:172:11: warning: unused variable 'ver_rev' [-Wunused-variable] core/math/bsp_tree.cpp:195:13: warning: unused variable 'plane' [-Wunused-variable] core/math/bsp_tree.cpp:168:6: warning: unused variable 'plane_count' [-Wunused-variable] modules/gdscript/gdscript_function.cpp:685:10: warning: unused variable 'ok' [-Wunused-variable] modules/gdscript/gdscript_function.cpp:706:10: warning: unused variable 'ok' [-Wunused-variable] modules/gdscript/gdscript_function.cpp:755:19: warning: unused variable 'var_type' [-Wunused-variable] modules/gdscript/gdscript_function.cpp:1306:12: warning: unused variable 'err' [-Wunused-variable] modules/gdscript/gdscript_function.cpp:158:15: warning: unused function '_get_var_type' [-Wunused-function] modules/gdscript/gdscript_parser.cpp:750:20: warning: unused variable 'lv' [-Wunused-variable] modules/gdscript/gdscript_parser.cpp:59:15: warning: unused function '_find_function_name' [-Wunused-function] scene/main/node.cpp:2489:13: warning: unused function '_Node_debug_sn' [-Wunused-function] ```
* Make core/ includes absolute, remove subfolders from include pathRémi Verschelde2018-09-121-1/+1
| | | | | | This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
* Fix bits_per_pixel validation in BMP and TGA loader modules.Saracen2018-07-081-1/+1
|
* SCons: Pass env to modules can_build methodRémi Verschelde2018-05-301-3/+1
| | | | | | This allows to disable modules based on the environment, in particular `env[tools]` which tells us if we are building the editor or not.
* BMP moduleSaracen2018-04-306-0/+370