This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EAGLContext *aContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2]; | |
if (!aContext) { | |
aContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES1]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(cond (= <some future dynamic path>) | |
(return-dynamic-content ...) | |
<other dynamic paths> | |
(static-files/file-exists? (:uri request)) (return-file ...) | |
:else (return-404)) |
NewerOlder