aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-06-01Corrected some issues on OpenGL 1.1raysan5
2016-05-31Review text formatting (spacing, tabs...)raysan5
2016-05-31Removed colTint, tint color is colDiffuseraysan5
Tint color could be applied to colDiffuse... but what's the best way? Replace it? Multiply by? A point to think about...
2016-05-31Improved library consistencyraysan5
Functions renamed to improve library consistency
2016-05-30Merge remote-tracking branch 'refs/remotes/raysan5/develop' into developJoshua Reisenauer
2016-05-31Reviewed DrawLight() function and some tweaksRay
2016-05-30Merge remote-tracking branch 'refs/remotes/raysan5/develop' into developJoshua Reisenauer
2016-05-30update to openalJoshua Reisenauer
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-30Added tint color attribute to material data typevictorfisac
It tints all fragments, ignores lighting. Useful for some features like feedback (damage color, ...).
2016-05-30Remove normal depthvictorfisac
Scaling normal depth (y axis) makes disappear the specular of fragments... So I think it can be removed, it is not a very useful/important attribute.
2016-05-30Add normal and specular maps to draw model processvictorfisac
2016-05-30Add Draw3DCircle function and update raylib and rlgl headervictorfisac
Draw3DCircle is useful to draw point lights radius.
2016-05-29Improved render to textureraysan5
Support render texture size different than screen size
2016-05-25Merge remote-tracking branch 'refs/remotes/raysan5/develop' into developJoshua Reisenauer
2016-05-25Renamed shader variables (more generic names)raysan5
2016-05-25Renamed shader variables (more generic names)raysan5
Now shader maps use a generic naming convention for any kind of texture maps (not only diffuse, normal or specular). Useful for custom shaders.
2016-05-23better build systemJoshua Reisenauer
2016-05-21Fix small bug and spacingvictorfisac
2016-05-21Add standard lighting (2/3)victorfisac
- 3 light types added (point, directional, spot). - DrawLights() function added using line shapes. - Standard lighting example added. - Removed useless struct variables from material and light. - Fixed light attributes dynamic locations errors. - Standard vertex and fragment shaders temporally added until rewrite it as char pointers in rlgl. TODO: - Add normal and specular maps calculations in standard shader. - Add control structs to handle which attributes needs to be calculated (textures, specular...). - Adapt standard shader to version 110. - Rewrite standard shader as char pointers in rlgl.
2016-05-21Add Draw3DLine function and fixed MLT glossiness import valuevictorfisac
In standard shader, material glossiness is a value from 0 to 1000 like in MLT files. So, it doesn't need to be normalized.
2016-05-21Fix some audio module compile warningsvictorfisac
2016-05-20Add standard lighting (1/3)victorfisac
- Ambient and lambert lighting added. - Ambient and diffuse colors linked to standard shader. - Single light linked to standard shader. - LoadStandardMaterial() and depending functions added.
2016-05-20Comented buggy code to avoid problems...raysan5
...on model drawing
2016-05-20Improved MTL loading shininess valuevictorfisac
2016-05-20Fix small warningvictorfisac
Material glossiness is a float type value...
2016-05-20Add lighting system -IN PROGRESS-raysan5
Improved materials
2016-05-20Updated to avoid pointersraysan5
2016-05-20Review struct typedef to avoid pointers for usersraysan5
2016-05-20Remove TODO comments (already done)raysan5
2016-05-20Support DYNAMIC_DRAW mesh loadingraysan5
2016-05-19windows automated compileJoshua Reisenauer
Only works when raylib is installed on windows system.
2016-05-19Buffer for raw audioJoshua Reisenauer
2016-05-19Merge remote-tracking branch 'refs/remotes/raysan5/develop' into newaudioJoshua Reisenauer
2016-05-19name correctionJoshua Reisenauer
2016-05-19Corrected namingsraysan5
2016-05-18Reorganize data for consistencyraysan5
2016-05-15renamed everything so it is obvious what it doesJoshua Reisenauer
2016-05-15logic bug fixJoshua Reisenauer
2016-05-14clean up on buffering and preconditionsJoshua Reisenauer
2016-05-14new function to check if music stream is readyJoshua Reisenauer
_g naming convention for globals, new error exit numbers.
2016-05-14corrected typosJoshua Reisenauer
2016-05-14Make GRAPHICS_API_OPENGL_33 work on OSX, closes #113Chris Hemingway
2016-05-12bug fixesJoshua Reisenauer
2016-05-12Merge remote-tracking branch 'refs/remotes/raysan5/develop' into newaudioJoshua Reisenauer
2016-05-12buffering of music now uses update audio contextJoshua Reisenauer
2016-05-12Added QuaternionInvert()raysan5
2016-05-12Simplified internal (default) dynamic buffersraysan5
2016-05-11apply index to remaining functionsJoshua Reisenauer
2016-05-11PlayMusicStream now uses indexJoshua Reisenauer