summaryrefslogtreecommitdiffstats
path: root/src/graphics/core
Commit message (Collapse)AuthorAgeFilesLines
* Removed duplicate license headerkrzys-h2014-10-311-16/+0
|
* Added -headlesskrzys-h2014-10-312-0/+504
| | | | For automated stuff on devices without GPU
* Changed all occurences of PPC in the code to TerranovaTeamkrzys-h2014-10-147-107/+126
|
* Remove unused accessors from CDevicePiotr Dziwinski2014-08-121-39/+1
|
* Fix test compilationPiotr Dziwinski2014-06-261-1/+3
|
* implemented savefile screenshot featureMohamed Waheed2014-06-241-0/+3
|
* Added debug aids for lightingPiotr Dziwinski2013-06-171-0/+3
| | | | | | * displaying positions of current lights (F11) * dumping info to console (F10) * added assert() in suspicious place in CPyro
* Fixed variable shadowing warningsPiotr Dziwinski2013-05-271-4/+4
| | | | | * fixed -Wshadow warnings * refactored some constructors
* Fixed code formattingPiotr Dziwinski2013-05-278-1/+9
| | | | | | * moved braces to new lines * fixed some function/variable names * fixed whitespace issues
* Resizing is fully functional so it can be enabled by default.adiblol2013-05-251-1/+1
|
* Non-power-of-2 padding for background imagesPiotr Dziwinski2013-05-111-0/+5
| | | | | * added padding options * removed old hardcoded image sizes
* Fixed stupid error, tweaked ambient light colorsPiotr Dziwinski2013-02-281-0/+10
| | | | | | * fixed stupid error in light manager * tweaked ambient light colors to 0.1 of diffuse; colors should not be oversaturated now
* Corrected OpenGL extension detectionPiotr Dziwinski2013-01-051-3/+2
| | | | | | - corrected multitexture and VBO detection - GLEW is now a required library - minor CMakeLists refactoring
* Engine optimization - rewritten model managementPiotr Dziwinski2012-12-261-6/+15
| | | | | | | | - new class CModelManager - rewritten engine object structure in CEngine - created shared model data instead of separate objects per each model instance - minor refactoring
* Static objects using OpenGL VBOs and display listsPiotr Dziwinski2012-12-142-17/+20
|
* ComputeSphereVisibility and fixes in CEngine TODOsPiotr Dziwinski2012-10-201-14/+15
| | | | | | | - view frustum culling with ComputeSphereVisibility - game should run faster now - resolved/removed most TODOs from CEngine - fixed OpenGL tests
* Merge branch 'dev-graphics' into devPiotr Dziwinski2012-10-052-2/+10
|\
| * CParticle rewritePiotr Dziwinski2012-10-051-0/+8
| |
| * Spot light angle fixPiotr Dziwinski2012-10-031-2/+2
| |
* | Disabled window resizePiotr Dziwinski2012-10-051-1/+1
|/
* Font coloring; fix for resize hackPiotr Dziwinski2012-09-301-4/+6
| | | | | | - added font coloring and changed default color to black - fixed resize hack incorrectly changing video config, but font resizing will not work for now
* Dirty hack to allow window resizing or even full screen.adiblol2012-09-301-1/+1
| | | | | Currently makes text buggy! (full screen must be initiated by window manager, for example Alt+F11 in Fluxbox)
* Fix for transparent objects and fadeoutsPiotr Dziwinski2012-09-292-5/+4
|
* Fixed texture regressionPiotr Dziwinski2012-09-292-3/+1
| | | | | There was a bug in texture modesetting but only visible after certain mode changes.
* Some fixes and optimizationsPiotr Dziwinski2012-09-293-18/+40
| | | | | | | | - fixed 2nd texture setting - added padding to some structs for faster access - changed rendering primitives to glDrawArrays() - optimized texture modesetting calls - fixed some valgrind errors
* Refactored resource and relief loadingPiotr Dziwinski2012-09-261-0/+29
| | | | | - now loading can be from any image format - added IntColor struct for precise pixel operations
* Fog color fix; refactoringPiotr Dziwinski2012-09-261-13/+5
| | | | | | - fixed fog color setting - removed unused glSecondaryColor and altered struct VertexCol - minor refactoring in CText
* Namespace and styling fixPiotr Dziwinski2012-09-197-212/+203
|
* half of task compile.Zaba9992012-09-111-0/+1
|
* CTerrain refactoring & fixesPiotr Dziwinski2012-09-082-12/+12
| | | | | - refactored CTerrain code - fixed some minor bugs
* Improved error messagesPiotr Dziwinski2012-08-131-3/+0
| | | | Added some logging and improved error messages displayed to user
* Object handling in CEnginePiotr Dziwinski2012-08-122-9/+28
| | | | | | - finished rewriting CEngine object, shadow, etc. handling - refactored texture code - added new log levels
* Fixes & testing in CEnginePiotr Dziwinski2012-08-121-2/+5
| | | | | - fixed bugs in settings modes, etc. - some additions and minor refactoring
* Documentation updatePiotr Dziwinski2012-08-117-12/+31
| | | | | | - updated Doxyfile - added/changed file, dir and namespace descriptions - fixed some errors in doxygen tags
* Render mode setting, refactoringPiotr Dziwinski2012-08-112-5/+5
| | | | | | - finished SetState in CEngine - refactored Size and IntSize back to Point and IntPoint - other minor changes in CEngine
* Partial CEngine implementationPiotr Dziwinski2012-08-101-1/+5
| | | | | - added rewritten implementation for basic modesetting in CEngine - started rewriting proper rendering and object handling in CEngine
* Basic font renderingPiotr Dziwinski2012-08-031-3/+6
| | | | | - added basic font rendering - minor refactoring & fixes
* Switched to new style castsPiotr Dziwinski2012-07-302-3/+3
| | | | | | - rewrote old C-style casts to new ..._cast<> - corrected some dangerous casts - added -Wold-style-cast to compile flags
* Lines and line strip primitivesPiotr Dziwinski2012-07-301-3/+3
| | | | Will probably be useful
* Video mode changingPiotr Dziwinski2012-07-292-11/+9
| | | | | | - added video mode querying & changing - added joystick querying & changing - cleaned up CApplication interface
* Change of paths in src/graphicsPiotr Dziwinski2012-07-268-0/+1137
- moved abstract core to src/graphics/core - moved proper graphics engine to src/graphics/engine