summaryrefslogtreecommitdiffhomepage
path: root/src/core.c
AgeCommit message (Collapse)Author
2016-07-13Review commentsraysan5
2016-07-06VR Functions renaming (for generic HMD device)Ray
Stereo rendering has been moved again to Begin3dMode() and End3dMode(), it has some limitations but makes more sense...
2016-07-04Moved Oculus enable drawing to user side...raysan5
Still thinking about the best way to manage this...
2016-07-04Redesigned stereo rendering mechanismRay
Now it's easier for the user! Just init Oculus device and get stereo rendering!
2016-06-26Corrected bug on stereo renderingraysan5
2016-06-26Get supported videomodes for fullscreenraysan5
2016-06-25Removed rlglInitGraphics(), integrated into rlglInit()raysan5
Redesigned rlgl usage: - rlViewport() must be called by user - Internal projection/modelview matrices must be setup by user
2016-06-25Unified functions: InitGraphicsDevice()raysan5
Following XNA style, now we have InitGraphicsDevice(), replacing InitDisplay() + InitGraphics()
2016-06-24Corrected issue with unclosed threadsraysan5
2016-06-21Add oculus simulator (in case device is not detected)raysan5
2016-06-21Simplify Oculus example...Ray
...to align it with standard raylib code. Final goal would be having the same code work for every platform with no changes...
2016-06-17Improving Oculus Rift example...Ray
Under design... looking for the easiest and most comprehensive way for the user to use VR...
2016-06-16Added support for OpenGL 2.1Ray
2016-06-14Move Oculus Rift support to rlgl moduleraysan5
2016-06-14Move OpenGL extensions loading to rlglraysan5
2016-06-12Oculus tracking correctionraysan5
2016-06-11Added some commentsraysan5
2016-06-08Simplified Oculus integrationraysan5
2016-06-06Reorganize external libraries - BREAKING CHANGE -Ray
Moved all external libraries used by raylib to external folder inside raylib src. Makefile has already been update and also the different includes in raylib modules.
2016-06-03Some gestures comments tweaks...raysan5
2016-06-03Work on Oculus functionalityraysan5
Trying to find the best way to integrate Oculus support into raylib, making it easy for the user...
2016-06-03Added support for Oculus Rift CV1Ray
2016-06-02Remove GLEW dependencyraysan5
2016-05-31Review text formatting (spacing, tabs...)raysan5
2016-05-31Support Android internal data storageRay
Useful to save small data files (configuration and so) For bigger files, external data storage should be used (SDCard)
2016-05-29Improved render to textureraysan5
Support render texture size different than screen size
2016-05-14Make GRAPHICS_API_OPENGL_33 work on OSX, closes #113Chris Hemingway
2016-05-07Comment tweakraysan5
2016-05-03Renamed function for consistencyraysan5
2016-05-02Reorganize functionsRay
2016-05-02Added 2D camera mode functionsRay
Removed BeginDrawingEx() Added Begin2dMode() and End2dMode()
2016-04-17Improved gestures systemraysan5
2016-04-17Make mouse inputs available on Android for...raysan5
... easy code porting, transalating them to touches and gestures internally. Removed function SetCustomCursor(), it can be managed by the user.
2016-04-08Removed functionraysan5
I decided it is redundant and could be confusing (when mixed with 3D drawing). It's not KISS.
2016-04-01Remove old postprocessing systemraysan5
2016-03-30Added support for render to texture (use RenderTexture2D)raysan5
Now it's possible to render to texture, old postprocessing system will be removed on next raylib version.
2016-03-28Setting up for raylib 1.5.0raysan5
2016-03-27Improved 2d camera system -IN PROGRESS-raysan5
2016-03-21Review Android button inputsraysan5
2016-03-20Corrected bug on touch positionraysan5
2016-03-20Understand mouse as touch in webraysan5
2016-03-20Improved windows resizing system...raysan5
...despite not being enabled on GLFW3
2016-03-17Improved 2D-3D drawingRay
Depth test disabled for 2D and only used on 3D; consequently LINES vs TRIANGLES vs QUADS buffers drawing order maters... but blending also works ok.
2016-03-17Add support for multiple gamepads on RPIRay
2016-03-16Improved gamepad supportRay
Now it works ok also in RaspberryPi
2016-03-06Improved function GetKeyPressed()raysan5
To support multiple keys (including function keys)
2016-03-05Support 2d camera system -IN PROGRESS-raysan5
2016-03-053d Camera: Added support for field-of-view Yraysan5
2016-03-03Replaced tabs by spacesRay
2016-03-02Review rlglUnproject() systemraysan5