summaryrefslogtreecommitdiffstats
path: root/src/graphics/opengl/test
Commit message (Collapse)AuthorAgeFilesLines
* Merge dev and dev-graphicsPiotr Dziwinski2013-01-071-1/+0
|\
| * Small fix in detecting language. Fixes needed to compile code using clangMarcin Zawadzki2013-01-051-1/+0
| |
* | Merge branch 'dev' into dev-graphicsPiotr Dziwinski2013-01-041-2/+5
|\|
| * Put common CXX flags in common variablesDidier Raboud2012-12-191-1/+2
| | | | | | | | | | CMAKE_CXX_FLAGS is taken into account in all builds; build-type-specific flags are appended to it.
| * Don't enforce CMake build type on users.Didier Raboud2012-12-191-1/+3
| | | | | | | | Only set CMAKE_BUILD_TYPE to Debug when no value is provided.
* | ComputeSphereVisibility and fixes in CEngine TODOsPiotr Dziwinski2012-10-202-2/+26
|/ | | | | | | - view frustum culling with ComputeSphereVisibility - game should run faster now - resolved/removed most TODOs from CEngine - fixed OpenGL tests
* Test fixPiotr Dziwinski2012-08-135-16/+17
|
* Change of paths in src/graphicsPiotr Dziwinski2012-07-262-3/+3
| | | | | - moved abstract core to src/graphics/core - moved proper graphics engine to src/graphics/engine
* Dynamic light managerPiotr Dziwinski2012-07-261-0/+1
| | | | - rewrote old CLight as CLightManager
* LightingPiotr Dziwinski2012-07-262-0/+449
| | | | | - fixed problems with lighting - added light_test
* Fixed bug in texturingPiotr Dziwinski2012-07-252-3/+10
|
* Refactoring of texture codePiotr Dziwinski2012-07-252-29/+19
| | | | | | | - refactored texture structs & functions - added note about OpenGL extensions - removed device.cpp as unnecessary - minor changes in CEngine
* Cursor drawingPiotr Dziwinski2012-07-231-3/+1
| | | | | - fixed cursor drawing in CEngine - changed event loop to generate more events
* Texture & mouse functions; refactoring & fixesPiotr Dziwinski2012-07-223-16/+18
| | | | | | | | | | | - cleaned up and added documentation to engine.h - refactored CEngine interface and associated structs - added mouse handling functions in CApplication & CEngine - fixed bugs in projection matrix setting - changed texture loading & handling - added const-values in CDevice & CGLDevice - changed event management in CApplication - other minor changes & bugfixes
* Fixed OpenGL transformationsPiotr Dziwinski2012-07-183-0/+353
| | | | | - fixed wrong order of transformations - added transform_test
* Fixes in texture loadingPiotr Dziwinski2012-07-163-5/+10
| | | | | | - added other texture formats: BGR and BGRA - fixed texture loading in model viewer - moved code from texture.cpp module to texture.h
* Fix in model loading; simple model viewerPiotr Dziwinski2012-07-154-5/+430
| | | | | | | | | - fixed model loading code - added simple model viewer (model_test) in src/graphics/opengl/test - added system time stamp code - split the code in app/system modules to separate headers - added debug messages in model loading - minor fixes in OpenGL engine
* Refactoring in math & texture modulesPiotr Dziwinski2012-07-061-185/+1
| | | | | | - moved texture-related structs to texture.h & code to texture.cpp - cleaned up texture test code - added Math:: namespace qualifiers to math modules for clarity
* Fixed bug with texturingPiotr Dziwinski2012-07-054-0/+396
- moved creation-time tex params to Gfx::TextureCreateParams - fixed bug with texture creation - added simple test for multitexturing