Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-11 | STARTREK: Adapt many usages of Common::SharedPtr() to regular pointers | Filippos Karapetis | |
2019-06-11 | STARTREK: Remove the FileStream wrapper class | Filippos Karapetis | |
2019-05-28 | STARTREK: Fixes to drawR3Shape; red planet renders | Matthew Stewart | |
2018-08-09 | STARTREK: Possible Fix for OUYA Toolchain Build Error. | D G Turner | |
The size of the void StarTrekEngine::drawR3Shape(R3 *r3) function is very large, and this is using quite a lot of large variables on the stack, rather than by heap allocation. The exact cause is unclear, but this provokes an internal GCC error / bug in the Android OUYA toolchain. To try to avoid this, this commit changes several of the large local allocations from stack to heap i.e. using new and delete[] to try to avoid this. | |||
2018-08-09 | STARTREK: Fix Various Compiler Warnings. | D G Turner | |
2018-08-09 | STARTREK: Compilation Fixes for Various Platforms. | D G Turner | |
2018-08-09 | STARTREK: Fix compilation on macOS | Eugene Sandulenko | |
nullptr is an object on macOS. | |||
2018-08-09 | STARTREK: Janitorial: Add end of namespace comments | Strangerke | |
2018-08-09 | STARTREK: Silence unused variable warning | Matthew Stewart | |
2018-08-09 | STARTREK: Reformat with artistic style | Matthew Stewart | |
2018-08-09 | STARTREK: Remove some gotos | Matthew Stewart | |
2018-08-09 | STARTREK: Half-done implementation of drawR3Shape | Matthew Stewart | |
Handles drawing, scaling, probably rotating objects in space. | |||
2018-08-09 | STARTREK: sine & cosine | Matthew Stewart | |
2018-08-09 | STARTREK: Implement fixed-point decimal class | Matthew Stewart | |
2018-08-09 | STARTREK: Move space functions into separate file | Matthew Stewart | |