summaryrefslogtreecommitdiffstats
path: root/src/graphics/core/device.h
Commit message (Collapse)AuthorAgeFilesLines
* 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-141-1/+16
|
* 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
* 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-291-5/+0
|
* Fixed texture regressionPiotr Dziwinski2012-09-291-1/+0
| | | | | There was a bug in texture modesetting but only visible after certain mode changes.
* Some fixes and optimizationsPiotr Dziwinski2012-09-291-0/+3
| | | | | | | | - 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
* Namespace and styling fixPiotr Dziwinski2012-09-191-128/+90
|
* Improved error messagesPiotr Dziwinski2012-08-131-3/+0
| | | | Added some logging and improved error messages displayed to user
* Fixes & testing in CEnginePiotr Dziwinski2012-08-121-2/+5
| | | | | - fixed bugs in settings modes, etc. - some additions and minor refactoring
* Documentation updatePiotr Dziwinski2012-08-111-1/+4
| | | | | | - updated Doxyfile - added/changed file, dir and namespace descriptions - fixed some errors in doxygen tags
* Render mode setting, refactoringPiotr Dziwinski2012-08-111-3/+3
| | | | | | - finished SetState in CEngine - refactored Size and IntSize back to Point and IntPoint - other minor changes in CEngine
* Basic font renderingPiotr Dziwinski2012-08-031-3/+6
| | | | | - added basic font rendering - minor refactoring & fixes
* Lines and line strip primitivesPiotr Dziwinski2012-07-301-3/+3
| | | | Will probably be useful
* Video mode changingPiotr Dziwinski2012-07-291-6/+4
| | | | | | - added video mode querying & changing - added joystick querying & changing - cleaned up CApplication interface
* Change of paths in src/graphicsPiotr Dziwinski2012-07-261-0/+414
- moved abstract core to src/graphics/core - moved proper graphics engine to src/graphics/engine