summaryrefslogtreecommitdiffstats
path: root/src/common/image.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'dev' into dev-physfskrzys-h2014-10-141-15/+18
|\ | | | | | | | | Conflicts: data
| * Changed all occurences of PPC in the code to TerranovaTeamkrzys-h2014-10-141-15/+18
| |
* | Merge branch 'dev' into dev-physfskrzys-h2014-07-111-0/+41
|\| | | | | | | | | | | | | | | | | Conflicts: data src/app/gamedata.cpp src/ui/control.cpp src/ui/edit.cpp src/ui/maindialog.cpp
| * formatting and enhancements for savefile screenshot featureMohamed Waheed2014-06-241-16/+17
| |
| * implemented savefile screenshot featureMohamed Waheed2014-06-241-0/+40
| |
* | Fixed texture and script loadingkrzys-h2014-07-101-1/+10
| |
* | Big part of PhysFS supportKrzysztof Dermont2014-06-201-1/+2
|/ | | | | | | | | | | * removed -mod argument * removed -datadir argument * removed -lang argument * removed some dead ui code * added resource manager and file loaders (stream and SDL) * changed interface textures location to match new directory structure * removed CGameData for mod support * added PhysFS support
* Fix for crash when loading PNG in indexed modePiotr Dziwinski2013-11-151-5/+25
| | | | For example, some icons in SatCom
* Fixed code formattingPiotr Dziwinski2013-05-271-1/+3
| | | | | | * moved braces to new lines * fixed some function/variable names * fixed whitespace issues
* Non-power-of-2 padding for background imagesPiotr Dziwinski2013-05-111-0/+29
| | | | | * added padding options * removed old hardcoded image sizes
* Fixes for compiling on MSYSPiotr Dziwinski2013-03-221-2/+2
| | | | | | * fixed SDL_main() and putenv() issues * disabled desktop subdir for MSYS * disabled building CBot_console for now
* Merge branch 'dev' into dev-graphicsPiotr Dziwinski2013-01-041-2/+2
|\
| * Replaced malloc/free with new/deletePiotr Dziwinski2012-12-281-2/+2
| | | | | | | | | | | | - now new/delete used everywhere except for CBotStack, which has to be fixed in other way - some segfaults should be fixed with this
* | Ground spot texture drawingPiotr Dziwinski2012-10-201-0/+9
|/
* Doxygen/comment fixes and some #include refactoringPiotr Dziwinski2012-10-171-2/+1
|
* Fixed bugs in texture coloringPiotr Dziwinski2012-09-301-4/+4
|
* Map texture paintingPiotr Dziwinski2012-09-301-0/+7
|
* Refactored resource and relief loadingPiotr Dziwinski2012-09-261-8/+27
| | | | | - now loading can be from any image format - added IntColor struct for precise pixel operations
* Image pixel read/writePiotr Dziwinski2012-09-131-14/+128
|
* Switched to new style castsPiotr Dziwinski2012-07-301-3/+3
| | | | | | - rewrote old C-style casts to new ..._cast<> - corrected some dangerous casts - added -Wold-style-cast to compile flags
* Multitexturing supportPiotr Dziwinski2012-07-041-0/+221
- added CImage class for loading/saving images and a simple test for it - added libpng library to build - added Gfx::Texture struct - updated the Gfx::CDevice interface to include new features - implemented the new features in Gfx::CGLDevice