Age | Commit message (Collapse) | Author |
|
|
|
|
|
relooper)
|
|
|
|
|
|
|
|
|
|
the last remaining issue for it
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Perror formatting fix
|
|
|
|
makeSignOp, and add fuzz tests that now pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Make Mix_QuickLoad_RAW work again
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Reverse the order of function lookup in getCFunc() to avoid eval()
|
|
Add glVertex3i and glVertex2i calls
|
|
|
|
|
|
|
|
|
|
|
|
|
|
These are basically just aliases for the glVertex3f function.
Javascript seems to convert the integers to float values correctly.
However, I did not follow the code path through the immediate mode
emulation to know for sure. In my applications it works for "normal", small
values (e.g. 1, 500, 1000, ...).
|
|
|
|
|
|
Add CHECK_HEAP_ALIGN to perform runtime alignment checks
|
|
- putc is not declared -> replaced by fputc
- puts was used to output the user message which automatically
introduced an unwanted newline between user message and error
description -> replaced by fputs which does not add the newline
Signed-off-by: Michael Riss <Michael.Riss@gmx.de>
|
|
|
|
|
|
eval()
|
|
Adds a much cheaper CHECK_HEAP_ALIGN option to do heap access
alignment checks. Less extensive than SAFE_HEAP, but also much
cheaper.
|
|
|