2014-09-16 22:51:31 +02:00
/**********************************************************************************************
2014-09-03 16:51:28 +02:00
*
2020-11-19 20:01:40 +01:00
* rlgl v3 .1 - raylib OpenGL abstraction layer
2014-09-03 16:51:28 +02:00
*
2018-06-30 21:56:26 +02:00
* rlgl is a wrapper for multiple OpenGL versions ( 1.1 , 2.1 , 3.3 Core , ES 2.0 ) to
* pseudo - OpenGL 1.1 style functions ( rlVertex , rlTranslate , rlRotate . . . ) .
2016-11-16 18:46:13 +01:00
*
2018-06-30 21:56:26 +02:00
* When chosing an OpenGL version greater than OpenGL 1.1 , rlgl stores vertex data on internal
2016-11-16 18:46:13 +01:00
* VBO buffers ( and VAOs if available ) . It requires calling 3 functions :
2021-02-09 13:29:01 -08:00
* rlglInit ( ) - Initialize internal buffers and auxiliary resources
2016-11-16 18:46:13 +01:00
* rlglDraw ( ) - Process internal buffers and send required draw calls
* rlglClose ( ) - De - initialize internal buffers data and other auxiliar resources
*
2017-03-20 20:34:44 +01:00
* CONFIGURATION :
*
* # define GRAPHICS_API_OPENGL_11
* # define GRAPHICS_API_OPENGL_21
* # define GRAPHICS_API_OPENGL_33
* # define GRAPHICS_API_OPENGL_ES2
2017-04-30 13:03:31 +02:00
* Use selected OpenGL graphics backend , should be supported by platform
2018-06-30 21:56:26 +02:00
* Those preprocessor defines are only used on rlgl module , if OpenGL version is
2017-04-30 13:03:31 +02:00
* required by any other module , use rlGetVersion ( ) tocheck it
2017-03-20 20:34:44 +01:00
*
2018-07-16 17:53:47 +02:00
* # define RLGL_IMPLEMENTATION
* Generates the implementation of the library into the included file .
* If not defined , the library is in header only mode and can be included in other headers
* or source files without problems . But only ONE file should hold the implementation .
*
2017-03-20 20:34:44 +01:00
* # define RLGL_STANDALONE
* Use rlgl as standalone library ( no raylib dependency )
*
2018-04-07 22:29:53 +02:00
* # define SUPPORT_VR_SIMULATOR
2017-03-20 20:34:44 +01:00
* Support VR simulation functionality ( stereo rendering )
*
* DEPENDENCIES :
2016-11-16 18:46:13 +01:00
* raymath - 3 D math functionality ( Vector3 , Matrix , Quaternion )
* GLAD - OpenGL extensions loading ( OpenGL 3.3 Core only )
*
*
2017-03-20 20:34:44 +01:00
* LICENSE : zlib / libpng
2014-09-03 16:51:28 +02:00
*
2021-01-02 18:15:13 +01:00
* Copyright ( c ) 2014 - 2021 Ramon Santamaria ( @ raysan5 )
2014-09-03 16:51:28 +02:00
*
* This software is provided " as-is " , without any express or implied warranty . In no event
2014-03-25 12:40:35 +01:00
* will the authors be held liable for any damages arising from the use of this software .
*
2014-09-03 16:51:28 +02:00
* Permission is granted to anyone to use this software for any purpose , including commercial
2014-03-25 12:40:35 +01:00
* applications , and to alter it and redistribute it freely , subject to the following restrictions :
*
2014-09-03 16:51:28 +02:00
* 1. The origin of this software must not be misrepresented ; you must not claim that you
* wrote the original software . If you use this software in a product , an acknowledgment
2014-03-25 12:40:35 +01:00
* in the product documentation would be appreciated but is not required .
*
* 2. Altered source versions must be plainly marked as such , and must not be misrepresented
* as being the original software .
*
* 3. This notice may not be removed or altered from any source distribution .
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# ifndef RLGL_H
# define RLGL_H
2017-05-08 02:47:44 +02:00
# if defined(RLGL_STANDALONE)
2016-03-20 13:39:27 +01:00
# define RAYMATH_STANDALONE
2018-07-25 10:36:18 +02:00
# define RAYMATH_HEADER_ONLY
2020-02-03 19:26:28 +01:00
2020-01-19 11:23:27 +01:00
# define RLAPI // We are building or using rlgl as a static library (or Linux shared library)
2019-05-08 18:33:09 +02:00
2020-01-19 11:23:27 +01:00
# if defined(_WIN32)
# if defined(BUILD_LIBTYPE_SHARED)
# define RLAPI __declspec(dllexport) // We are building raylib as a Win32 shared library (.dll)
# elif defined(USE_LIBTYPE_SHARED)
# define RLAPI __declspec(dllimport) // We are using raylib as a Win32 shared library (.dll)
# endif
2019-04-22 18:25:30 +02:00
# endif
2020-02-03 19:26:28 +01:00
2020-02-03 19:13:24 +01:00
// Support TRACELOG macros
2020-02-26 20:23:06 +01:00
# if !defined(TRACELOG)
2020-02-03 19:25:05 +01:00
# define TRACELOG(level, ...) (void)0
# define TRACELOGD(...) (void)0
2020-02-03 19:13:24 +01:00
# endif
2019-05-08 18:33:09 +02:00
2019-04-23 15:14:15 +02:00
// Allow custom memory allocators
# ifndef RL_MALLOC
# define RL_MALLOC(sz) malloc(sz)
# endif
# ifndef RL_CALLOC
# define RL_CALLOC(n,sz) calloc(n,sz)
# endif
2020-01-19 11:23:38 +01:00
# ifndef RL_REALLOC
# define RL_REALLOC(n,sz) realloc(n,sz)
# endif
2019-04-23 15:14:15 +02:00
# ifndef RL_FREE
# define RL_FREE(p) free(p)
# endif
2017-05-08 02:47:44 +02:00
# else
2020-02-03 19:13:24 +01:00
# include "raylib.h" // Required for: Model, Shader, Texture2D, TRACELOG()
2016-03-20 13:39:27 +01:00
# endif
2016-06-02 01:26:44 +02:00
# include "raymath.h" // Required for: Vector3, Matrix
2015-08-05 19:18:40 +02:00
2014-09-16 22:51:31 +02:00
// Security check in case no GRAPHICS_API_OPENGL_* defined
2018-07-16 17:53:47 +02:00
# if !defined(GRAPHICS_API_OPENGL_11) && \
! defined ( GRAPHICS_API_OPENGL_21 ) & & \
! defined ( GRAPHICS_API_OPENGL_33 ) & & \
! defined ( GRAPHICS_API_OPENGL_ES2 )
# define GRAPHICS_API_OPENGL_33
2014-09-16 22:51:31 +02:00
# endif
// Security check in case multiple GRAPHICS_API_OPENGL_* defined
# if defined(GRAPHICS_API_OPENGL_11)
2016-06-16 20:25:50 +02:00
# if defined(GRAPHICS_API_OPENGL_21)
# undef GRAPHICS_API_OPENGL_21
# endif
2014-09-16 22:51:31 +02:00
# if defined(GRAPHICS_API_OPENGL_33)
# undef GRAPHICS_API_OPENGL_33
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
# undef GRAPHICS_API_OPENGL_ES2
# endif
# endif
2014-03-25 12:40:35 +01:00
2016-06-16 20:25:50 +02:00
# if defined(GRAPHICS_API_OPENGL_21)
# define GRAPHICS_API_OPENGL_33
# endif
2020-07-17 19:41:38 +02:00
# define SUPPORT_RENDER_TEXTURES_HINT
2014-03-25 12:40:35 +01:00
//----------------------------------------------------------------------------------
// Defines and Macros
//----------------------------------------------------------------------------------
2020-05-01 17:34:43 +02:00
// Default internal render batch limits
# ifndef DEFAULT_BATCH_BUFFER_ELEMENTS
# if defined(GRAPHICS_API_OPENGL_11) || defined(GRAPHICS_API_OPENGL_33)
// This is the maximum amount of elements (quads) per batch
// NOTE: Be careful with text, every letter maps to a quad
# define DEFAULT_BATCH_BUFFER_ELEMENTS 8192
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2020-05-01 17:34:43 +02:00
// We reduce memory sizes for embedded systems (RPI and HTML5)
2020-11-03 23:47:33 +01:00
// NOTE: On HTML5 (emscripten) this is allocated on heap,
2020-05-01 17:34:43 +02:00
// by default it's only 16MB!...just take care...
# define DEFAULT_BATCH_BUFFER_ELEMENTS 2048
# endif
# endif
# ifndef DEFAULT_BATCH_BUFFERS
# define DEFAULT_BATCH_BUFFERS 1 // Default number of batch buffers (multi-buffering)
# endif
# ifndef DEFAULT_BATCH_DRAWCALLS
# define DEFAULT_BATCH_DRAWCALLS 256 // Default number of batch draw calls (by state changes: mode, texture)
2014-09-16 22:51:31 +02:00
# endif
2020-10-31 11:48:44 +01:00
# ifndef MAX_BATCH_ACTIVE_TEXTURES
# define MAX_BATCH_ACTIVE_TEXTURES 4 // Maximum number of additional textures that can be activated on batch drawing (SetShaderValueTexture())
# endif
2014-03-25 12:40:35 +01:00
2020-05-01 17:34:43 +02:00
// Internal Matrix stack
# ifndef MAX_MATRIX_STACK_SIZE
# define MAX_MATRIX_STACK_SIZE 32 // Maximum size of Matrix stack
2020-01-24 18:36:20 +01:00
# endif
2018-12-11 18:54:48 +01:00
2021-02-21 12:09:52 +01:00
// Vertex buffers id limit
# ifndef MAX_MESH_VERTEX_BUFFERS
# define MAX_MESH_VERTEX_BUFFERS 7 // Maximum vertex buffers (VBO) per mesh
# endif
2019-08-07 00:32:44 +02:00
// Shader and material limits
2020-05-01 17:34:43 +02:00
# ifndef MAX_SHADER_LOCATIONS
# define MAX_SHADER_LOCATIONS 32 // Maximum number of shader locations supported
# endif
# ifndef MAX_MATERIAL_MAPS
# define MAX_MATERIAL_MAPS 12 // Maximum number of shader maps supported
# endif
2019-08-07 00:32:44 +02:00
2020-05-01 17:34:43 +02:00
// Projection matrix culling
# ifndef RL_CULL_DISTANCE_NEAR
# define RL_CULL_DISTANCE_NEAR 0.01 // Default near cull distance
2020-04-05 17:50:37 +02:00
# endif
2020-05-01 17:34:43 +02:00
# ifndef RL_CULL_DISTANCE_FAR
# define RL_CULL_DISTANCE_FAR 1000.0 // Default far cull distance
2020-04-05 17:50:37 +02:00
# endif
2016-10-27 13:40:48 +02:00
// Texture parameters (equivalent to OpenGL defines)
2016-10-29 22:17:19 +02:00
# define RL_TEXTURE_WRAP_S 0x2802 // GL_TEXTURE_WRAP_S
# define RL_TEXTURE_WRAP_T 0x2803 // GL_TEXTURE_WRAP_T
# define RL_TEXTURE_MAG_FILTER 0x2800 // GL_TEXTURE_MAG_FILTER
# define RL_TEXTURE_MIN_FILTER 0x2801 // GL_TEXTURE_MIN_FILTER
2021-03-03 19:47:37 +01:00
# define RL_TEXTURE_FILTER_NEAREST 0x2600 // GL_NEAREST
# define RL_TEXTURE_FILTER_LINEAR 0x2601 // GL_LINEAR
# define RL_TEXTURE_FILTER_MIP_NEAREST 0x2700 // GL_NEAREST_MIPMAP_NEAREST
# define RL_TEXTURE_FILTER_NEAREST_MIP_LINEAR 0x2702 // GL_NEAREST_MIPMAP_LINEAR
# define RL_TEXTURE_FILTER_LINEAR_MIP_NEAREST 0x2701 // GL_LINEAR_MIPMAP_NEAREST
# define RL_TEXTURE_FILTER_MIP_LINEAR 0x2703 // GL_LINEAR_MIPMAP_LINEAR
# define RL_TEXTURE_FILTER_ANISOTROPIC 0x3000 // Anisotropic filter (custom identifier)
2016-10-29 22:17:19 +02:00
2021-03-03 19:47:37 +01:00
# define RL_TEXTURE_WRAP_REPEAT 0x2901 // GL_REPEAT
# define RL_TEXTURE_WRAP_CLAMP 0x812F // GL_CLAMP_TO_EDGE
# define RL_TEXTURE_WRAP_MIRROR_REPEAT 0x8370 // GL_MIRRORED_REPEAT
# define RL_TEXTURE_WRAP_MIRROR_CLAMP 0x8742 // GL_MIRROR_CLAMP_EXT
2016-10-27 13:40:48 +02:00
2017-03-20 20:34:44 +01:00
// Matrix modes (equivalent to OpenGL)
2018-06-30 21:56:26 +02:00
# define RL_MODELVIEW 0x1700 // GL_MODELVIEW
2017-03-20 20:34:44 +01:00
# define RL_PROJECTION 0x1701 // GL_PROJECTION
# define RL_TEXTURE 0x1702 // GL_TEXTURE
// Primitive assembly draw modes
# define RL_LINES 0x0001 // GL_LINES
# define RL_TRIANGLES 0x0004 // GL_TRIANGLES
# define RL_QUADS 0x0007 // GL_QUADS
2014-03-25 12:40:35 +01:00
//----------------------------------------------------------------------------------
// Types and Structures Definition
//----------------------------------------------------------------------------------
2016-10-27 13:40:48 +02:00
typedef enum { OPENGL_11 = 1 , OPENGL_21 , OPENGL_33 , OPENGL_ES_20 } GlVersion ;
2020-09-18 02:11:49 +02:00
typedef enum {
2020-09-18 11:37:57 +02:00
RL_ATTACHMENT_COLOR_CHANNEL0 = 0 ,
RL_ATTACHMENT_COLOR_CHANNEL1 ,
RL_ATTACHMENT_COLOR_CHANNEL2 ,
RL_ATTACHMENT_COLOR_CHANNEL3 ,
RL_ATTACHMENT_COLOR_CHANNEL4 ,
RL_ATTACHMENT_COLOR_CHANNEL5 ,
RL_ATTACHMENT_COLOR_CHANNEL6 ,
RL_ATTACHMENT_COLOR_CHANNEL7 ,
RL_ATTACHMENT_DEPTH = 100 ,
RL_ATTACHMENT_STENCIL = 200 ,
2020-09-18 02:11:49 +02:00
} FramebufferAttachType ;
2016-11-15 19:15:25 +01:00
2020-09-18 11:37:57 +02:00
typedef enum {
RL_ATTACHMENT_CUBEMAP_POSITIVE_X = 0 ,
RL_ATTACHMENT_CUBEMAP_NEGATIVE_X ,
RL_ATTACHMENT_CUBEMAP_POSITIVE_Y ,
RL_ATTACHMENT_CUBEMAP_NEGATIVE_Y ,
RL_ATTACHMENT_CUBEMAP_POSITIVE_Z ,
RL_ATTACHMENT_CUBEMAP_NEGATIVE_Z ,
RL_ATTACHMENT_TEXTURE2D = 100 ,
RL_ATTACHMENT_RENDERBUFFER = 200 ,
} FramebufferTexType ;
2016-01-20 18:20:05 +01:00
# if defined(RLGL_STANDALONE)
2015-08-05 19:18:40 +02:00
# ifndef __cplusplus
// Boolean type
typedef enum { false , true } bool ;
# endif
// Color type, RGBA (32bit)
typedef struct Color {
unsigned char r ;
unsigned char g ;
unsigned char b ;
unsigned char a ;
} Color ;
2020-02-03 19:26:28 +01:00
2020-02-03 18:31:30 +01:00
// Rectangle type
typedef struct Rectangle {
float x ;
float y ;
float width ;
float height ;
} Rectangle ;
2018-06-30 21:56:26 +02:00
2020-09-28 00:40:32 +02:00
// Texture type
2017-04-30 13:03:31 +02:00
// NOTE: Data stored in GPU memory
2020-09-28 00:40:32 +02:00
typedef struct Texture {
2017-04-30 13:03:31 +02:00
unsigned int id ; // OpenGL texture id
int width ; // Texture base width
int height ; // Texture base height
int mipmaps ; // Mipmap levels, 1 by default
2018-01-06 13:43:48 +01:00
int format ; // Data format (PixelFormat)
2020-09-28 00:40:32 +02:00
} Texture ;
2015-08-05 19:18:40 +02:00
2020-09-28 00:40:32 +02:00
// Texture2D type, same as Texture
typedef Texture Texture2D ;
2019-02-04 16:28:17 +01:00
2020-09-28 00:40:32 +02:00
// TextureCubemap type, actually, same as Texture
typedef Texture TextureCubemap ;
2019-02-04 16:28:17 +01:00
2016-05-11 19:25:51 +02:00
// Vertex data definning a mesh
2016-01-18 13:36:18 +01:00
typedef struct Mesh {
2016-05-31 19:12:37 +02:00
int vertexCount ; // number of vertices stored in arrays
int triangleCount ; // number of triangles stored (indexed or not)
float * vertices ; // vertex position (XYZ - 3 components per vertex) (shader-location = 0)
float * texcoords ; // vertex texture coordinates (UV - 2 components per vertex) (shader-location = 1)
float * texcoords2 ; // vertex second texture coordinates (useful for lightmaps) (shader-location = 5)
float * normals ; // vertex normals (XYZ - 3 components per vertex) (shader-location = 2)
2018-02-24 12:31:32 +01:00
float * tangents ; // vertex tangents (XYZW - 4 components per vertex) (shader-location = 4)
2016-05-31 19:12:37 +02:00
unsigned char * colors ; // vertex colors (RGBA - 4 components per vertex) (shader-location = 3)
unsigned short * indices ; // vertex indices (in case vertex data comes indexed)
2018-11-06 15:10:50 +01:00
2018-07-24 18:52:56 +02:00
// Animation vertex data
2019-04-04 13:32:17 +02:00
float * animVertices ; // Animated vertex positions (after bones transformations)
float * animNormals ; // Animated normals (after bones transformations)
2019-04-05 17:08:46 +02:00
int * boneIds ; // Vertex bone ids, up to 4 bones influence by vertex (skinning)
float * boneWeights ; // Vertex bone weight, up to 4 bones influence by vertex (skinning)
2018-07-24 18:52:56 +02:00
// OpenGL identifiers
2016-05-31 19:12:37 +02:00
unsigned int vaoId ; // OpenGL Vertex Array Object id
2019-08-07 00:32:44 +02:00
unsigned int * vboId ; // OpenGL Vertex Buffer Objects id (7 types of vertex data)
2016-01-18 13:36:18 +01:00
} Mesh ;
2018-06-30 21:56:26 +02:00
2017-07-17 00:33:40 +02:00
// Shader type (generic)
2015-03-01 16:00:52 +01:00
typedef struct Shader {
2019-08-07 00:32:44 +02:00
unsigned int id ; // Shader program id
int * locs ; // Shader locations array (MAX_SHADER_LOCATIONS)
2015-03-01 16:00:52 +01:00
} Shader ;
2017-07-17 00:33:40 +02:00
// Material texture map
2017-07-19 10:09:34 +02:00
typedef struct MaterialMap {
2017-07-19 19:53:53 +02:00
Texture2D texture ; // Material map texture
Color color ; // Material map color
float value ; // Material map value
2017-07-19 10:09:34 +02:00
} MaterialMap ;
2016-05-31 18:15:53 +02:00
2017-07-17 00:33:40 +02:00
// Material type (generic)
typedef struct Material {
2017-07-19 19:53:53 +02:00
Shader shader ; // Material shader
2019-08-07 00:32:44 +02:00
MaterialMap * maps ; // Material maps (MAX_MATERIAL_MAPS)
2017-07-19 19:53:53 +02:00
float * params ; // Material generic parameters (if required)
2016-03-06 02:05:16 +01:00
} Material ;
2016-08-16 11:09:55 +02:00
2016-05-31 19:12:37 +02:00
// Camera type, defines a camera position/orientation in 3d space
typedef struct Camera {
Vector3 position ; // Camera position
Vector3 target ; // Camera target it looks-at
Vector3 up ; // Camera up vector (rotation over its axis)
float fovy ; // Camera field-of-view apperture in Y (degrees)
} Camera ;
2018-06-30 21:56:26 +02:00
2017-10-17 13:32:15 +02:00
// Head-Mounted-Display device parameters
typedef struct VrDeviceInfo {
int hResolution ; // HMD horizontal resolution in pixels
int vResolution ; // HMD vertical resolution in pixels
float hScreenSize ; // HMD horizontal size in meters
float vScreenSize ; // HMD vertical size in meters
float vScreenCenter ; // HMD screen center in meters
float eyeToScreenDistance ; // HMD distance between eye and display in meters
float lensSeparationDistance ; // HMD lens separation distance in meters
float interpupillaryDistance ; // HMD IPD (distance between pupils) in meters
float lensDistortionValues [ 4 ] ; // HMD lens distortion constant parameters
float chromaAbCorrection [ 4 ] ; // HMD chromatic aberration correction parameters
} VrDeviceInfo ;
2018-06-30 21:56:26 +02:00
2019-02-06 16:51:36 +01:00
// VR Stereo rendering configuration for simulator
typedef struct VrStereoConfig {
Shader distortionShader ; // VR stereo rendering distortion shader
Matrix eyesProjection [ 2 ] ; // VR stereo rendering eyes projection matrices
Matrix eyesViewOffset [ 2 ] ; // VR stereo rendering eyes view offset matrices
int eyeViewportRight [ 4 ] ; // VR stereo rendering right eye viewport [x, y, w, h]
int eyeViewportLeft [ 4 ] ; // VR stereo rendering left eye viewport [x, y, w, h]
} VrStereoConfig ;
2017-04-30 13:03:31 +02:00
// TraceLog message types
2018-06-30 21:56:26 +02:00
typedef enum {
2019-01-20 22:22:21 +01:00
LOG_ALL ,
LOG_TRACE ,
2018-06-30 21:56:26 +02:00
LOG_DEBUG ,
2019-01-20 22:22:21 +01:00
LOG_INFO ,
2019-01-21 10:02:53 +01:00
LOG_WARNING ,
2019-01-20 22:22:21 +01:00
LOG_ERROR ,
LOG_FATAL ,
LOG_NONE
2017-04-30 13:03:31 +02:00
} TraceLogType ;
2018-06-30 21:56:26 +02:00
2017-04-30 13:03:31 +02:00
// Texture formats (support depends on OpenGL version)
typedef enum {
2021-03-14 11:05:51 +01:00
PIXELFORMAT_UNCOMPRESSED_GRAYSCALE = 1 , // 8 bit per pixel (no alpha)
PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA ,
PIXELFORMAT_UNCOMPRESSED_R5G6B5 , // 16 bpp
PIXELFORMAT_UNCOMPRESSED_R8G8B8 , // 24 bpp
PIXELFORMAT_UNCOMPRESSED_R5G5B5A1 , // 16 bpp (1 bit alpha)
PIXELFORMAT_UNCOMPRESSED_R4G4B4A4 , // 16 bpp (4 bit alpha)
PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 , // 32 bpp
PIXELFORMAT_UNCOMPRESSED_R32 , // 32 bpp (1 channel - float)
PIXELFORMAT_UNCOMPRESSED_R32G32B32 , // 32*3 bpp (3 channels - float)
PIXELFORMAT_UNCOMPRESSED_R32G32B32A32 , // 32*4 bpp (4 channels - float)
PIXELFORMAT_COMPRESSED_DXT1_RGB , // 4 bpp (no alpha)
PIXELFORMAT_COMPRESSED_DXT1_RGBA , // 4 bpp (1 bit alpha)
PIXELFORMAT_COMPRESSED_DXT3_RGBA , // 8 bpp
PIXELFORMAT_COMPRESSED_DXT5_RGBA , // 8 bpp
PIXELFORMAT_COMPRESSED_ETC1_RGB , // 4 bpp
PIXELFORMAT_COMPRESSED_ETC2_RGB , // 4 bpp
PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA , // 8 bpp
PIXELFORMAT_COMPRESSED_PVRT_RGB , // 4 bpp
PIXELFORMAT_COMPRESSED_PVRT_RGBA , // 4 bpp
PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA , // 8 bpp
PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA // 2 bpp
2018-01-06 13:43:48 +01:00
} PixelFormat ;
2016-05-31 19:12:37 +02:00
2016-10-29 22:17:19 +02:00
// Texture parameters: filter mode
// NOTE 1: Filtering considers mipmaps if available in the texture
// NOTE 2: Filter is accordingly set for minification and magnification
2018-06-30 21:56:26 +02:00
typedef enum {
2021-03-03 19:47:37 +01:00
TEXTURE_FILTER_POINT = 0 , // No filter, just pixel aproximation
TEXTURE_FILTER_BILINEAR , // Linear filtering
TEXTURE_FILTER_TRILINEAR , // Trilinear filtering (linear with mipmaps)
TEXTURE_FILTER_ANISOTROPIC_4X , // Anisotropic filtering 4x
TEXTURE_FILTER_ANISOTROPIC_8X , // Anisotropic filtering 8x
TEXTURE_FILTER_ANISOTROPIC_16X , // Anisotropic filtering 16x
2016-10-29 22:17:19 +02:00
} TextureFilterMode ;
2018-06-30 21:56:26 +02:00
2015-08-07 17:24:28 +02:00
// Color blending modes (pre-defined)
2018-06-30 21:56:26 +02:00
typedef enum {
2020-09-01 21:27:47 +02:00
BLEND_ALPHA = 0 , // Blend textures considering alpha (default)
BLEND_ADDITIVE , // Blend textures adding colors
BLEND_MULTIPLIED , // Blend textures multiplying colors
BLEND_ADD_COLORS , // Blend textures adding colors (alternative)
BLEND_SUBTRACT_COLORS , // Blend textures subtracting colors (alternative)
BLEND_CUSTOM // Belnd textures using custom src/dst factors (use SetBlendModeCustom())
2017-04-30 13:03:31 +02:00
} BlendMode ;
2016-08-16 11:09:55 +02:00
2017-11-12 11:00:28 +01:00
// Shader location point type
typedef enum {
2021-03-14 11:05:51 +01:00
SHADER_LOC_VERTEX_POSITION = 0 ,
SHADER_LOC_VERTEX_TEXCOORD01 ,
SHADER_LOC_VERTEX_TEXCOORD02 ,
SHADER_LOC_VERTEX_NORMAL ,
SHADER_LOC_VERTEX_TANGENT ,
SHADER_LOC_VERTEX_COLOR ,
SHADER_LOC_MATRIX_MVP ,
SHADER_LOC_MATRIX_MODEL ,
SHADER_LOC_MATRIX_VIEW ,
SHADER_LOC_MATRIX_PROJECTION ,
SHADER_LOC_VECTOR_VIEW ,
SHADER_LOC_COLOR_DIFFUSE ,
SHADER_LOC_COLOR_SPECULAR ,
SHADER_LOC_COLOR_AMBIENT ,
SHADER_LOC_MAP_ALBEDO , // SHADER_LOC_MAP_DIFFUSE
SHADER_LOC_MAP_METALNESS , // SHADER_LOC_MAP_SPECULAR
SHADER_LOC_MAP_NORMAL ,
SHADER_LOC_MAP_ROUGHNESS ,
SHADER_LOC_MAP_OCCLUSION ,
SHADER_LOC_MAP_EMISSION ,
SHADER_LOC_MAP_HEIGHT ,
SHADER_LOC_MAP_CUBEMAP ,
SHADER_LOC_MAP_IRRADIANCE ,
SHADER_LOC_MAP_PREFILTER ,
SHADER_LOC_MAP_BRDF
2017-11-12 11:00:28 +01:00
} ShaderLocationIndex ;
2019-02-21 18:45:19 +01:00
2019-01-10 11:25:26 +01:00
// Shader uniform data types
typedef enum {
2021-03-14 11:05:51 +01:00
SHADER_UNIFORM_FLOAT = 0 ,
SHADER_UNIFORM_VEC2 ,
SHADER_UNIFORM_VEC3 ,
SHADER_UNIFORM_VEC4 ,
SHADER_UNIFORM_INT ,
SHADER_UNIFORM_IVEC2 ,
SHADER_UNIFORM_IVEC3 ,
SHADER_UNIFORM_IVEC4 ,
SHADER_UNIFORM_SAMPLER2D
2019-01-10 11:25:26 +01:00
} ShaderUniformDataType ;
2017-11-12 11:00:28 +01:00
2021-03-14 11:05:51 +01:00
# define SHADER_LOC_MAP_DIFFUSE SHADER_LOC_MAP_ALBEDO
# define SHADER_LOC_MAP_SPECULAR SHADER_LOC_MAP_METALNESS
2017-11-12 11:00:28 +01:00
// Material map type
typedef enum {
2021-03-14 11:05:51 +01:00
MATERIAL_MAP_ALBEDO = 0 , // MATERIAL_MAP_DIFFUSE
MATERIAL_MAP_METALNESS = 1 , // MATERIAL_MAP_SPECULAR
MATERIAL_MAP_NORMAL = 2 ,
MATERIAL_MAP_ROUGHNESS = 3 ,
MATERIAL_MAP_OCCLUSION ,
MATERIAL_MAP_EMISSION ,
MATERIAL_MAP_HEIGHT ,
MATERIAL_MAP_CUBEMAP , // NOTE: Uses GL_TEXTURE_CUBE_MAP
MATERIAL_MAP_IRRADIANCE , // NOTE: Uses GL_TEXTURE_CUBE_MAP
MATERIAL_MAP_PREFILTER , // NOTE: Uses GL_TEXTURE_CUBE_MAP
MATERIAL_MAP_BRDG
2019-04-05 13:13:10 +02:00
} MaterialMapType ;
2017-11-12 11:00:28 +01:00
2021-03-14 11:05:51 +01:00
# define MATERIAL_MAP_DIFFUSE MATERIAL_MAP_ALBEDO
# define MATERIAL_MAP_SPECULAR MATERIAL_MAP_METALNESS
2014-04-04 20:11:57 +02:00
# endif
2018-10-16 10:53:01 +02:00
# if defined(__cplusplus)
2014-03-25 12:40:35 +01:00
extern " C " { // Prevents name mangling of functions
# endif
//------------------------------------------------------------------------------------
// Functions Declaration - Matrix operations
//------------------------------------------------------------------------------------
2019-04-22 18:25:30 +02:00
RLAPI void rlMatrixMode ( int mode ) ; // Choose the current matrix to be transformed
RLAPI void rlPushMatrix ( void ) ; // Push the current matrix to stack
RLAPI void rlPopMatrix ( void ) ; // Pop lattest inserted matrix from stack
RLAPI void rlLoadIdentity ( void ) ; // Reset current matrix to identity matrix
RLAPI void rlTranslatef ( float x , float y , float z ) ; // Multiply the current matrix by a translation matrix
RLAPI void rlRotatef ( float angleDeg , float x , float y , float z ) ; // Multiply the current matrix by a rotation matrix
RLAPI void rlScalef ( float x , float y , float z ) ; // Multiply the current matrix by a scaling matrix
RLAPI void rlMultMatrixf ( float * matf ) ; // Multiply the current matrix by another matrix
2019-04-27 22:47:03 +02:00
RLAPI void rlFrustum ( double left , double right , double bottom , double top , double znear , double zfar ) ;
RLAPI void rlOrtho ( double left , double right , double bottom , double top , double znear , double zfar ) ;
2019-04-22 18:25:30 +02:00
RLAPI void rlViewport ( int x , int y , int width , int height ) ; // Set the viewport area
2014-03-25 12:40:35 +01:00
//------------------------------------------------------------------------------------
// Functions Declaration - Vertex level operations
//------------------------------------------------------------------------------------
2019-04-22 18:25:30 +02:00
RLAPI void rlBegin ( int mode ) ; // Initialize drawing mode (how to organize vertex)
RLAPI void rlEnd ( void ) ; // Finish vertex providing
RLAPI void rlVertex2i ( int x , int y ) ; // Define one vertex (position) - 2 int
RLAPI void rlVertex2f ( float x , float y ) ; // Define one vertex (position) - 2 float
RLAPI void rlVertex3f ( float x , float y , float z ) ; // Define one vertex (position) - 3 float
RLAPI void rlTexCoord2f ( float x , float y ) ; // Define one vertex (texture coordinate) - 2 float
RLAPI void rlNormal3f ( float x , float y , float z ) ; // Define one vertex (normal) - 3 float
2020-09-18 02:11:49 +02:00
RLAPI void rlColor4ub ( unsigned char r , unsigned char g , unsigned char b , unsigned char a ) ; // Define one vertex (color) - 4 byte
2019-04-22 18:25:30 +02:00
RLAPI void rlColor3f ( float x , float y , float z ) ; // Define one vertex (color) - 3 float
RLAPI void rlColor4f ( float x , float y , float z , float w ) ; // Define one vertex (color) - 4 float
2014-03-25 12:40:35 +01:00
//------------------------------------------------------------------------------------
// Functions Declaration - OpenGL equivalent functions (common to 1.1, 3.3+, ES2)
// NOTE: This functions are used to completely abstract raylib code from OpenGL layer
//------------------------------------------------------------------------------------
2019-04-22 18:25:30 +02:00
RLAPI void rlEnableTexture ( unsigned int id ) ; // Enable texture usage
RLAPI void rlDisableTexture ( void ) ; // Disable texture usage
RLAPI void rlTextureParameters ( unsigned int id , int param , int value ) ; // Set texture parameters (filter, wrap)
2020-09-18 13:50:51 +02:00
RLAPI void rlEnableShader ( unsigned int id ) ; // Enable shader program usage
RLAPI void rlDisableShader ( void ) ; // Disable shader program usage
2020-09-18 02:11:49 +02:00
RLAPI void rlEnableFramebuffer ( unsigned int id ) ; // Enable render texture (fbo)
RLAPI void rlDisableFramebuffer ( void ) ; // Disable render texture (fbo), return to default framebuffer
2019-04-22 18:25:30 +02:00
RLAPI void rlEnableDepthTest ( void ) ; // Enable depth test
RLAPI void rlDisableDepthTest ( void ) ; // Disable depth test
2020-12-05 12:53:19 -08:00
RLAPI void rlEnableDepthMask ( void ) ; // Enable depth write
RLAPI void rlDisableDepthMask ( void ) ; // Disable depth write
2019-04-28 16:03:59 +02:00
RLAPI void rlEnableBackfaceCulling ( void ) ; // Enable backface culling
RLAPI void rlDisableBackfaceCulling ( void ) ; // Disable backface culling
2019-08-26 21:09:03 +02:00
RLAPI void rlEnableScissorTest ( void ) ; // Enable scissor test
RLAPI void rlDisableScissorTest ( void ) ; // Disable scissor test
RLAPI void rlScissor ( int x , int y , int width , int height ) ; // Scissor test
2019-04-22 18:25:30 +02:00
RLAPI void rlEnableWireMode ( void ) ; // Enable wire mode
RLAPI void rlDisableWireMode ( void ) ; // Disable wire mode
2020-12-13 01:58:24 -08:00
RLAPI void rlSetLineWidth ( float width ) ; // Set the line drawing width
RLAPI float rlGetLineWidth ( void ) ; // Get the line drawing width
RLAPI void rlEnableSmoothLines ( void ) ; // Enable line aliasing
RLAPI void rlDisableSmoothLines ( void ) ; // Disable line aliasing
2020-09-18 02:11:49 +02:00
RLAPI void rlClearColor ( unsigned char r , unsigned char g , unsigned char b , unsigned char a ) ; // Clear color buffer with color
2019-04-22 18:25:30 +02:00
RLAPI void rlClearScreenBuffers ( void ) ; // Clear used screen buffers (color and depth)
RLAPI void rlUpdateBuffer ( int bufferId , void * data , int dataSize ) ; // Update GPU buffer with new data
RLAPI unsigned int rlLoadAttribBuffer ( unsigned int vaoId , int shaderLoc , void * buffer , int size , bool dynamic ) ; // Load a new attributes buffer
2014-03-25 12:40:35 +01:00
//------------------------------------------------------------------------------------
// Functions Declaration - rlgl functionality
//------------------------------------------------------------------------------------
2019-04-22 18:25:30 +02:00
RLAPI void rlglInit ( int width , int height ) ; // Initialize rlgl (buffers, shaders, textures, states)
RLAPI void rlglClose ( void ) ; // De-inititialize rlgl (buffers, shaders, textures)
RLAPI void rlglDraw ( void ) ; // Update and draw default internal buffers
2020-07-30 20:50:20 +10:00
RLAPI void rlCheckErrors ( void ) ; // Check and log OpenGL error codes
2017-07-19 10:09:34 +02:00
2019-04-22 18:25:30 +02:00
RLAPI int rlGetVersion ( void ) ; // Returns current OpenGL version
RLAPI bool rlCheckBufferLimit ( int vCount ) ; // Check internal buffer overflow for a given number of vertex
RLAPI void rlSetDebugMarker ( const char * text ) ; // Set debug marker for analysis
2020-09-01 21:02:19 +02:00
RLAPI void rlSetBlendMode ( int glSrcFactor , int glDstFactor , int glEquation ) ; // // Set blending mode factor and equation (using OpenGL factors)
2019-04-22 18:25:30 +02:00
RLAPI void rlLoadExtensions ( void * loader ) ; // Load OpenGL extensions
2014-09-16 22:51:31 +02:00
2017-07-17 00:33:40 +02:00
// Textures data management
2019-04-22 18:25:30 +02:00
RLAPI unsigned int rlLoadTexture ( void * data , int width , int height , int format , int mipmapCount ) ; // Load texture in GPU
2020-09-18 02:11:49 +02:00
RLAPI unsigned int rlLoadTextureDepth ( int width , int height , bool useRenderBuffer ) ; // Load depth texture/renderbuffer (to be attached to fbo)
2019-04-22 18:25:30 +02:00
RLAPI unsigned int rlLoadTextureCubemap ( void * data , int size , int format ) ; // Load texture cubemap
2020-06-25 16:26:59 +02:00
RLAPI void rlUpdateTexture ( unsigned int id , int offsetX , int offsetY , int width , int height , int format , const void * data ) ; // Update GPU texture with new data
2019-04-22 18:25:30 +02:00
RLAPI void rlGetGlTextureFormats ( int format , unsigned int * glInternalFormat , unsigned int * glFormat , unsigned int * glType ) ; // Get OpenGL internal formats
RLAPI void rlUnloadTexture ( unsigned int id ) ; // Unload texture from GPU memory
2018-10-01 15:30:48 +02:00
2019-04-22 18:25:30 +02:00
RLAPI void rlGenerateMipmaps ( Texture2D * texture ) ; // Generate mipmap data for selected texture
RLAPI void * rlReadTexturePixels ( Texture2D texture ) ; // Read texture pixel data
RLAPI unsigned char * rlReadScreenPixels ( int width , int height ) ; // Read screen pixel data (color buffer)
2019-02-04 16:28:17 +01:00
2020-09-18 02:11:49 +02:00
// Framebuffer management (fbo)
RLAPI unsigned int rlLoadFramebuffer ( int width , int height ) ; // Load an empty framebuffer
2020-09-18 11:37:57 +02:00
RLAPI void rlFramebufferAttach ( unsigned int fboId , unsigned int texId , int attachType , int texType ) ; // Attach texture/renderbuffer to a framebuffer
2020-09-18 02:11:49 +02:00
RLAPI bool rlFramebufferComplete ( unsigned int id ) ; // Verify framebuffer is complete
RLAPI void rlUnloadFramebuffer ( unsigned int id ) ; // Delete framebuffer from GPU
2017-07-17 00:33:40 +02:00
// Vertex data management
2019-04-22 18:25:30 +02:00
RLAPI void rlLoadMesh ( Mesh * mesh , bool dynamic ) ; // Upload vertex data into GPU and provided VAO/VBO ids
2020-05-23 19:23:40 +02:00
RLAPI void rlUpdateMesh ( Mesh mesh , int buffer , int count ) ; // Update vertex or index data on GPU (upload new data to one buffer)
RLAPI void rlUpdateMeshAt ( Mesh mesh , int buffer , int count , int index ) ; // Update vertex or index data on GPU, at index
2019-04-22 18:25:30 +02:00
RLAPI void rlDrawMesh ( Mesh mesh , Material material , Matrix transform ) ; // Draw a 3d mesh with material and transform
2020-09-27 18:29:05 +10:00
RLAPI void rlDrawMeshInstanced ( Mesh mesh , Material material , Matrix * transforms , int count ) ; // Draw a 3d mesh with material and transform
2021-03-02 00:34:10 +01:00
RLAPI void rlUnloadMesh ( Mesh * mesh ) ; // Unload mesh data from CPU and GPU
2017-07-17 00:33:40 +02:00
2016-05-07 18:07:15 +02:00
// NOTE: There is a set of shader related functions that are available to end user,
// to avoid creating function wrappers through core module, they have been directly declared in raylib.h
2015-08-05 19:18:40 +02:00
# if defined(RLGL_STANDALONE)
//------------------------------------------------------------------------------------
// Shaders System Functions (Module: rlgl)
// NOTE: This functions are useless when using OpenGL 1.1
//------------------------------------------------------------------------------------
2018-07-16 18:22:03 +02:00
// Shader loading/unloading functions
2019-04-22 18:25:30 +02:00
RLAPI Shader LoadShader ( const char * vsFileName , const char * fsFileName ) ; // Load shader from files and bind default locations
2020-03-04 00:21:46 +01:00
RLAPI Shader LoadShaderCode ( const char * vsCode , const char * fsCode ) ; // Load shader from code strings and bind default locations
2019-04-22 18:25:30 +02:00
RLAPI void UnloadShader ( Shader shader ) ; // Unload shader from GPU memory (VRAM)
2016-05-31 17:11:02 +02:00
2019-04-22 18:25:30 +02:00
RLAPI Shader GetShaderDefault ( void ) ; // Get default shader
RLAPI Texture2D GetTextureDefault ( void ) ; // Get default texture
2020-02-03 18:31:30 +01:00
RLAPI Texture2D GetShapesTexture ( void ) ; // Get texture to draw shapes
RLAPI Rectangle GetShapesTextureRec ( void ) ; // Get texture rectangle to draw shapes
2015-08-05 19:18:40 +02:00
2017-07-21 10:42:57 +02:00
// Shader configuration functions
2019-04-22 18:25:30 +02:00
RLAPI int GetShaderLocation ( Shader shader , const char * uniformName ) ; // Get shader uniform location
2020-09-27 18:29:05 +10:00
RLAPI int GetShaderLocationAttrib ( Shader shader , const char * attribName ) ; // Get shader attribute location
2019-04-22 18:25:30 +02:00
RLAPI void SetShaderValue ( Shader shader , int uniformLoc , const void * value , int uniformType ) ; // Set shader uniform value
RLAPI void SetShaderValueV ( Shader shader , int uniformLoc , const void * value , int uniformType , int count ) ; // Set shader uniform value vector
RLAPI void SetShaderValueMatrix ( Shader shader , int uniformLoc , Matrix mat ) ; // Set shader uniform value (matrix 4x4)
RLAPI void SetMatrixProjection ( Matrix proj ) ; // Set a custom projection matrix (replaces internal projection matrix)
RLAPI void SetMatrixModelview ( Matrix view ) ; // Set a custom modelview matrix (replaces internal modelview matrix)
2019-06-06 11:38:45 +02:00
RLAPI Matrix GetMatrixModelview ( void ) ; // Get internal modelview matrix
2016-06-02 20:23:09 +02:00
2017-07-19 10:09:34 +02:00
// Texture maps generation (PBR)
2017-07-21 10:42:57 +02:00
// NOTE: Required shaders should be provided
2021-02-14 16:46:33 +01:00
RLAPI TextureCubemap GenTextureCubemap ( Shader shader , Texture2D panorama , int size , int format ) ; // Generate cubemap (6 faces) from equirectangular (panorama) texture
RLAPI TextureCubemap GenTextureIrradiance ( Shader shader , TextureCubemap cubemap , int size ) ; // Generate irradiance cubemap using cubemap texture
RLAPI TextureCubemap GenTexturePrefilter ( Shader shader , TextureCubemap cubemap , int size ) ; // Generate prefilter cubemap using cubemap texture
RLAPI Texture2D GenTextureBRDF ( Shader shader , int size ) ; // Generate a generic BRDF texture
2018-07-16 18:22:03 +02:00
// Shading begin/end functions
2019-04-22 18:25:30 +02:00
RLAPI void BeginShaderMode ( Shader shader ) ; // Begin custom shader drawing
RLAPI void EndShaderMode ( void ) ; // End custom shader drawing (use default shader)
RLAPI void BeginBlendMode ( int mode ) ; // Begin blending mode (alpha, additive, multiplied)
RLAPI void EndBlendMode ( void ) ; // End blending mode (reset to default: alpha blending)
2018-07-16 18:22:03 +02:00
// VR control functions
2019-04-22 18:25:30 +02:00
RLAPI void InitVrSimulator ( void ) ; // Init VR simulator for selected device parameters
RLAPI void CloseVrSimulator ( void ) ; // Close VR simulator for current device
RLAPI void UpdateVrTracking ( Camera * camera ) ; // Update VR tracking (position and orientation) and camera
2019-05-08 18:33:09 +02:00
RLAPI void SetVrConfiguration ( VrDeviceInfo info , Shader distortion ) ; // Set stereo rendering configuration parameters
2019-04-22 18:25:30 +02:00
RLAPI bool IsVrSimulatorReady ( void ) ; // Detect if VR simulator is ready
RLAPI void ToggleVrMode ( void ) ; // Enable/Disable VR experience
RLAPI void BeginVrDrawing ( void ) ; // Begin VR simulator stereo rendering
RLAPI void EndVrDrawing ( void ) ; // End VR simulator stereo rendering
2020-03-04 00:21:46 +01:00
RLAPI char * LoadFileText ( const char * fileName ) ; // Load chars array from text file
2019-04-22 18:25:30 +02:00
RLAPI int GetPixelDataSize ( int width , int height , int format ) ; // Get pixel data size in bytes (image or texture)
2016-07-06 00:54:38 +02:00
# endif
2016-06-14 17:16:20 +02:00
2018-10-16 10:53:01 +02:00
# if defined(__cplusplus)
2014-03-25 12:40:35 +01:00
}
# endif
2018-04-07 22:29:53 +02:00
# endif // RLGL_H
2018-07-16 17:53:47 +02:00
/***********************************************************************************
*
* RLGL IMPLEMENTATION
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# if defined(RLGL_IMPLEMENTATION)
2020-03-04 00:21:46 +01:00
# if defined(RLGL_STANDALONE)
2020-05-01 17:31:44 +02:00
# include <stdio.h> // Required for: fopen(), fseek(), fread(), fclose() [LoadFileText]
2020-03-04 00:21:46 +01:00
# else
2019-03-12 16:00:26 +01:00
// Check if config flags have been externally provided on compilation line
# if !defined(EXTERNAL_CONFIG_FLAGS)
2020-05-01 17:31:44 +02:00
# include "config.h" // Defines module configuration flags
2019-03-12 16:00:26 +01:00
# endif
2020-05-01 17:31:44 +02:00
# include "raymath.h" // Required for: Vector3 and Matrix functions
2018-07-16 19:24:40 +02:00
# endif
2018-07-16 17:53:47 +02:00
2020-05-01 17:31:44 +02:00
# include <stdlib.h> // Required for: malloc(), free()
# include <string.h> // Required for: strcmp(), strlen() [Used in rlglInit(), on extensions loading]
# include <math.h> // Required for: atan2f()
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_11)
# if defined(__APPLE__)
2020-05-01 17:31:44 +02:00
# include <OpenGL/gl.h> // OpenGL 1.1 library for OSX
2018-07-16 17:53:47 +02:00
# include <OpenGL/glext.h>
# else
// APIENTRY for OpenGL function pointer declarations is required
# ifndef APIENTRY
2018-10-16 10:53:01 +02:00
# if defined(_WIN32)
2018-07-16 17:53:47 +02:00
# define APIENTRY __stdcall
# else
# define APIENTRY
# endif
# endif
// WINGDIAPI definition. Some Windows OpenGL headers need it
# if !defined(WINGDIAPI) && defined(_WIN32)
# define WINGDIAPI __declspec(dllimport)
# endif
2018-08-17 01:34:45 +02:00
# include <GL/gl.h> // OpenGL 1.1 library
2018-07-16 17:53:47 +02:00
# endif
# endif
# if defined(GRAPHICS_API_OPENGL_21)
# define GRAPHICS_API_OPENGL_33 // OpenGL 2.1 uses mostly OpenGL 3.3 Core functionality
# endif
# if defined(GRAPHICS_API_OPENGL_33)
# if defined(__APPLE__)
# include <OpenGL/gl3.h> // OpenGL 3 library for OSX
# include <OpenGL/gl3ext.h> // OpenGL 3 extensions library for OSX
# else
2020-03-17 13:40:07 +01:00
# define GLAD_REALLOC RL_REALLOC
# define GLAD_FREE RL_FREE
2020-03-25 19:41:51 +01:00
2018-07-16 17:53:47 +02:00
# define GLAD_IMPLEMENTATION
# if defined(RLGL_STANDALONE)
# include "glad.h" // GLAD extensions loading library, includes OpenGL headers
# else
# include "external/glad.h" // GLAD extensions loading library, includes OpenGL headers
# endif
# endif
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2020-04-30 18:48:39 +01:00
# define GL_GLEXT_PROTOTYPES
2018-07-16 17:53:47 +02:00
# include <EGL/egl.h> // EGL library
# include <GLES2/gl2.h> // OpenGL ES 2.0 library
# include <GLES2/gl2ext.h> // OpenGL ES 2.0 extensions library
# endif
//----------------------------------------------------------------------------------
// Defines and Macros
//----------------------------------------------------------------------------------
# ifndef GL_SHADING_LANGUAGE_VERSION
# define GL_SHADING_LANGUAGE_VERSION 0x8B8C
# endif
# ifndef GL_COMPRESSED_RGB_S3TC_DXT1_EXT
# define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0
# endif
# ifndef GL_COMPRESSED_RGBA_S3TC_DXT1_EXT
# define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1
# endif
# ifndef GL_COMPRESSED_RGBA_S3TC_DXT3_EXT
# define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2
# endif
# ifndef GL_COMPRESSED_RGBA_S3TC_DXT5_EXT
# define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3
# endif
# ifndef GL_ETC1_RGB8_OES
# define GL_ETC1_RGB8_OES 0x8D64
# endif
# ifndef GL_COMPRESSED_RGB8_ETC2
# define GL_COMPRESSED_RGB8_ETC2 0x9274
# endif
# ifndef GL_COMPRESSED_RGBA8_ETC2_EAC
# define GL_COMPRESSED_RGBA8_ETC2_EAC 0x9278
# endif
# ifndef GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG
# define GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG 0x8C00
# endif
# ifndef GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG
# define GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG 0x8C02
# endif
# ifndef GL_COMPRESSED_RGBA_ASTC_4x4_KHR
# define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93b0
# endif
# ifndef GL_COMPRESSED_RGBA_ASTC_8x8_KHR
# define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93b7
# endif
# ifndef GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT
# define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF
# endif
# ifndef GL_TEXTURE_MAX_ANISOTROPY_EXT
# define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE
# endif
# if defined(GRAPHICS_API_OPENGL_11)
# define GL_UNSIGNED_SHORT_5_6_5 0x8363
# define GL_UNSIGNED_SHORT_5_5_5_1 0x8034
# define GL_UNSIGNED_SHORT_4_4_4_4 0x8033
# endif
# if defined(GRAPHICS_API_OPENGL_21)
# define GL_LUMINANCE 0x1909
# define GL_LUMINANCE_ALPHA 0x190A
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2020-05-01 17:31:44 +02:00
# define glClearDepth glClearDepthf
2018-07-16 17:53:47 +02:00
# define GL_READ_FRAMEBUFFER GL_FRAMEBUFFER
# define GL_DRAW_FRAMEBUFFER GL_FRAMEBUFFER
# endif
2020-05-01 17:31:44 +02:00
// Default shader vertex attribute names to set location points
# ifndef DEFAULT_SHADER_ATTRIB_NAME_POSITION
# define DEFAULT_SHADER_ATTRIB_NAME_POSITION "vertexPosition" // Binded by default to shader location: 0
# endif
# ifndef DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD
# define DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD "vertexTexCoord" // Binded by default to shader location: 1
# endif
# ifndef DEFAULT_SHADER_ATTRIB_NAME_NORMAL
# define DEFAULT_SHADER_ATTRIB_NAME_NORMAL "vertexNormal" // Binded by default to shader location: 2
# endif
# ifndef DEFAULT_SHADER_ATTRIB_NAME_COLOR
# define DEFAULT_SHADER_ATTRIB_NAME_COLOR "vertexColor" // Binded by default to shader location: 3
# endif
# ifndef DEFAULT_SHADER_ATTRIB_NAME_TANGENT
# define DEFAULT_SHADER_ATTRIB_NAME_TANGENT "vertexTangent" // Binded by default to shader location: 4
# endif
# ifndef DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD2
# define DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD2 "vertexTexCoord2" // Binded by default to shader location: 5
# endif
2018-07-16 17:53:47 +02:00
//----------------------------------------------------------------------------------
// Types and Structures Definition
//----------------------------------------------------------------------------------
// Dynamic vertex buffers (position + texcoords + colors + indices arrays)
2020-05-01 17:34:43 +02:00
typedef struct VertexBuffer {
int elementsCount ; // Number of elements in the buffer (QUADS)
2020-11-03 23:47:33 +01:00
2020-05-01 17:34:43 +02:00
int vCounter ; // Vertex position counter to process (and draw) from full buffer
int tcCounter ; // Vertex texcoord counter to process (and draw) from full buffer
int cCounter ; // Vertex color counter to process (and draw) from full buffer
float * vertices ; // Vertex position (XYZ - 3 components per vertex) (shader-location = 0)
float * texcoords ; // Vertex texture coordinates (UV - 2 components per vertex) (shader-location = 1)
unsigned char * colors ; // Vertex colors (RGBA - 4 components per vertex) (shader-location = 3)
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_11) || defined(GRAPHICS_API_OPENGL_33)
2020-05-01 17:34:43 +02:00
unsigned int * indices ; // Vertex indices (in case vertex data comes indexed) (6 indices per quad)
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2020-05-01 17:34:43 +02:00
unsigned short * indices ; // Vertex indices (in case vertex data comes indexed) (6 indices per quad)
2018-07-16 17:53:47 +02:00
# endif
unsigned int vaoId ; // OpenGL Vertex Array Object id
unsigned int vboId [ 4 ] ; // OpenGL Vertex Buffer Objects id (4 types of vertex data)
2020-05-01 17:34:43 +02:00
} VertexBuffer ;
2018-07-16 17:53:47 +02:00
// Draw call type
2020-11-03 23:47:33 +01:00
// NOTE: Only texture changes register a new draw, other state-change-related elements are not
2020-05-01 17:34:43 +02:00
// used at this moment (vaoId, shaderId, matrices), raylib just forces a batch draw call if any
// of those state-change happens (this is done in core module)
2018-07-16 17:53:47 +02:00
typedef struct DrawCall {
2018-12-11 18:54:48 +01:00
int mode ; // Drawing mode: LINES, TRIANGLES, QUADS
int vertexCount ; // Number of vertex of the draw
2019-03-28 18:05:32 +01:00
int vertexAlignment ; // Number of vertex required for index alignment (LINES, TRIANGLES)
2020-10-26 20:11:58 +01:00
//unsigned int vaoId; // Vertex array id to be used on the draw -> Using RLGL.currentBatch->vertexBuffer.vaoId
//unsigned int shaderId; // Shader id to be used on the draw -> Using RLGL.currentShader.id
unsigned int textureId ; // Texture id to be used on the draw -> Use to create new draw call if changes
2019-02-28 16:28:49 +01:00
2020-10-26 20:11:58 +01:00
//Matrix projection; // Projection matrix for this draw -> Using RLGL.projection
//Matrix modelview; // Modelview matrix for this draw -> Using RLGL.modelview
2018-07-16 17:53:47 +02:00
} DrawCall ;
2020-05-01 17:34:43 +02:00
// RenderBatch type
typedef struct RenderBatch {
int buffersCount ; // Number of vertex buffers (multi-buffering support)
int currentBuffer ; // Current buffer tracking in case of multi-buffering
VertexBuffer * vertexBuffer ; // Dynamic buffer(s) for vertex data
2020-10-26 20:11:58 +01:00
DrawCall * draws ; // Draw calls array, depends on textureId
2020-05-01 17:34:43 +02:00
int drawsCounter ; // Draw calls counter
float currentDepth ; // Current depth value for next draw
} RenderBatch ;
2021-01-25 11:47:53 +02:00
# if defined(SUPPORT_VR_SIMULATOR) && !defined(RLGL_STANDALONE)
2019-04-11 13:53:01 +02:00
// VR Stereo rendering configuration for simulator
typedef struct VrStereoConfig {
Shader distortionShader ; // VR stereo rendering distortion shader
Matrix eyesProjection [ 2 ] ; // VR stereo rendering eyes projection matrices
Matrix eyesViewOffset [ 2 ] ; // VR stereo rendering eyes view offset matrices
int eyeViewportRight [ 4 ] ; // VR stereo rendering right eye viewport [x, y, w, h]
int eyeViewportLeft [ 4 ] ; // VR stereo rendering left eye viewport [x, y, w, h]
} VrStereoConfig ;
# endif
2020-02-03 18:31:30 +01:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
typedef struct rlglData {
2020-05-01 17:34:43 +02:00
RenderBatch * currentBatch ; // Current render batch
RenderBatch defaultBatch ; // Default internal render batch
2020-02-03 18:31:30 +01:00
struct {
int currentMatrixMode ; // Current matrix mode
Matrix * currentMatrix ; // Current matrix pointer
Matrix modelview ; // Default modelview matrix
Matrix projection ; // Default projection matrix
Matrix transform ; // Transform matrix to be used with rlTranslate, rlRotate, rlScale
2020-05-01 17:34:43 +02:00
bool transformRequired ; // Require transform matrix application to current draw-call vertex (if required)
2020-02-03 18:31:30 +01:00
Matrix stack [ MAX_MATRIX_STACK_SIZE ] ; // Matrix stack for push/pop
int stackCounter ; // Matrix stack counter
2020-10-26 20:11:58 +01:00
Texture2D shapesTexture ; // Texture used on shapes drawing (usually a white pixel)
2020-02-03 18:31:30 +01:00
Rectangle shapesTextureRec ; // Texture source rectangle used on shapes drawing
unsigned int defaultTextureId ; // Default texture used on shapes/poly drawing (required by shader)
2020-10-26 20:13:08 +01:00
unsigned int activeTextureId [ 4 ] ; // Active texture ids to be enabled on batch drawing (0 active by default)
2020-02-03 18:31:30 +01:00
unsigned int defaultVShaderId ; // Default vertex shader id (used by default shader program)
unsigned int defaultFShaderId ; // Default fragment shader Id (used by default shader program)
Shader defaultShader ; // Basic shader, support vertex color and diffuse texture
Shader currentShader ; // Shader to be used on rendering (by default, defaultShader)
2020-11-03 23:47:33 +01:00
2020-09-01 21:02:19 +02:00
int currentBlendMode ; // Blending mode active
int glBlendSrcFactor ; // Blending source factor
int glBlendDstFactor ; // Blending destination factor
int glBlendEquation ; // Blending equation
2020-02-03 18:31:30 +01:00
int framebufferWidth ; // Default framebuffer width
int framebufferHeight ; // Default framebuffer height
2021-02-14 16:46:33 +01:00
} State ; // Renderer state
2020-02-03 18:31:30 +01:00
struct {
2021-03-17 13:56:00 +01:00
bool vao ; // VAO support (OpenGL ES2 could not support VAO extension) (GL_ARB_vertex_array_object)
bool instancing ; // Instancing supported
bool texNPOT ; // NPOT textures full support (GL_ARB_texture_non_power_of_two, GL_OES_texture_npot)
bool texDepth ; // Depth textures supported (GL_ARB_depth_texture, GL_WEBGL_depth_texture)
bool texFloat32 ; // float textures support (32 bit per channel) (GL_OES_texture_float)
bool texCompDXT ; // DDS texture compression support (GL_EXT_texture_compression_s3tc)
2020-02-03 18:31:30 +01:00
bool texCompETC1 ; // ETC1 texture compression support
bool texCompETC2 ; // ETC2/EAC texture compression support
bool texCompPVRT ; // PVR texture compression support
bool texCompASTC ; // ASTC texture compression support
bool texMirrorClamp ; // Clamp mirror wrap mode supported
bool texAnisoFilter ; // Anisotropic texture filtering support
bool debugMarker ; // Debug marker support
float maxAnisotropicLevel ; // Maximum anisotropy level supported (minimum is 2.0f)
int maxDepthBits ; // Maximum bits for depth component
} ExtSupported ; // Extensions supported flags
# if defined(SUPPORT_VR_SIMULATOR)
struct {
VrStereoConfig config ; // VR stereo configuration for simulator
2020-09-18 02:11:49 +02:00
unsigned int stereoFboId ; // VR stereo rendering framebuffer id
unsigned int stereoTexId ; // VR stereo color texture (attached to framebuffer)
2020-02-03 18:31:30 +01:00
bool simulatorReady ; // VR simulator ready flag
bool stereoRender ; // VR stereo rendering enabled/disabled flag
2021-02-14 16:46:33 +01:00
} Vr ; // VR simulator data
2020-02-03 18:31:30 +01:00
# endif // SUPPORT_VR_SIMULATOR
} rlglData ;
# endif // GRAPHICS_API_OPENGL_33 || GRAPHICS_API_OPENGL_ES2
2018-07-16 17:53:47 +02:00
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
static rlglData RLGL = { 0 } ;
# endif // GRAPHICS_API_OPENGL_33 || GRAPHICS_API_OPENGL_ES2
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_ES2)
// NOTE: VAO functionality is exposed through extensions (OES)
2021-03-17 13:56:00 +01:00
static PFNGLGENVERTEXARRAYSOESPROC glGenVertexArrays = NULL ;
static PFNGLBINDVERTEXARRAYOESPROC glBindVertexArray = NULL ;
static PFNGLDELETEVERTEXARRAYSOESPROC glDeleteVertexArrays = NULL ;
// NOTE: Instancing functionality could also be available through extension
static PFNGLDRAWARRAYSINSTANCEDEXTPROC glDrawArraysInstanced = NULL ;
static PFNGLDRAWELEMENTSINSTANCEDEXTPROC glDrawElementsInstanced = NULL ;
static PFNGLVERTEXATTRIBDIVISOREXTPROC glVertexAttribDivisor = NULL ;
2018-07-16 17:53:47 +02:00
# endif
//----------------------------------------------------------------------------------
// Module specific Functions Declaration
//----------------------------------------------------------------------------------
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
static unsigned int CompileShader ( const char * shaderStr , int type ) ; // Compile custom shader and return shader id
static unsigned int LoadShaderProgram ( unsigned int vShaderId , unsigned int fShaderId ) ; // Load custom shader program
2020-05-01 17:34:43 +02:00
static Shader LoadShaderDefault ( void ) ; // Load default shader (just vertex positioning and texture coloring)
static void SetShaderDefaultLocations ( Shader * shader ) ; // Bind default shader locations (attributes and uniforms)
static void UnloadShaderDefault ( void ) ; // Unload default shader
2018-07-16 17:53:47 +02:00
2020-05-01 17:34:43 +02:00
static RenderBatch LoadRenderBatch ( int numBuffers , int bufferElements ) ; // Load a render batch system
static void UnloadRenderBatch ( RenderBatch batch ) ; // Unload render batch system
static void DrawRenderBatch ( RenderBatch * batch ) ; // Draw render batch data (Update->Draw->Reset)
static void SetRenderBatchActive ( RenderBatch * batch ) ; // Set the active render batch for rlgl
static void SetRenderBatchDefault ( void ) ; // Set default render batch for rlgl
//static bool CheckRenderBatchLimit(RenderBatch batch, int vCount); // Check render batch vertex buffer limits
2018-07-16 17:53:47 +02:00
static void GenDrawCube ( void ) ; // Generate and draw cube
static void GenDrawQuad ( void ) ; // Generate and draw quad
# if defined(SUPPORT_VR_SIMULATOR)
2019-02-06 14:21:44 +01:00
static void SetStereoView ( int eye , Matrix matProjection , Matrix matModelView ) ; // Set internal projection and modelview matrix depending on eye
2018-07-16 17:53:47 +02:00
# endif
2019-04-28 16:45:23 +02:00
# endif // GRAPHICS_API_OPENGL_33 || GRAPHICS_API_OPENGL_ES2
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_11)
static int GenerateMipmaps ( unsigned char * data , int baseWidth , int baseHeight ) ;
static Color * GenNextMipmap ( Color * srcData , int srcWidth , int srcHeight ) ;
# endif
//----------------------------------------------------------------------------------
// Module Functions Definition - Matrix operations
//----------------------------------------------------------------------------------
# if defined(GRAPHICS_API_OPENGL_11)
// Fallback to OpenGL 1.1 function calls
//---------------------------------------
void rlMatrixMode ( int mode )
{
switch ( mode )
{
case RL_PROJECTION : glMatrixMode ( GL_PROJECTION ) ; break ;
case RL_MODELVIEW : glMatrixMode ( GL_MODELVIEW ) ; break ;
case RL_TEXTURE : glMatrixMode ( GL_TEXTURE ) ; break ;
default : break ;
}
}
2019-04-27 22:47:03 +02:00
void rlFrustum ( double left , double right , double bottom , double top , double znear , double zfar )
2018-07-16 17:53:47 +02:00
{
2019-04-27 22:47:03 +02:00
glFrustum ( left , right , bottom , top , znear , zfar ) ;
2018-07-16 17:53:47 +02:00
}
2019-04-27 22:47:03 +02:00
void rlOrtho ( double left , double right , double bottom , double top , double znear , double zfar )
2018-07-16 17:53:47 +02:00
{
2019-04-27 22:47:03 +02:00
glOrtho ( left , right , bottom , top , znear , zfar ) ;
2018-07-16 17:53:47 +02:00
}
void rlPushMatrix ( void ) { glPushMatrix ( ) ; }
void rlPopMatrix ( void ) { glPopMatrix ( ) ; }
void rlLoadIdentity ( void ) { glLoadIdentity ( ) ; }
void rlTranslatef ( float x , float y , float z ) { glTranslatef ( x , y , z ) ; }
void rlRotatef ( float angleDeg , float x , float y , float z ) { glRotatef ( angleDeg , x , y , z ) ; }
void rlScalef ( float x , float y , float z ) { glScalef ( x , y , z ) ; }
void rlMultMatrixf ( float * matf ) { glMultMatrixf ( matf ) ; }
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2018-07-16 17:53:47 +02:00
// Choose the current matrix to be transformed
void rlMatrixMode ( int mode )
{
2020-02-03 18:31:30 +01:00
if ( mode = = RL_PROJECTION ) RLGL . State . currentMatrix = & RLGL . State . projection ;
else if ( mode = = RL_MODELVIEW ) RLGL . State . currentMatrix = & RLGL . State . modelview ;
2018-07-16 17:53:47 +02:00
//else if (mode == RL_TEXTURE) // Not supported
2020-02-03 18:31:30 +01:00
RLGL . State . currentMatrixMode = mode ;
2018-07-16 17:53:47 +02:00
}
2020-02-03 18:31:30 +01:00
// Push the current matrix into RLGL.State.stack
2018-07-16 17:53:47 +02:00
void rlPushMatrix ( void )
{
2020-03-27 18:31:36 +01:00
if ( RLGL . State . stackCounter > = MAX_MATRIX_STACK_SIZE ) TRACELOG ( LOG_ERROR , " RLGL: Matrix stack overflow (MAX_MATRIX_STACK_SIZE) " ) ;
2018-12-11 18:54:48 +01:00
2020-02-03 18:31:30 +01:00
if ( RLGL . State . currentMatrixMode = = RL_MODELVIEW )
2018-07-16 17:53:47 +02:00
{
2020-05-01 17:34:43 +02:00
RLGL . State . transformRequired = true ;
2020-02-03 18:31:30 +01:00
RLGL . State . currentMatrix = & RLGL . State . transform ;
2018-07-16 17:53:47 +02:00
}
2020-02-03 18:31:30 +01:00
RLGL . State . stack [ RLGL . State . stackCounter ] = * RLGL . State . currentMatrix ;
RLGL . State . stackCounter + + ;
2018-07-16 17:53:47 +02:00
}
2020-02-03 18:31:30 +01:00
// Pop lattest inserted matrix from RLGL.State.stack
2018-07-16 17:53:47 +02:00
void rlPopMatrix ( void )
2019-02-21 18:45:19 +01:00
{
2020-02-03 18:31:30 +01:00
if ( RLGL . State . stackCounter > 0 )
2018-07-16 17:53:47 +02:00
{
2020-02-03 18:31:30 +01:00
Matrix mat = RLGL . State . stack [ RLGL . State . stackCounter - 1 ] ;
* RLGL . State . currentMatrix = mat ;
RLGL . State . stackCounter - - ;
2018-07-16 17:53:47 +02:00
}
2019-02-21 18:45:19 +01:00
2020-02-03 18:31:30 +01:00
if ( ( RLGL . State . stackCounter = = 0 ) & & ( RLGL . State . currentMatrixMode = = RL_MODELVIEW ) )
2018-12-11 18:54:48 +01:00
{
2020-02-03 18:31:30 +01:00
RLGL . State . currentMatrix = & RLGL . State . modelview ;
2020-05-01 17:34:43 +02:00
RLGL . State . transformRequired = false ;
2018-12-11 18:54:48 +01:00
}
2018-07-16 17:53:47 +02:00
}
// Reset current matrix to identity matrix
void rlLoadIdentity ( void )
{
2020-02-03 18:31:30 +01:00
* RLGL . State . currentMatrix = MatrixIdentity ( ) ;
2018-07-16 17:53:47 +02:00
}
// Multiply the current matrix by a translation matrix
void rlTranslatef ( float x , float y , float z )
{
Matrix matTranslation = MatrixTranslate ( x , y , z ) ;
// NOTE: We transpose matrix with multiplication order
2020-02-03 18:31:30 +01:00
* RLGL . State . currentMatrix = MatrixMultiply ( matTranslation , * RLGL . State . currentMatrix ) ;
2018-07-16 17:53:47 +02:00
}
// Multiply the current matrix by a rotation matrix
void rlRotatef ( float angleDeg , float x , float y , float z )
{
Matrix matRotation = MatrixIdentity ( ) ;
Vector3 axis = ( Vector3 ) { x , y , z } ;
matRotation = MatrixRotate ( Vector3Normalize ( axis ) , angleDeg * DEG2RAD ) ;
// NOTE: We transpose matrix with multiplication order
2020-02-03 18:31:30 +01:00
* RLGL . State . currentMatrix = MatrixMultiply ( matRotation , * RLGL . State . currentMatrix ) ;
2018-07-16 17:53:47 +02:00
}
// Multiply the current matrix by a scaling matrix
void rlScalef ( float x , float y , float z )
{
Matrix matScale = MatrixScale ( x , y , z ) ;
// NOTE: We transpose matrix with multiplication order
2020-02-03 18:31:30 +01:00
* RLGL . State . currentMatrix = MatrixMultiply ( matScale , * RLGL . State . currentMatrix ) ;
2018-07-16 17:53:47 +02:00
}
// Multiply the current matrix by another matrix
void rlMultMatrixf ( float * matf )
{
// Matrix creation from array
Matrix mat = { matf [ 0 ] , matf [ 4 ] , matf [ 8 ] , matf [ 12 ] ,
matf [ 1 ] , matf [ 5 ] , matf [ 9 ] , matf [ 13 ] ,
matf [ 2 ] , matf [ 6 ] , matf [ 10 ] , matf [ 14 ] ,
matf [ 3 ] , matf [ 7 ] , matf [ 11 ] , matf [ 15 ] } ;
2020-02-03 18:31:30 +01:00
* RLGL . State . currentMatrix = MatrixMultiply ( * RLGL . State . currentMatrix , mat ) ;
2018-07-16 17:53:47 +02:00
}
// Multiply the current matrix by a perspective matrix generated by parameters
UWP Support Overhaul (#819)
* Working build
* Fix build again, stop deleting files
* Hotfix crash, needs investigating
* Remove VS2015.UWP, I cannot update the project
* Lots of UWP work, added keyboard and mouse press support. Still need to finish scroll wheel, mouse position and cursor hiding, plus other stuff that I haven't seen yet.
* Implemented a ton more things, added BaseApp.h to provide common code to UWP apps.
* Remove constant window dimensions
* Enable and Disable cursor support.
* Actually use mouse delta
* Gamepad Support
* Cleaning and small tweaks
* Restore original example.
* Update comment
* Use 'Messages' to handle the cursor functions so code is more portable.
* Comment
* Comment unused message fields and use vector for mouse pos instead.
* Move messages to utils.h and use messages for everything. No more plat-specific code in raylib.h
* Working build
* Fix build again, stop deleting files
* Hotfix crash, needs investigating
* Remove VS2015.UWP, I cannot update the project
* Lots of UWP work, added keyboard and mouse press support. Still need to finish scroll wheel, mouse position and cursor hiding, plus other stuff that I haven't seen yet.
* Implemented a ton more things, added BaseApp.h to provide common code to UWP apps.
* Remove constant window dimensions
* Enable and Disable cursor support.
* Actually use mouse delta
* Gamepad Support
* Cleaning and small tweaks
* Restore original example.
* Update comment
* Use 'Messages' to handle the cursor functions so code is more portable.
* Comment
* Comment unused message fields and use vector for mouse pos instead.
* Move messages to utils.h and use messages for everything. No more plat-specific code in raylib.h
* Tested some desktop stuff and added projection matrix updates for window resizing.
* Fixed big bad mouse bug
* Fix alt buttons and add hack to combat flickery key presses (far from perfect)
* Remove debug code
* Final commit
* Well, so I thought
* Wow, i am bad
* Remove packages folder
* Remove useless include
* Apply requested changes and fix linux build
* Try to stop packages folder
* Have we fixed the formatting properly?
* Third time's the charm?
* Where did this come from?
* Re-fix
* Autoformat is gonna kill
* Fixed XBOX ONE Support
* Fix tabs
2019-04-27 19:33:51 +01:00
void rlFrustum ( double left , double right , double bottom , double top , double znear , double zfar )
2018-07-16 17:53:47 +02:00
{
UWP Support Overhaul (#819)
* Working build
* Fix build again, stop deleting files
* Hotfix crash, needs investigating
* Remove VS2015.UWP, I cannot update the project
* Lots of UWP work, added keyboard and mouse press support. Still need to finish scroll wheel, mouse position and cursor hiding, plus other stuff that I haven't seen yet.
* Implemented a ton more things, added BaseApp.h to provide common code to UWP apps.
* Remove constant window dimensions
* Enable and Disable cursor support.
* Actually use mouse delta
* Gamepad Support
* Cleaning and small tweaks
* Restore original example.
* Update comment
* Use 'Messages' to handle the cursor functions so code is more portable.
* Comment
* Comment unused message fields and use vector for mouse pos instead.
* Move messages to utils.h and use messages for everything. No more plat-specific code in raylib.h
* Working build
* Fix build again, stop deleting files
* Hotfix crash, needs investigating
* Remove VS2015.UWP, I cannot update the project
* Lots of UWP work, added keyboard and mouse press support. Still need to finish scroll wheel, mouse position and cursor hiding, plus other stuff that I haven't seen yet.
* Implemented a ton more things, added BaseApp.h to provide common code to UWP apps.
* Remove constant window dimensions
* Enable and Disable cursor support.
* Actually use mouse delta
* Gamepad Support
* Cleaning and small tweaks
* Restore original example.
* Update comment
* Use 'Messages' to handle the cursor functions so code is more portable.
* Comment
* Comment unused message fields and use vector for mouse pos instead.
* Move messages to utils.h and use messages for everything. No more plat-specific code in raylib.h
* Tested some desktop stuff and added projection matrix updates for window resizing.
* Fixed big bad mouse bug
* Fix alt buttons and add hack to combat flickery key presses (far from perfect)
* Remove debug code
* Final commit
* Well, so I thought
* Wow, i am bad
* Remove packages folder
* Remove useless include
* Apply requested changes and fix linux build
* Try to stop packages folder
* Have we fixed the formatting properly?
* Third time's the charm?
* Where did this come from?
* Re-fix
* Autoformat is gonna kill
* Fixed XBOX ONE Support
* Fix tabs
2019-04-27 19:33:51 +01:00
Matrix matPerps = MatrixFrustum ( left , right , bottom , top , znear , zfar ) ;
2018-07-16 17:53:47 +02:00
2020-02-03 18:31:30 +01:00
* RLGL . State . currentMatrix = MatrixMultiply ( * RLGL . State . currentMatrix , matPerps ) ;
2018-07-16 17:53:47 +02:00
}
// Multiply the current matrix by an orthographic matrix generated by parameters
UWP Support Overhaul (#819)
* Working build
* Fix build again, stop deleting files
* Hotfix crash, needs investigating
* Remove VS2015.UWP, I cannot update the project
* Lots of UWP work, added keyboard and mouse press support. Still need to finish scroll wheel, mouse position and cursor hiding, plus other stuff that I haven't seen yet.
* Implemented a ton more things, added BaseApp.h to provide common code to UWP apps.
* Remove constant window dimensions
* Enable and Disable cursor support.
* Actually use mouse delta
* Gamepad Support
* Cleaning and small tweaks
* Restore original example.
* Update comment
* Use 'Messages' to handle the cursor functions so code is more portable.
* Comment
* Comment unused message fields and use vector for mouse pos instead.
* Move messages to utils.h and use messages for everything. No more plat-specific code in raylib.h
* Working build
* Fix build again, stop deleting files
* Hotfix crash, needs investigating
* Remove VS2015.UWP, I cannot update the project
* Lots of UWP work, added keyboard and mouse press support. Still need to finish scroll wheel, mouse position and cursor hiding, plus other stuff that I haven't seen yet.
* Implemented a ton more things, added BaseApp.h to provide common code to UWP apps.
* Remove constant window dimensions
* Enable and Disable cursor support.
* Actually use mouse delta
* Gamepad Support
* Cleaning and small tweaks
* Restore original example.
* Update comment
* Use 'Messages' to handle the cursor functions so code is more portable.
* Comment
* Comment unused message fields and use vector for mouse pos instead.
* Move messages to utils.h and use messages for everything. No more plat-specific code in raylib.h
* Tested some desktop stuff and added projection matrix updates for window resizing.
* Fixed big bad mouse bug
* Fix alt buttons and add hack to combat flickery key presses (far from perfect)
* Remove debug code
* Final commit
* Well, so I thought
* Wow, i am bad
* Remove packages folder
* Remove useless include
* Apply requested changes and fix linux build
* Try to stop packages folder
* Have we fixed the formatting properly?
* Third time's the charm?
* Where did this come from?
* Re-fix
* Autoformat is gonna kill
* Fixed XBOX ONE Support
* Fix tabs
2019-04-27 19:33:51 +01:00
void rlOrtho ( double left , double right , double bottom , double top , double znear , double zfar )
2018-07-16 17:53:47 +02:00
{
2021-01-09 12:37:21 +01:00
// NOTE: If left-right and top-botton values are equal it could create
// a division by zero on MatrixOrtho(), response to it is platform/compiler dependant
Matrix matOrtho = MatrixOrtho ( left , right , bottom , top , znear , zfar ) ;
* RLGL . State . currentMatrix = MatrixMultiply ( * RLGL . State . currentMatrix , matOrtho ) ;
2018-07-16 17:53:47 +02:00
}
# endif
// Set the viewport area (transformation from normalized device coordinates to window coordinates)
void rlViewport ( int x , int y , int width , int height )
{
glViewport ( x , y , width , height ) ;
}
//----------------------------------------------------------------------------------
// Module Functions Definition - Vertex level operations
//----------------------------------------------------------------------------------
# if defined(GRAPHICS_API_OPENGL_11)
// Fallback to OpenGL 1.1 function calls
//---------------------------------------
void rlBegin ( int mode )
{
switch ( mode )
{
case RL_LINES : glBegin ( GL_LINES ) ; break ;
case RL_TRIANGLES : glBegin ( GL_TRIANGLES ) ; break ;
case RL_QUADS : glBegin ( GL_QUADS ) ; break ;
default : break ;
}
}
void rlEnd ( ) { glEnd ( ) ; }
void rlVertex2i ( int x , int y ) { glVertex2i ( x , y ) ; }
void rlVertex2f ( float x , float y ) { glVertex2f ( x , y ) ; }
void rlVertex3f ( float x , float y , float z ) { glVertex3f ( x , y , z ) ; }
void rlTexCoord2f ( float x , float y ) { glTexCoord2f ( x , y ) ; }
void rlNormal3f ( float x , float y , float z ) { glNormal3f ( x , y , z ) ; }
2020-09-18 02:11:49 +02:00
void rlColor4ub ( unsigned char r , unsigned char g , unsigned char b , unsigned char a ) { glColor4ub ( r , g , b , a ) ; }
2018-07-16 17:53:47 +02:00
void rlColor3f ( float x , float y , float z ) { glColor3f ( x , y , z ) ; }
void rlColor4f ( float x , float y , float z , float w ) { glColor4f ( x , y , z , w ) ; }
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2018-07-16 17:53:47 +02:00
// Initialize drawing mode (how to organize vertex)
void rlBegin ( int mode )
{
2018-12-11 18:54:48 +01:00
// Draw mode can be RL_LINES, RL_TRIANGLES and RL_QUADS
// NOTE: In all three cases, vertex are accumulated over default internal vertex buffer
2020-05-01 17:34:43 +02:00
if ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . mode ! = mode )
2018-12-11 18:54:48 +01:00
{
2020-05-01 17:34:43 +02:00
if ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount > 0 )
2019-03-28 18:05:32 +01:00
{
2020-05-01 17:34:43 +02:00
// Make sure current RLGL.currentBatch->draws[i].vertexCount is aligned a multiple of 4,
2019-03-28 18:05:32 +01:00
// that way, following QUADS drawing will keep aligned with index processing
// It implies adding some extra alignment vertex at the end of the draw,
2019-04-04 13:50:52 +02:00
// those vertex are not processed but they are considered as an additional offset
2019-03-28 18:05:32 +01:00
// for the next set of vertex to be drawn
2020-05-01 17:34:43 +02:00
if ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . mode = = RL_LINES ) RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment = ( ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount < 4 ) ? RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount : RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount % 4 ) ;
else if ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . mode = = RL_TRIANGLES ) RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment = ( ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount < 4 ) ? 1 : ( 4 - ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount % 4 ) ) ) ;
2019-04-04 13:50:52 +02:00
2020-05-01 17:34:43 +02:00
else RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment = 0 ;
2019-06-15 13:46:48 +08:00
2020-09-25 18:19:19 +02:00
if ( rlCheckBufferLimit ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment ) ) DrawRenderBatch ( RLGL . currentBatch ) ;
2019-03-28 18:05:32 +01:00
else
{
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter + = RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter + = RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . tcCounter + = RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment ;
2019-04-04 13:50:52 +02:00
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > drawsCounter + + ;
2019-03-28 18:05:32 +01:00
}
}
2019-04-04 13:50:52 +02:00
2020-09-25 18:19:19 +02:00
if ( RLGL . currentBatch - > drawsCounter > = DEFAULT_BATCH_DRAWCALLS ) DrawRenderBatch ( RLGL . currentBatch ) ;
2018-12-11 18:54:48 +01:00
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . mode = mode ;
RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount = 0 ;
RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . textureId = RLGL . State . defaultTextureId ;
2018-12-11 18:54:48 +01:00
}
2018-07-16 17:53:47 +02:00
}
// Finish vertex providing
void rlEnd ( void )
{
2018-12-11 18:54:48 +01:00
// Make sure vertexCount is the same for vertices, texcoords, colors and normals
// NOTE: In OpenGL 1.1, one glColor call can be made for all the subsequent glVertex calls
2019-02-21 18:45:19 +01:00
2018-12-11 18:54:48 +01:00
// Make sure colors count match vertex count
2020-05-01 17:34:43 +02:00
if ( RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter ! = RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter )
2018-07-16 17:53:47 +02:00
{
2020-05-01 17:34:43 +02:00
int addColors = RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter - RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter ;
2018-07-16 17:53:47 +02:00
2018-12-11 18:54:48 +01:00
for ( int i = 0 ; i < addColors ; i + + )
{
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter ] = RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter - 4 ] ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter + 1 ] = RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter - 3 ] ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter + 2 ] = RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter - 2 ] ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter + 3 ] = RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter - 1 ] ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter + + ;
2018-12-11 18:54:48 +01:00
}
2018-07-16 17:53:47 +02:00
}
2019-02-21 18:45:19 +01:00
2018-12-11 18:54:48 +01:00
// Make sure texcoords count match vertex count
2020-05-01 17:34:43 +02:00
if ( RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter ! = RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . tcCounter )
2018-07-16 17:53:47 +02:00
{
2020-05-01 17:34:43 +02:00
int addTexCoords = RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter - RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . tcCounter ;
2018-07-16 17:53:47 +02:00
2018-12-11 18:54:48 +01:00
for ( int i = 0 ; i < addTexCoords ; i + + )
2018-07-16 17:53:47 +02:00
{
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . texcoords [ 2 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . tcCounter ] = 0.0f ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . texcoords [ 2 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . tcCounter + 1 ] = 0.0f ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . tcCounter + + ;
2018-12-11 18:54:48 +01:00
}
2018-07-16 17:53:47 +02:00
}
2018-12-11 18:54:48 +01:00
// TODO: Make sure normals count match vertex count... if normals support is added in a future... :P
2018-07-16 17:53:47 +02:00
// NOTE: Depth increment is dependant on rlOrtho(): z-near and z-far values,
// as well as depth buffer bit-depth (16bit or 24bit or 32bit)
// Correct increment formula would be: depthInc = (zfar - znear)/pow(2, bits)
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > currentDepth + = ( 1.0f / 20000.0f ) ;
2018-07-16 17:53:47 +02:00
// Verify internal buffers limits
// NOTE: This check is combined with usage of rlCheckBufferLimit()
2020-05-01 17:34:43 +02:00
if ( ( RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter ) > = ( RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . elementsCount * 4 - 4 ) )
Corrected issue with batch overflows
When a batch reach its vertex limit, a draw call is issued and batch restarted for refilling but if the draw call was issued for vertex data accumulated inside rlPushMatrix/rlPopMatrix, draw call was issued before the rlPopMatrix, consequently modelview matrix was not properly recovered before the draw call... obviously, it only happened the following draw calls, not the first one...
Now it works ok but this system needs to reviewed, noticed and important frames drop when processing around 20 dynamic batch draw calls, it means filling MAX_QUADS_BATCH (8192) quads of data 20 times per frame, including data updating and sending for draw processing.
Doing some maths, it means:
Vertex data (float) -----> 8192 quads * 4 vertex * 3 comp * 4 byte = 393216 bytes
Texcoords data (float) -> 8192 quads * 4 vertex * 2 comp * 4 byte = 262144 bytes
Color data (uchar) -----> 8192 quads * 4 vertex * 4 comp * 1 byte = 131072 bytes
Thats a total of 786432 bytes (0.75MB) sent to GPU 20 times per frame for processing... I'm testing in an Intel HD Graphics integrated, I imagine is too much data to be sent and and it causes stalls, so the frames drop...
2018-08-17 13:55:46 +02:00
{
2020-09-25 18:19:19 +02:00
// WARNING: If we are between rlPushMatrix() and rlPopMatrix() and we need to force a DrawRenderBatch(),
2020-02-03 18:31:30 +01:00
// we need to call rlPopMatrix() before to recover *RLGL.State.currentMatrix (RLGL.State.modelview) for the next forced draw call!
// If we have multiple matrix pushed, it will require "RLGL.State.stackCounter" pops before launching the draw
for ( int i = RLGL . State . stackCounter ; i > = 0 ; i - - ) rlPopMatrix ( ) ;
2020-09-25 18:19:19 +02:00
DrawRenderBatch ( RLGL . currentBatch ) ;
Corrected issue with batch overflows
When a batch reach its vertex limit, a draw call is issued and batch restarted for refilling but if the draw call was issued for vertex data accumulated inside rlPushMatrix/rlPopMatrix, draw call was issued before the rlPopMatrix, consequently modelview matrix was not properly recovered before the draw call... obviously, it only happened the following draw calls, not the first one...
Now it works ok but this system needs to reviewed, noticed and important frames drop when processing around 20 dynamic batch draw calls, it means filling MAX_QUADS_BATCH (8192) quads of data 20 times per frame, including data updating and sending for draw processing.
Doing some maths, it means:
Vertex data (float) -----> 8192 quads * 4 vertex * 3 comp * 4 byte = 393216 bytes
Texcoords data (float) -> 8192 quads * 4 vertex * 2 comp * 4 byte = 262144 bytes
Color data (uchar) -----> 8192 quads * 4 vertex * 4 comp * 1 byte = 131072 bytes
Thats a total of 786432 bytes (0.75MB) sent to GPU 20 times per frame for processing... I'm testing in an Intel HD Graphics integrated, I imagine is too much data to be sent and and it causes stalls, so the frames drop...
2018-08-17 13:55:46 +02:00
}
2018-07-16 17:53:47 +02:00
}
// Define one vertex (position)
2018-12-11 18:54:48 +01:00
// NOTE: Vertex position data is the basic information required for drawing
2018-07-16 17:53:47 +02:00
void rlVertex3f ( float x , float y , float z )
{
2018-12-11 18:54:48 +01:00
Vector3 vec = { x , y , z } ;
2019-02-21 18:45:19 +01:00
2018-12-11 18:54:48 +01:00
// Transform provided vector if required
2020-05-01 17:34:43 +02:00
if ( RLGL . State . transformRequired ) vec = Vector3Transform ( vec , RLGL . State . transform ) ;
2019-02-21 18:45:19 +01:00
2020-05-01 17:34:43 +02:00
// Verify that current vertex buffer elements limit has not been reached
if ( RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter < ( RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . elementsCount * 4 ) )
2018-07-16 17:53:47 +02:00
{
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vertices [ 3 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter ] = vec . x ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vertices [ 3 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter + 1 ] = vec . y ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vertices [ 3 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter + 2 ] = vec . z ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter + + ;
2018-07-16 17:53:47 +02:00
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount + + ;
2018-07-16 17:53:47 +02:00
}
2020-05-01 17:34:43 +02:00
else TRACELOG ( LOG_ERROR , " RLGL: Batch elements overflow " ) ;
2018-07-16 17:53:47 +02:00
}
// Define one vertex (position)
void rlVertex2f ( float x , float y )
{
2020-05-01 17:34:43 +02:00
rlVertex3f ( x , y , RLGL . currentBatch - > currentDepth ) ;
2018-07-16 17:53:47 +02:00
}
// Define one vertex (position)
void rlVertex2i ( int x , int y )
{
2020-05-01 17:34:43 +02:00
rlVertex3f ( ( float ) x , ( float ) y , RLGL . currentBatch - > currentDepth ) ;
2018-07-16 17:53:47 +02:00
}
// Define one vertex (texture coordinate)
// NOTE: Texture coordinates are limited to QUADS only
void rlTexCoord2f ( float x , float y )
{
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . texcoords [ 2 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . tcCounter ] = x ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . texcoords [ 2 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . tcCounter + 1 ] = y ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . tcCounter + + ;
2018-07-16 17:53:47 +02:00
}
// Define one vertex (normal)
2019-02-22 13:13:11 +01:00
// NOTE: Normals limited to TRIANGLES only?
2018-07-16 17:53:47 +02:00
void rlNormal3f ( float x , float y , float z )
{
// TODO: Normals usage...
}
// Define one vertex (color)
2020-09-18 02:11:49 +02:00
void rlColor4ub ( unsigned char x , unsigned char y , unsigned char z , unsigned char w )
2018-07-16 17:53:47 +02:00
{
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter ] = x ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter + 1 ] = y ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter + 2 ] = z ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . colors [ 4 * RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter + 3 ] = w ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter + + ;
2018-07-16 17:53:47 +02:00
}
// Define one vertex (color)
void rlColor4f ( float r , float g , float b , float a )
{
2020-09-18 02:11:49 +02:00
rlColor4ub ( ( unsigned char ) ( r * 255 ) , ( unsigned char ) ( g * 255 ) , ( unsigned char ) ( b * 255 ) , ( unsigned char ) ( a * 255 ) ) ;
2018-07-16 17:53:47 +02:00
}
// Define one vertex (color)
void rlColor3f ( float x , float y , float z )
{
2020-09-18 02:11:49 +02:00
rlColor4ub ( ( unsigned char ) ( x * 255 ) , ( unsigned char ) ( y * 255 ) , ( unsigned char ) ( z * 255 ) , 255 ) ;
2018-07-16 17:53:47 +02:00
}
# endif
//----------------------------------------------------------------------------------
// Module Functions Definition - OpenGL equivalent functions (common to 1.1, 3.3+, ES2)
//----------------------------------------------------------------------------------
// Enable texture usage
void rlEnableTexture ( unsigned int id )
{
# if defined(GRAPHICS_API_OPENGL_11)
glEnable ( GL_TEXTURE_2D ) ;
glBindTexture ( GL_TEXTURE_2D , id ) ;
# endif
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-05-01 17:34:43 +02:00
if ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . textureId ! = id )
2018-07-16 17:53:47 +02:00
{
2020-05-01 17:34:43 +02:00
if ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount > 0 )
2019-03-28 18:05:32 +01:00
{
2020-05-01 17:34:43 +02:00
// Make sure current RLGL.currentBatch->draws[i].vertexCount is aligned a multiple of 4,
2019-03-28 18:05:32 +01:00
// that way, following QUADS drawing will keep aligned with index processing
// It implies adding some extra alignment vertex at the end of the draw,
2019-04-04 13:50:52 +02:00
// those vertex are not processed but they are considered as an additional offset
2019-03-28 18:05:32 +01:00
// for the next set of vertex to be drawn
2020-05-01 17:34:43 +02:00
if ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . mode = = RL_LINES ) RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment = ( ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount < 4 ) ? RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount : RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount % 4 ) ;
else if ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . mode = = RL_TRIANGLES ) RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment = ( ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount < 4 ) ? 1 : ( 4 - ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount % 4 ) ) ) ;
2019-04-04 13:50:52 +02:00
2020-05-01 17:34:43 +02:00
else RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment = 0 ;
2019-06-15 13:46:48 +08:00
2020-09-25 18:19:19 +02:00
if ( rlCheckBufferLimit ( RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment ) ) DrawRenderBatch ( RLGL . currentBatch ) ;
2019-03-28 18:05:32 +01:00
else
{
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter + = RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . cCounter + = RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment ;
RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . tcCounter + = RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexAlignment ;
2019-04-04 13:50:52 +02:00
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > drawsCounter + + ;
2019-03-28 18:05:32 +01:00
}
}
2019-04-04 13:50:52 +02:00
2020-09-25 18:19:19 +02:00
if ( RLGL . currentBatch - > drawsCounter > = DEFAULT_BATCH_DRAWCALLS ) DrawRenderBatch ( RLGL . currentBatch ) ;
2018-07-16 17:53:47 +02:00
2020-05-01 17:34:43 +02:00
RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . textureId = id ;
RLGL . currentBatch - > draws [ RLGL . currentBatch - > drawsCounter - 1 ] . vertexCount = 0 ;
2018-07-16 17:53:47 +02:00
}
# endif
}
// Disable texture usage
void rlDisableTexture ( void )
{
# if defined(GRAPHICS_API_OPENGL_11)
glDisable ( GL_TEXTURE_2D ) ;
glBindTexture ( GL_TEXTURE_2D , 0 ) ;
# else
// NOTE: If quads batch limit is reached,
// we force a draw call and next batch starts
2020-09-25 18:19:19 +02:00
if ( RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter > = ( RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . elementsCount * 4 ) ) DrawRenderBatch ( RLGL . currentBatch ) ;
2018-07-16 17:53:47 +02:00
# endif
}
// Set texture parameters (wrap mode/filter mode)
void rlTextureParameters ( unsigned int id , int param , int value )
{
glBindTexture ( GL_TEXTURE_2D , id ) ;
switch ( param )
{
case RL_TEXTURE_WRAP_S :
case RL_TEXTURE_WRAP_T :
{
2021-03-03 19:47:37 +01:00
if ( value = = RL_TEXTURE_WRAP_MIRROR_CLAMP )
2018-12-14 10:00:44 +01:00
{
2019-12-04 11:05:46 +01:00
# if !defined(GRAPHICS_API_OPENGL_11)
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . texMirrorClamp ) glTexParameteri ( GL_TEXTURE_2D , param , value ) ;
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_WARNING , " GL: Clamp mirror wrap mode not supported (GL_MIRROR_CLAMP_EXT) " ) ;
2019-12-04 11:05:46 +01:00
# endif
2018-12-14 10:00:44 +01:00
}
2019-07-27 11:59:41 +02:00
else glTexParameteri ( GL_TEXTURE_2D , param , value ) ;
2018-07-16 17:53:47 +02:00
} break ;
case RL_TEXTURE_MAG_FILTER :
case RL_TEXTURE_MIN_FILTER : glTexParameteri ( GL_TEXTURE_2D , param , value ) ; break ;
2021-03-03 19:47:37 +01:00
case RL_TEXTURE_FILTER_ANISOTROPIC :
2018-07-16 17:53:47 +02:00
{
2018-12-14 10:00:44 +01:00
# if !defined(GRAPHICS_API_OPENGL_11)
2020-02-03 18:31:30 +01:00
if ( value < = RLGL . ExtSupported . maxAnisotropicLevel ) glTexParameterf ( GL_TEXTURE_2D , GL_TEXTURE_MAX_ANISOTROPY_EXT , ( float ) value ) ;
else if ( RLGL . ExtSupported . maxAnisotropicLevel > 0.0f )
2018-07-16 17:53:47 +02:00
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " GL: Maximum anisotropic filter level supported is %iX " , id , RLGL . ExtSupported . maxAnisotropicLevel ) ;
2018-07-16 17:53:47 +02:00
glTexParameterf ( GL_TEXTURE_2D , GL_TEXTURE_MAX_ANISOTROPY_EXT , ( float ) value ) ;
}
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_WARNING , " GL: Anisotropic filtering not supported " ) ;
2018-12-14 10:00:44 +01:00
# endif
2018-07-16 17:53:47 +02:00
} break ;
default : break ;
}
glBindTexture ( GL_TEXTURE_2D , 0 ) ;
}
2020-09-18 13:50:51 +02:00
// Enable shader program usage
void rlEnableShader ( unsigned int id )
{
# if (defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2))
glUseProgram ( id ) ;
# endif
}
// Disable shader program usage
void rlDisableShader ( void )
{
# if (defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2))
glUseProgram ( 0 ) ;
# endif
}
2018-07-16 17:53:47 +02:00
// Enable rendering to texture (fbo)
2020-09-18 02:11:49 +02:00
void rlEnableFramebuffer ( unsigned int id )
2018-07-16 17:53:47 +02:00
{
2020-07-17 19:41:38 +02:00
# if (defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)) && defined(SUPPORT_RENDER_TEXTURES_HINT)
2018-07-16 17:53:47 +02:00
glBindFramebuffer ( GL_FRAMEBUFFER , id ) ;
# endif
}
// Disable rendering to texture
2020-09-18 02:11:49 +02:00
void rlDisableFramebuffer ( void )
2018-07-16 17:53:47 +02:00
{
2020-07-17 19:41:38 +02:00
# if (defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)) && defined(SUPPORT_RENDER_TEXTURES_HINT)
2018-07-16 17:53:47 +02:00
glBindFramebuffer ( GL_FRAMEBUFFER , 0 ) ;
# endif
}
// Enable depth test
2019-08-26 21:09:03 +02:00
void rlEnableDepthTest ( void ) { glEnable ( GL_DEPTH_TEST ) ; }
2018-07-16 17:53:47 +02:00
// Disable depth test
2019-08-26 21:09:03 +02:00
void rlDisableDepthTest ( void ) { glDisable ( GL_DEPTH_TEST ) ; }
2018-07-16 17:53:47 +02:00
2020-12-05 12:53:19 -08:00
// Enable depth write
void rlEnableDepthMask ( void ) { glDepthMask ( GL_TRUE ) ; }
// Disable depth write
void rlDisableDepthMask ( void ) { glDepthMask ( GL_FALSE ) ; }
2019-04-28 16:03:59 +02:00
// Enable backface culling
2019-08-26 21:09:03 +02:00
void rlEnableBackfaceCulling ( void ) { glEnable ( GL_CULL_FACE ) ; }
2019-04-28 16:03:59 +02:00
// Disable backface culling
2019-08-26 21:09:03 +02:00
void rlDisableBackfaceCulling ( void ) { glDisable ( GL_CULL_FACE ) ; }
// Enable scissor test
RLAPI void rlEnableScissorTest ( void ) { glEnable ( GL_SCISSOR_TEST ) ; }
// Disable scissor test
RLAPI void rlDisableScissorTest ( void ) { glDisable ( GL_SCISSOR_TEST ) ; }
// Scissor test
RLAPI void rlScissor ( int x , int y , int width , int height ) { glScissor ( x , y , width , height ) ; }
2019-04-28 16:03:59 +02:00
2018-07-16 17:53:47 +02:00
// Enable wire mode
void rlEnableWireMode ( void )
{
2020-05-01 17:31:44 +02:00
# if defined(GRAPHICS_API_OPENGL_11) || defined(GRAPHICS_API_OPENGL_33)
2018-07-16 17:53:47 +02:00
// NOTE: glPolygonMode() not available on OpenGL ES
glPolygonMode ( GL_FRONT_AND_BACK , GL_LINE ) ;
# endif
}
// Disable wire mode
void rlDisableWireMode ( void )
{
2020-05-01 17:31:44 +02:00
# if defined(GRAPHICS_API_OPENGL_11) || defined(GRAPHICS_API_OPENGL_33)
2018-07-16 17:53:47 +02:00
// NOTE: glPolygonMode() not available on OpenGL ES
glPolygonMode ( GL_FRONT_AND_BACK , GL_FILL ) ;
# endif
}
2020-12-13 01:58:24 -08:00
// Set the line drawing width
void rlSetLineWidth ( float width )
{
glLineWidth ( width ) ;
}
// Get the line drawing width
float rlGetLineWidth ( void )
{
float width = 0 ;
glGetFloatv ( GL_LINE_WIDTH , & width ) ;
return width ;
}
// Enable line aliasing
void rlEnableSmoothLines ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_21) || defined(GRAPHICS_API_OPENGL_11)
glEnable ( GL_LINE_SMOOTH ) ;
# endif
}
// Disable line aliasing
void rlDisableSmoothLines ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_21) || defined(GRAPHICS_API_OPENGL_11)
2020-12-23 20:30:00 +01:00
glDisable ( GL_LINE_SMOOTH ) ;
2020-12-13 01:58:24 -08:00
# endif
}
2018-07-16 17:53:47 +02:00
2020-09-18 02:11:49 +02:00
// Unload framebuffer from GPU memory
2020-09-17 13:44:03 +02:00
// NOTE: All attached textures/cubemaps/renderbuffers are also deleted
2020-09-18 02:11:49 +02:00
void rlUnloadFramebuffer ( unsigned int id )
2018-07-16 17:53:47 +02:00
{
2020-07-17 19:41:38 +02:00
# if (defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)) && defined(SUPPORT_RENDER_TEXTURES_HINT)
2020-11-03 23:47:33 +01:00
2020-09-18 02:11:49 +02:00
// Query depth attachment to automatically delete texture/renderbuffer
int depthType = 0 , depthId = 0 ;
glBindFramebuffer ( GL_FRAMEBUFFER , id ) ; // Bind framebuffer to query depth texture type
2020-09-17 13:44:03 +02:00
glGetFramebufferAttachmentParameteriv ( GL_FRAMEBUFFER , GL_DEPTH_ATTACHMENT , GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE , & depthType ) ;
2020-09-18 02:11:49 +02:00
glGetFramebufferAttachmentParameteriv ( GL_FRAMEBUFFER , GL_DEPTH_ATTACHMENT , GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME , & depthId ) ;
unsigned int depthIdU = ( unsigned int ) depthId ;
if ( depthType = = GL_RENDERBUFFER ) glDeleteRenderbuffers ( 1 , & depthIdU ) ;
else if ( depthType = = GL_RENDERBUFFER ) glDeleteTextures ( 1 , & depthIdU ) ;
2020-09-17 13:44:03 +02:00
2020-11-03 23:47:33 +01:00
// NOTE: If a texture object is deleted while its image is attached to the *currently bound* framebuffer,
2020-09-17 13:44:03 +02:00
// the texture image is automatically detached from the currently bound framebuffer.
2020-09-18 02:11:49 +02:00
glBindFramebuffer ( GL_FRAMEBUFFER , 0 ) ;
glDeleteFramebuffers ( 1 , & id ) ;
2018-07-16 17:53:47 +02:00
2020-09-18 02:11:49 +02:00
TRACELOG ( LOG_INFO , " FBO: [ID %i] Unloaded framebuffer from VRAM (GPU) " , id ) ;
2018-07-16 17:53:47 +02:00
# endif
}
// Clear color buffer with color
2020-09-18 02:11:49 +02:00
void rlClearColor ( unsigned char r , unsigned char g , unsigned char b , unsigned char a )
2018-07-16 17:53:47 +02:00
{
// Color values clamp to 0.0f(0) and 1.0f(255)
float cr = ( float ) r / 255 ;
float cg = ( float ) g / 255 ;
float cb = ( float ) b / 255 ;
float ca = ( float ) a / 255 ;
glClearColor ( cr , cg , cb , ca ) ;
}
// Clear used screen buffers (color and depth)
void rlClearScreenBuffers ( void )
{
glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ) ; // Clear used buffers: Color and Depth (Depth is used for 3D)
//glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT); // Stencil buffer not used...
}
2019-04-04 13:32:17 +02:00
// Update GPU buffer with new data
void rlUpdateBuffer ( int bufferId , void * data , int dataSize )
{
2019-04-23 15:12:08 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2019-04-04 13:32:17 +02:00
glBindBuffer ( GL_ARRAY_BUFFER , bufferId ) ;
glBufferSubData ( GL_ARRAY_BUFFER , 0 , dataSize , data ) ;
2019-04-23 15:12:08 +02:00
# endif
2019-04-04 13:32:17 +02:00
}
2018-07-16 17:53:47 +02:00
//----------------------------------------------------------------------------------
// Module Functions Definition - rlgl Functions
//----------------------------------------------------------------------------------
// Initialize rlgl: OpenGL extensions, default buffers/shaders/textures, OpenGL states
void rlglInit ( int width , int height )
{
// Check OpenGL information and capabilities
//------------------------------------------------------------------------------
// Print current OpenGL and GLSL version
2020-03-27 18:45:37 +01:00
TRACELOG ( LOG_INFO , " GL: OpenGL device information: " ) ;
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_INFO , " > Vendor: %s " , glGetString ( GL_VENDOR ) ) ;
TRACELOG ( LOG_INFO , " > Renderer: %s " , glGetString ( GL_RENDERER ) ) ;
TRACELOG ( LOG_INFO , " > Version: %s " , glGetString ( GL_VERSION ) ) ;
TRACELOG ( LOG_INFO , " > GLSL: %s " , glGetString ( GL_SHADING_LANGUAGE_VERSION ) ) ;
2018-07-16 17:53:47 +02:00
// NOTE: We can get a bunch of extra information about GPU capabilities (glGet*)
//int maxTexSize;
//glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTexSize);
2020-03-27 18:31:36 +01:00
//TRACELOG(LOG_INFO, "GL: Maximum texture size: %i", maxTexSize);
2018-07-16 17:53:47 +02:00
//GL_MAX_TEXTURE_IMAGE_UNITS
//GL_MAX_VIEWPORT_DIMS
//int numAuxBuffers;
//glGetIntegerv(GL_AUX_BUFFERS, &numAuxBuffers);
2020-03-27 18:31:36 +01:00
//TRACELOG(LOG_INFO, "GL: Number of aixiliar buffers: %i", numAuxBuffers);
2018-07-16 17:53:47 +02:00
//GLint numComp = 0;
//GLint format[32] = { 0 };
//glGetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numComp);
//glGetIntegerv(GL_COMPRESSED_TEXTURE_FORMATS, format);
2020-03-27 18:31:36 +01:00
//for (int i = 0; i < numComp; i++) TRACELOG(LOG_INFO, "GL: Supported compressed format: 0x%x", format[i]);
2018-07-16 17:53:47 +02:00
// NOTE: We don't need that much data on screen... right now...
2019-02-21 18:45:19 +01:00
2018-12-24 17:45:34 +01:00
// TODO: Automatize extensions loading using rlLoadExtensions() and GLAD
// Actually, when rlglInit() is called in InitWindow() in core.c,
2020-07-10 12:15:52 +02:00
// OpenGL context has already been created and required extensions loaded
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
// Get supported extensions list
GLint numExt = 0 ;
2020-05-18 13:24:21 +02:00
# if defined(GRAPHICS_API_OPENGL_33) && !defined(GRAPHICS_API_OPENGL_21)
2021-03-17 13:56:00 +01:00
// OpenGL 3.3 extensions supported by default (core)
2020-02-03 18:31:30 +01:00
RLGL . ExtSupported . vao = true ;
2021-03-17 13:56:00 +01:00
RLGL . ExtSupported . instancing = true ;
2020-02-03 18:31:30 +01:00
RLGL . ExtSupported . texNPOT = true ;
RLGL . ExtSupported . texFloat32 = true ;
RLGL . ExtSupported . texDepth = true ;
2018-07-16 17:53:47 +02:00
// We get a list of available extensions and we check for some of them (compressed textures)
// NOTE: We don't need to check again supported extensions but we do (GLAD already dealt with that)
glGetIntegerv ( GL_NUM_EXTENSIONS , & numExt ) ;
2019-07-12 14:36:20 +02:00
// Allocate numExt strings pointers
2020-05-06 19:12:09 +02:00
char * * extList = RL_MALLOC ( sizeof ( char * ) * numExt ) ;
2019-09-13 12:29:52 +01:00
2019-07-12 14:36:20 +02:00
// Get extensions strings
2020-05-06 19:12:09 +02:00
for ( int i = 0 ; i < numExt ; i + + ) extList [ i ] = ( char * ) glGetStringi ( GL_EXTENSIONS , i ) ;
2018-07-16 17:53:47 +02:00
2020-05-18 13:24:21 +02:00
# endif
# if defined(GRAPHICS_API_OPENGL_ES2) || defined(GRAPHICS_API_OPENGL_21)
2019-04-27 22:47:03 +02:00
// Allocate 512 strings pointers (2 KB)
2020-05-23 19:23:40 +02:00
const char * * extList = RL_MALLOC ( 512 * sizeof ( const char * ) ) ;
2019-08-20 19:33:46 +02:00
const char * extensions = ( const char * ) glGetString ( GL_EXTENSIONS ) ; // One big const string
// NOTE: We have to duplicate string because glGetString() returns a const string
int len = strlen ( extensions ) + 1 ;
2019-08-27 10:56:49 +02:00
char * extensionsDup = ( char * ) RL_CALLOC ( len , sizeof ( char ) ) ;
2019-08-20 19:33:46 +02:00
strcpy ( extensionsDup , extensions ) ;
2019-09-13 12:29:52 +01:00
2019-08-20 19:33:46 +02:00
extList [ numExt ] = extensionsDup ;
2018-07-16 17:53:47 +02:00
2019-07-12 14:36:20 +02:00
for ( int i = 0 ; i < len ; i + + )
2018-07-16 17:53:47 +02:00
{
2019-08-20 19:33:46 +02:00
if ( extensionsDup [ i ] = = ' ' )
2019-07-12 14:36:20 +02:00
{
2019-08-20 19:33:46 +02:00
extensionsDup [ i ] = ' \0 ' ;
2019-09-13 12:29:52 +01:00
2019-07-12 14:36:20 +02:00
numExt + + ;
2019-08-20 19:33:46 +02:00
extList [ numExt ] = & extensionsDup [ i + 1 ] ;
2019-07-12 14:36:20 +02:00
}
2018-07-16 17:53:47 +02:00
}
2019-09-13 12:29:52 +01:00
// NOTE: Duplicated string (extensionsDup) must be deallocated
2018-07-16 17:53:47 +02:00
# endif
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_INFO , " GL: Supported extensions count: %i " , numExt ) ;
2018-07-16 17:53:47 +02:00
// Show supported extensions
2020-02-03 19:13:24 +01:00
//for (int i = 0; i < numExt; i++) TRACELOG(LOG_INFO, "Supported extension: %s", extList[i]);
2018-07-16 17:53:47 +02:00
// Check required extensions
for ( int i = 0 ; i < numExt ; i + + )
{
# if defined(GRAPHICS_API_OPENGL_ES2)
// Check VAO support
// NOTE: Only check on OpenGL ES, OpenGL 3.3 has VAO support as core feature
if ( strcmp ( extList [ i ] , ( const char * ) " GL_OES_vertex_array_object " ) = = 0 )
{
// The extension is supported by our hardware and driver, try to get related functions pointers
// NOTE: emscripten does not support VAOs natively, it uses emulation and it reduces overall performance...
glGenVertexArrays = ( PFNGLGENVERTEXARRAYSOESPROC ) eglGetProcAddress ( " glGenVertexArraysOES " ) ;
glBindVertexArray = ( PFNGLBINDVERTEXARRAYOESPROC ) eglGetProcAddress ( " glBindVertexArrayOES " ) ;
glDeleteVertexArrays = ( PFNGLDELETEVERTEXARRAYSOESPROC ) eglGetProcAddress ( " glDeleteVertexArraysOES " ) ;
//glIsVertexArray = (PFNGLISVERTEXARRAYOESPROC)eglGetProcAddress("glIsVertexArrayOES"); // NOTE: Fails in WebGL, omitted
2019-05-08 18:33:09 +02:00
2020-02-03 18:31:30 +01:00
if ( ( glGenVertexArrays ! = NULL ) & & ( glBindVertexArray ! = NULL ) & & ( glDeleteVertexArrays ! = NULL ) ) RLGL . ExtSupported . vao = true ;
2018-07-16 17:53:47 +02:00
}
2021-03-17 13:56:00 +01:00
// Check instanced rendering support
if ( strcmp ( extList [ i ] , ( const char * ) " GL_ANGLE_instanced_arrays " ) = = 0 )
{
glDrawArraysInstanced = ( PFNGLDRAWARRAYSINSTANCEDEXTPROC ) eglGetProcAddress ( " glDrawArraysInstancedANGLE " ) ;
glDrawElementsInstanced = ( PFNGLDRAWELEMENTSINSTANCEDEXTPROC ) eglGetProcAddress ( " glDrawElementsInstancedANGLE " ) ;
glVertexAttribDivisor = ( PFNGLVERTEXATTRIBDIVISOREXTPROC ) eglGetProcAddress ( " glVertexAttribDivisorANGLE " ) ;
if ( ( glDrawArraysInstanced ! = NULL ) & & ( glDrawElementsInstanced ! = NULL ) & & ( glVertexAttribDivisor ! = NULL ) ) RLGL . ExtSupported . instancing = true ;
}
2018-07-16 17:53:47 +02:00
// Check NPOT textures support
// NOTE: Only check on OpenGL ES, OpenGL 3.3 has NPOT textures full support as core feature
2020-02-03 18:31:30 +01:00
if ( strcmp ( extList [ i ] , ( const char * ) " GL_OES_texture_npot " ) = = 0 ) RLGL . ExtSupported . texNPOT = true ;
2018-07-16 17:53:47 +02:00
// Check texture float support
2020-02-03 18:31:30 +01:00
if ( strcmp ( extList [ i ] , ( const char * ) " GL_OES_texture_float " ) = = 0 ) RLGL . ExtSupported . texFloat32 = true ;
2019-02-21 18:45:19 +01:00
2019-02-04 16:28:17 +01:00
// Check depth texture support
if ( ( strcmp ( extList [ i ] , ( const char * ) " GL_OES_depth_texture " ) = = 0 ) | |
2020-02-03 18:31:30 +01:00
( strcmp ( extList [ i ] , ( const char * ) " GL_WEBGL_depth_texture " ) = = 0 ) ) RLGL . ExtSupported . texDepth = true ;
2019-02-21 18:45:19 +01:00
2020-02-03 18:31:30 +01:00
if ( strcmp ( extList [ i ] , ( const char * ) " GL_OES_depth24 " ) = = 0 ) RLGL . ExtSupported . maxDepthBits = 24 ;
if ( strcmp ( extList [ i ] , ( const char * ) " GL_OES_depth32 " ) = = 0 ) RLGL . ExtSupported . maxDepthBits = 32 ;
2018-07-16 17:53:47 +02:00
# endif
// DDS texture compression support
if ( ( strcmp ( extList [ i ] , ( const char * ) " GL_EXT_texture_compression_s3tc " ) = = 0 ) | |
( strcmp ( extList [ i ] , ( const char * ) " GL_WEBGL_compressed_texture_s3tc " ) = = 0 ) | |
2020-02-03 18:31:30 +01:00
( strcmp ( extList [ i ] , ( const char * ) " GL_WEBKIT_WEBGL_compressed_texture_s3tc " ) = = 0 ) ) RLGL . ExtSupported . texCompDXT = true ;
2018-07-16 17:53:47 +02:00
// ETC1 texture compression support
if ( ( strcmp ( extList [ i ] , ( const char * ) " GL_OES_compressed_ETC1_RGB8_texture " ) = = 0 ) | |
2020-02-03 18:31:30 +01:00
( strcmp ( extList [ i ] , ( const char * ) " GL_WEBGL_compressed_texture_etc1 " ) = = 0 ) ) RLGL . ExtSupported . texCompETC1 = true ;
2018-07-16 17:53:47 +02:00
// ETC2/EAC texture compression support
2020-02-03 18:31:30 +01:00
if ( strcmp ( extList [ i ] , ( const char * ) " GL_ARB_ES3_compatibility " ) = = 0 ) RLGL . ExtSupported . texCompETC2 = true ;
2018-07-16 17:53:47 +02:00
// PVR texture compression support
2020-02-03 18:31:30 +01:00
if ( strcmp ( extList [ i ] , ( const char * ) " GL_IMG_texture_compression_pvrtc " ) = = 0 ) RLGL . ExtSupported . texCompPVRT = true ;
2018-07-16 17:53:47 +02:00
// ASTC texture compression support
2020-02-03 18:31:30 +01:00
if ( strcmp ( extList [ i ] , ( const char * ) " GL_KHR_texture_compression_astc_hdr " ) = = 0 ) RLGL . ExtSupported . texCompASTC = true ;
2018-07-16 17:53:47 +02:00
// Anisotropic texture filter support
if ( strcmp ( extList [ i ] , ( const char * ) " GL_EXT_texture_filter_anisotropic " ) = = 0 )
{
2020-02-03 18:31:30 +01:00
RLGL . ExtSupported . texAnisoFilter = true ;
glGetFloatv ( 0x84FF , & RLGL . ExtSupported . maxAnisotropicLevel ) ; // GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT
2018-07-16 17:53:47 +02:00
}
// Clamp mirror wrap mode supported
2020-02-03 18:31:30 +01:00
if ( strcmp ( extList [ i ] , ( const char * ) " GL_EXT_texture_mirror_clamp " ) = = 0 ) RLGL . ExtSupported . texMirrorClamp = true ;
2018-07-16 17:53:47 +02:00
// Debug marker support
2020-02-03 18:31:30 +01:00
if ( strcmp ( extList [ i ] , ( const char * ) " GL_EXT_debug_marker " ) = = 0 ) RLGL . ExtSupported . debugMarker = true ;
2018-07-16 17:53:47 +02:00
}
2019-07-12 14:36:20 +02:00
// Free extensions pointers
2019-04-23 14:55:35 +02:00
RL_FREE ( extList ) ;
2018-07-16 17:53:47 +02:00
2020-05-18 13:24:21 +02:00
# if defined(GRAPHICS_API_OPENGL_ES2) || defined(GRAPHICS_API_OPENGL_21)
2019-08-20 19:33:46 +02:00
RL_FREE ( extensionsDup ) ; // Duplicated string must be deallocated
2020-05-18 13:24:21 +02:00
# endif
2019-08-20 19:33:46 +02:00
2020-05-18 13:24:21 +02:00
# if defined(GRAPHICS_API_OPENGL_ES2)
2020-03-27 18:31:36 +01:00
if ( RLGL . ExtSupported . vao ) TRACELOG ( LOG_INFO , " GL: VAO extension detected, VAO functions initialized successfully " ) ;
else TRACELOG ( LOG_WARNING , " GL: VAO extension not found, VAO usage not supported " ) ;
2018-07-16 17:53:47 +02:00
2020-03-27 18:31:36 +01:00
if ( RLGL . ExtSupported . texNPOT ) TRACELOG ( LOG_INFO , " GL: NPOT textures extension detected, full NPOT textures supported " ) ;
else TRACELOG ( LOG_WARNING , " GL: NPOT textures extension not found, limited NPOT support (no-mipmaps, no-repeat) " ) ;
2018-07-16 17:53:47 +02:00
# endif
2020-03-27 18:31:36 +01:00
if ( RLGL . ExtSupported . texCompDXT ) TRACELOG ( LOG_INFO , " GL: DXT compressed textures supported " ) ;
if ( RLGL . ExtSupported . texCompETC1 ) TRACELOG ( LOG_INFO , " GL: ETC1 compressed textures supported " ) ;
if ( RLGL . ExtSupported . texCompETC2 ) TRACELOG ( LOG_INFO , " GL: ETC2/EAC compressed textures supported " ) ;
if ( RLGL . ExtSupported . texCompPVRT ) TRACELOG ( LOG_INFO , " GL: PVRT compressed textures supported " ) ;
if ( RLGL . ExtSupported . texCompASTC ) TRACELOG ( LOG_INFO , " GL: ASTC compressed textures supported " ) ;
2018-07-16 17:53:47 +02:00
2020-03-27 18:31:36 +01:00
if ( RLGL . ExtSupported . texAnisoFilter ) TRACELOG ( LOG_INFO , " GL: Anisotropic textures filtering supported (max: %.0fX) " , RLGL . ExtSupported . maxAnisotropicLevel ) ;
if ( RLGL . ExtSupported . texMirrorClamp ) TRACELOG ( LOG_INFO , " GL: Mirror clamp wrap texture mode supported " ) ;
2018-07-16 17:53:47 +02:00
2020-03-27 18:31:36 +01:00
if ( RLGL . ExtSupported . debugMarker ) TRACELOG ( LOG_INFO , " GL: Debug Marker supported " ) ;
2018-07-16 17:53:47 +02:00
// Initialize buffers, default shaders and default textures
//----------------------------------------------------------
// Init default white texture
unsigned char pixels [ 4 ] = { 255 , 255 , 255 , 255 } ; // 1 pixel RGBA (4 bytes)
2021-03-14 11:05:51 +01:00
RLGL . State . defaultTextureId = rlLoadTexture ( pixels , 1 , 1 , PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 , 1 ) ;
2018-07-16 17:53:47 +02:00
2020-03-27 18:31:36 +01:00
if ( RLGL . State . defaultTextureId ! = 0 ) TRACELOG ( LOG_INFO , " TEXTURE: [ID %i] Default texture loaded successfully " , RLGL . State . defaultTextureId ) ;
else TRACELOG ( LOG_WARNING , " TEXTURE: Failed to load default texture " ) ;
2018-07-16 17:53:47 +02:00
// Init default Shader (customized for GL 3.3 and ES2)
2020-02-03 18:31:30 +01:00
RLGL . State . defaultShader = LoadShaderDefault ( ) ;
RLGL . State . currentShader = RLGL . State . defaultShader ;
2018-07-16 17:53:47 +02:00
2018-12-11 18:54:48 +01:00
// Init default vertex arrays buffers
2020-05-01 17:34:43 +02:00
RLGL . defaultBatch = LoadRenderBatch ( DEFAULT_BATCH_BUFFERS , DEFAULT_BATCH_BUFFER_ELEMENTS ) ;
RLGL . currentBatch = & RLGL . defaultBatch ;
2018-07-16 17:53:47 +02:00
2020-05-01 17:34:43 +02:00
// Init stack matrices (emulating OpenGL 1.1)
2020-02-03 18:31:30 +01:00
for ( int i = 0 ; i < MAX_MATRIX_STACK_SIZE ; i + + ) RLGL . State . stack [ i ] = MatrixIdentity ( ) ;
2018-07-16 17:53:47 +02:00
2020-05-01 17:34:43 +02:00
// Init internal matrices
RLGL . State . transform = MatrixIdentity ( ) ;
2020-02-03 18:31:30 +01:00
RLGL . State . projection = MatrixIdentity ( ) ;
RLGL . State . modelview = MatrixIdentity ( ) ;
RLGL . State . currentMatrix = & RLGL . State . modelview ;
2020-04-06 19:58:28 +02:00
2019-04-28 16:45:23 +02:00
# endif // GRAPHICS_API_OPENGL_33 || GRAPHICS_API_OPENGL_ES2
2018-07-16 17:53:47 +02:00
// Initialize OpenGL default states
//----------------------------------------------------------
// Init state: Depth test
glDepthFunc ( GL_LEQUAL ) ; // Type of depth testing to apply
glDisable ( GL_DEPTH_TEST ) ; // Disable depth testing for 2D (only used for 3D)
// Init state: Blending mode
glBlendFunc ( GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA ) ; // Color blending function (how colors are mixed)
glEnable ( GL_BLEND ) ; // Enable color blending (required to work with transparencies)
// Init state: Culling
// NOTE: All shapes/models triangles are drawn CCW
glCullFace ( GL_BACK ) ; // Cull the back face (default)
glFrontFace ( GL_CCW ) ; // Front face are defined counter clockwise (default)
glEnable ( GL_CULL_FACE ) ; // Enable backface culling
2020-11-03 23:47:33 +01:00
2020-09-18 11:37:57 +02:00
// Init state: Cubemap seamless
# if defined(GRAPHICS_API_OPENGL_33)
glEnable ( GL_TEXTURE_CUBE_MAP_SEAMLESS ) ; // Seamless cubemaps (not supported on OpenGL ES 2.0)
# endif
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_11)
// Init state: Color hints (deprecated in OpenGL 3.0+)
glHint ( GL_PERSPECTIVE_CORRECTION_HINT , GL_NICEST ) ; // Improve quality of color and texture coordinate interpolation
glShadeModel ( GL_SMOOTH ) ; // Smooth shading between vertex (vertex colors interpolation)
# endif
2020-09-15 11:30:20 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2018-07-16 17:53:47 +02:00
// Store screen size into global variables
2020-02-03 18:31:30 +01:00
RLGL . State . framebufferWidth = width ;
RLGL . State . framebufferHeight = height ;
// Init texture and rectangle used on basic shapes drawing
RLGL . State . shapesTexture = GetTextureDefault ( ) ;
RLGL . State . shapesTextureRec = ( Rectangle ) { 0.0f , 0.0f , 1.0f , 1.0f } ;
2018-07-16 17:53:47 +02:00
2020-03-27 18:45:37 +01:00
TRACELOG ( LOG_INFO , " RLGL: Default state initialized successfully " ) ;
2020-09-15 11:30:20 +02:00
# endif
2020-11-03 23:47:33 +01:00
2020-09-15 11:30:20 +02:00
// Init state: Color/Depth buffers clear
glClearColor ( 0.0f , 0.0f , 0.0f , 1.0f ) ; // Set clear color (black)
glClearDepth ( 1.0f ) ; // Set clear depth value (default)
glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ) ; // Clear color and depth buffers (depth buffer required for 3D)
2018-07-16 17:53:47 +02:00
}
// Vertex Buffer Object deinitialization (memory free)
void rlglClose ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-05-01 17:34:43 +02:00
UnloadRenderBatch ( RLGL . defaultBatch ) ;
UnloadShaderDefault ( ) ; // Unload default shader
2020-02-03 18:31:30 +01:00
glDeleteTextures ( 1 , & RLGL . State . defaultTextureId ) ; // Unload default texture
2018-07-16 17:53:47 +02:00
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_INFO , " TEXTURE: [ID %i] Unloaded default texture data from VRAM (GPU) " , RLGL . State . defaultTextureId ) ;
2018-07-16 17:53:47 +02:00
# endif
}
2018-12-11 18:54:48 +01:00
// Update and draw internal buffers
2018-07-16 17:53:47 +02:00
void rlglDraw ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-05-01 17:34:43 +02:00
DrawRenderBatch ( RLGL . currentBatch ) ; // NOTE: Stereo rendering is checked inside
2018-07-16 17:53:47 +02:00
# endif
}
2020-07-30 20:50:20 +10:00
// Check and log OpenGL error codes
void rlCheckErrors ( ) {
# if defined(GRAPHICS_API_OPENGL_21) || defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
int check = 1 ;
while ( check ) {
const GLenum err = glGetError ( ) ;
switch ( err ) {
case GL_NO_ERROR :
check = 0 ;
break ;
case 0x0500 : // GL_INVALID_ENUM:
TRACELOG ( LOG_WARNING , " GL: Error detected: GL_INVALID_ENUM " ) ;
break ;
case 0x0501 : //GL_INVALID_VALUE:
TRACELOG ( LOG_WARNING , " GL: Error detected: GL_INVALID_VALUE " ) ;
break ;
case 0x0502 : //GL_INVALID_OPERATION:
TRACELOG ( LOG_WARNING , " GL: Error detected: GL_INVALID_OPERATION " ) ;
break ;
case 0x0503 : // GL_STACK_OVERFLOW:
TRACELOG ( LOG_WARNING , " GL: Error detected: GL_STACK_OVERFLOW " ) ;
break ;
case 0x0504 : // GL_STACK_UNDERFLOW:
TRACELOG ( LOG_WARNING , " GL: Error detected: GL_STACK_UNDERFLOW " ) ;
break ;
case 0x0505 : // GL_OUT_OF_MEMORY:
TRACELOG ( LOG_WARNING , " GL: Error detected: GL_OUT_OF_MEMORY " ) ;
break ;
case 0x0506 : // GL_INVALID_FRAMEBUFFER_OPERATION:
TRACELOG ( LOG_WARNING , " GL: Error detected: GL_INVALID_FRAMEBUFFER_OPERATION " ) ;
break ;
default :
TRACELOG ( LOG_WARNING , " GL: Error detected: unknown error code %x " , err ) ;
break ;
}
}
# endif
}
2018-07-16 17:53:47 +02:00
// Returns current OpenGL version
int rlGetVersion ( void )
{
# if defined(GRAPHICS_API_OPENGL_11)
return OPENGL_11 ;
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_21)
2018-07-16 17:53:47 +02:00
# if defined(__APPLE__)
2020-05-01 17:34:43 +02:00
return OPENGL_33 ; // NOTE: Force OpenGL 3.3 on OSX
2018-07-16 17:53:47 +02:00
# else
return OPENGL_21 ;
# endif
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33)
2018-07-16 17:53:47 +02:00
return OPENGL_33 ;
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2018-07-16 17:53:47 +02:00
return OPENGL_ES_20 ;
# endif
}
// Check internal buffer overflow for a given number of vertex
2018-12-24 14:09:51 +01:00
bool rlCheckBufferLimit ( int vCount )
2018-07-16 17:53:47 +02:00
{
bool overflow = false ;
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-05-01 17:34:43 +02:00
if ( ( RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . vCounter + vCount ) > = ( RLGL . currentBatch - > vertexBuffer [ RLGL . currentBatch - > currentBuffer ] . elementsCount * 4 ) ) overflow = true ;
2018-07-16 17:53:47 +02:00
# endif
return overflow ;
}
// Set debug marker
void rlSetDebugMarker ( const char * text )
{
# if defined(GRAPHICS_API_OPENGL_33)
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . debugMarker ) glInsertEventMarkerEXT ( 0 , text ) ;
2018-07-16 17:53:47 +02:00
# endif
}
2020-09-01 21:02:19 +02:00
// Set blending mode factor and equation
void rlSetBlendMode ( int glSrcFactor , int glDstFactor , int glEquation )
{
2020-09-15 11:30:20 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-09-01 21:02:19 +02:00
RLGL . State . glBlendSrcFactor = glSrcFactor ;
RLGL . State . glBlendDstFactor = glDstFactor ;
RLGL . State . glBlendEquation = glEquation ;
2020-09-15 11:30:20 +02:00
# endif
2020-09-01 21:02:19 +02:00
}
2018-07-16 17:53:47 +02:00
// Load OpenGL extensions
// NOTE: External loader function could be passed as a pointer
void rlLoadExtensions ( void * loader )
{
# if defined(GRAPHICS_API_OPENGL_33)
// NOTE: glad is generated and contains only required OpenGL 3.3 Core extensions (and lower versions)
# if !defined(__APPLE__)
2020-02-03 19:13:24 +01:00
if ( ! gladLoadGLLoader ( ( GLADloadproc ) loader ) ) TRACELOG ( LOG_WARNING , " GLAD: Cannot load OpenGL extensions " ) ;
else TRACELOG ( LOG_INFO , " GLAD: OpenGL extensions loaded successfully " ) ;
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_21)
2020-03-27 18:31:36 +01:00
if ( GLAD_GL_VERSION_2_1 ) TRACELOG ( LOG_INFO , " GL: OpenGL 2.1 profile supported " ) ;
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33)
2020-03-27 18:31:36 +01:00
if ( GLAD_GL_VERSION_3_3 ) TRACELOG ( LOG_INFO , " GL: OpenGL 3.3 Core profile supported " ) ;
else TRACELOG ( LOG_ERROR , " GL: OpenGL 3.3 Core profile not supported " ) ;
2018-07-16 17:53:47 +02:00
# endif
# endif
// With GLAD, we can check if an extension is supported using the GLAD_GL_xxx booleans
//if (GLAD_GL_ARB_vertex_array_object) // Use GL_ARB_vertex_array_object
# endif
}
// Convert image data to OpenGL texture (returns OpenGL valid Id)
unsigned int rlLoadTexture ( void * data , int width , int height , int format , int mipmapCount )
{
glBindTexture ( GL_TEXTURE_2D , 0 ) ; // Free any old binding
2019-02-04 13:27:36 +01:00
unsigned int id = 0 ;
2018-07-16 17:53:47 +02:00
// Check texture format support by OpenGL 1.1 (compressed textures not supported)
# if defined(GRAPHICS_API_OPENGL_11)
2021-03-14 11:05:51 +01:00
if ( format > = PIXELFORMAT_COMPRESSED_DXT1_RGB )
2018-07-16 17:53:47 +02:00
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " GL: OpenGL 1.1 does not support GPU compressed texture formats " ) ;
2018-07-16 17:53:47 +02:00
return id ;
}
2018-12-14 10:00:44 +01:00
# else
2021-03-14 11:05:51 +01:00
if ( ( ! RLGL . ExtSupported . texCompDXT ) & & ( ( format = = PIXELFORMAT_COMPRESSED_DXT1_RGB ) | | ( format = = PIXELFORMAT_COMPRESSED_DXT1_RGBA ) | |
( format = = PIXELFORMAT_COMPRESSED_DXT3_RGBA ) | | ( format = = PIXELFORMAT_COMPRESSED_DXT5_RGBA ) ) )
2018-07-16 17:53:47 +02:00
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " GL: DXT compressed texture format not supported " ) ;
2018-07-16 17:53:47 +02:00
return id ;
}
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2021-03-14 11:05:51 +01:00
if ( ( ! RLGL . ExtSupported . texCompETC1 ) & & ( format = = PIXELFORMAT_COMPRESSED_ETC1_RGB ) )
2018-07-16 17:53:47 +02:00
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " GL: ETC1 compressed texture format not supported " ) ;
2018-07-16 17:53:47 +02:00
return id ;
}
2021-03-14 11:05:51 +01:00
if ( ( ! RLGL . ExtSupported . texCompETC2 ) & & ( ( format = = PIXELFORMAT_COMPRESSED_ETC2_RGB ) | | ( format = = PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA ) ) )
2018-07-16 17:53:47 +02:00
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " GL: ETC2 compressed texture format not supported " ) ;
2018-07-16 17:53:47 +02:00
return id ;
}
2021-03-14 11:05:51 +01:00
if ( ( ! RLGL . ExtSupported . texCompPVRT ) & & ( ( format = = PIXELFORMAT_COMPRESSED_PVRT_RGB ) | | ( format = = PIXELFORMAT_COMPRESSED_PVRT_RGBA ) ) )
2018-07-16 17:53:47 +02:00
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " GL: PVRT compressed texture format not supported " ) ;
2018-07-16 17:53:47 +02:00
return id ;
}
2021-03-14 11:05:51 +01:00
if ( ( ! RLGL . ExtSupported . texCompASTC ) & & ( ( format = = PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA ) | | ( format = = PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA ) ) )
2018-07-16 17:53:47 +02:00
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " GL: ASTC compressed texture format not supported " ) ;
2018-07-16 17:53:47 +02:00
return id ;
}
# endif
2019-04-28 16:45:23 +02:00
# endif // GRAPHICS_API_OPENGL_11
2018-07-16 17:53:47 +02:00
glPixelStorei ( GL_UNPACK_ALIGNMENT , 1 ) ;
2019-04-28 16:45:23 +02:00
glGenTextures ( 1 , & id ) ; // Generate texture id
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
//glActiveTexture(GL_TEXTURE0); // If not defined, using GL_TEXTURE0 by default (shader texture)
# endif
glBindTexture ( GL_TEXTURE_2D , id ) ;
int mipWidth = width ;
int mipHeight = height ;
int mipOffset = 0 ; // Mipmap data offset
// Load the different mipmap levels
for ( int i = 0 ; i < mipmapCount ; i + + )
{
unsigned int mipSize = GetPixelDataSize ( mipWidth , mipHeight , format ) ;
2018-10-01 15:30:48 +02:00
unsigned int glInternalFormat , glFormat , glType ;
rlGetGlTextureFormats ( format , & glInternalFormat , & glFormat , & glType ) ;
2018-07-16 17:53:47 +02:00
2020-03-27 18:31:36 +01:00
TRACELOGD ( " TEXTURE: Load mipmap level %i (%i x %i), size: %i, offset: %i " , i , mipWidth , mipHeight , mipSize , mipOffset ) ;
2018-07-16 17:53:47 +02:00
if ( glInternalFormat ! = - 1 )
{
2021-03-14 11:05:51 +01:00
if ( format < PIXELFORMAT_COMPRESSED_DXT1_RGB ) glTexImage2D ( GL_TEXTURE_2D , i , glInternalFormat , mipWidth , mipHeight , 0 , glFormat , glType , ( unsigned char * ) data + mipOffset ) ;
2018-07-16 17:53:47 +02:00
# if !defined(GRAPHICS_API_OPENGL_11)
else glCompressedTexImage2D ( GL_TEXTURE_2D , i , glInternalFormat , mipWidth , mipHeight , 0 , mipSize , ( unsigned char * ) data + mipOffset ) ;
# endif
# if defined(GRAPHICS_API_OPENGL_33)
2021-03-14 11:05:51 +01:00
if ( format = = PIXELFORMAT_UNCOMPRESSED_GRAYSCALE )
2018-07-16 17:53:47 +02:00
{
GLint swizzleMask [ ] = { GL_RED , GL_RED , GL_RED , GL_ONE } ;
glTexParameteriv ( GL_TEXTURE_2D , GL_TEXTURE_SWIZZLE_RGBA , swizzleMask ) ;
}
2021-03-14 11:05:51 +01:00
else if ( format = = PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA )
2018-07-16 17:53:47 +02:00
{
# if defined(GRAPHICS_API_OPENGL_21)
GLint swizzleMask [ ] = { GL_RED , GL_RED , GL_RED , GL_ALPHA } ;
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33)
2018-07-16 17:53:47 +02:00
GLint swizzleMask [ ] = { GL_RED , GL_RED , GL_RED , GL_GREEN } ;
# endif
glTexParameteriv ( GL_TEXTURE_2D , GL_TEXTURE_SWIZZLE_RGBA , swizzleMask ) ;
}
# endif
}
mipWidth / = 2 ;
mipHeight / = 2 ;
mipOffset + = mipSize ;
// Security check for NPOT textures
if ( mipWidth < 1 ) mipWidth = 1 ;
if ( mipHeight < 1 ) mipHeight = 1 ;
}
// Texture parameters configuration
// NOTE: glTexParameteri does NOT affect texture uploading, just the way it's used
# if defined(GRAPHICS_API_OPENGL_ES2)
// NOTE: OpenGL ES 2.0 with no GL_OES_texture_npot support (i.e. WebGL) has limited NPOT support, so CLAMP_TO_EDGE must be used
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . texNPOT )
2018-07-16 17:53:47 +02:00
{
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_S , GL_REPEAT ) ; // Set texture to repeat on x-axis
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_T , GL_REPEAT ) ; // Set texture to repeat on y-axis
}
else
{
// NOTE: If using negative texture coordinates (LoadOBJ()), it does not work!
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_S , GL_CLAMP_TO_EDGE ) ; // Set texture to clamp on x-axis
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_T , GL_CLAMP_TO_EDGE ) ; // Set texture to clamp on y-axis
}
# else
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_S , GL_REPEAT ) ; // Set texture to repeat on x-axis
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_T , GL_REPEAT ) ; // Set texture to repeat on y-axis
# endif
// Magnification and minification filters
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , GL_NEAREST ) ; // Alternative: GL_LINEAR
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_NEAREST ) ; // Alternative: GL_LINEAR
# if defined(GRAPHICS_API_OPENGL_33)
if ( mipmapCount > 1 )
{
// Activate Trilinear filtering if mipmaps are available
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , GL_LINEAR ) ;
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_LINEAR_MIPMAP_LINEAR ) ;
}
# endif
// At this point we have the texture loaded in GPU and texture parameters configured
// NOTE: If mipmaps were not in data, they are not generated automatically
// Unbind current texture
glBindTexture ( GL_TEXTURE_2D , 0 ) ;
2020-03-27 18:31:36 +01:00
if ( id > 0 ) TRACELOG ( LOG_INFO , " TEXTURE: [ID %i] Texture created successfully (%ix%i - %i mipmaps) " , id , width , height , mipmapCount ) ;
else TRACELOG ( LOG_WARNING , " TEXTURE: Failed to load texture " ) ;
2018-07-16 17:53:47 +02:00
return id ;
}
2019-02-04 16:28:17 +01:00
// Load depth texture/renderbuffer (to be attached to fbo)
// WARNING: OpenGL ES 2.0 requires GL_OES_depth_texture/WEBGL_depth_texture extensions
2020-09-18 02:11:49 +02:00
unsigned int rlLoadTextureDepth ( int width , int height , bool useRenderBuffer )
2019-02-04 16:28:17 +01:00
{
unsigned int id = 0 ;
2020-09-18 20:47:39 +02:00
2019-04-01 18:22:56 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-09-18 20:47:39 +02:00
// In case depth textures not supported, we force renderbuffer usage
if ( ! RLGL . ExtSupported . texDepth ) useRenderBuffer = true ;
2019-02-21 18:45:19 +01:00
2020-09-18 02:11:49 +02:00
// NOTE: We let the implementation to choose the best bit-depth
2020-09-21 13:18:53 +02:00
// Possible formats: GL_DEPTH_COMPONENT16, GL_DEPTH_COMPONENT24, GL_DEPTH_COMPONENT32 and GL_DEPTH_COMPONENT32F
2020-09-18 02:11:49 +02:00
unsigned int glInternalFormat = GL_DEPTH_COMPONENT ;
2020-09-18 20:47:39 +02:00
# if defined(GRAPHICS_API_OPENGL_ES2)
2020-09-18 02:11:49 +02:00
if ( RLGL . ExtSupported . maxDepthBits = = 32 ) glInternalFormat = GL_DEPTH_COMPONENT32_OES ;
else if ( RLGL . ExtSupported . maxDepthBits = = 24 ) glInternalFormat = GL_DEPTH_COMPONENT24_OES ;
2020-09-18 20:47:39 +02:00
else glInternalFormat = GL_DEPTH_COMPONENT16 ;
2019-02-04 16:28:17 +01:00
# endif
2020-09-18 20:47:39 +02:00
2020-02-03 18:31:30 +01:00
if ( ! useRenderBuffer & & RLGL . ExtSupported . texDepth )
2019-02-04 16:28:17 +01:00
{
glGenTextures ( 1 , & id ) ;
glBindTexture ( GL_TEXTURE_2D , id ) ;
glTexImage2D ( GL_TEXTURE_2D , 0 , glInternalFormat , width , height , 0 , GL_DEPTH_COMPONENT , GL_UNSIGNED_INT , NULL ) ;
2019-02-21 18:45:19 +01:00
2019-02-04 16:28:17 +01:00
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_NEAREST ) ;
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , GL_NEAREST ) ;
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_S , GL_CLAMP_TO_EDGE ) ;
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_T , GL_CLAMP_TO_EDGE ) ;
glBindTexture ( GL_TEXTURE_2D , 0 ) ;
2020-11-03 23:47:33 +01:00
2020-09-21 13:18:53 +02:00
TRACELOG ( LOG_INFO , " TEXTURE: Depth texture loaded successfully " ) ;
2019-02-04 16:28:17 +01:00
}
else
{
// Create the renderbuffer that will serve as the depth attachment for the framebuffer
// NOTE: A renderbuffer is simpler than a texture and could offer better performance on embedded devices
glGenRenderbuffers ( 1 , & id ) ;
glBindRenderbuffer ( GL_RENDERBUFFER , id ) ;
glRenderbufferStorage ( GL_RENDERBUFFER , glInternalFormat , width , height ) ;
2019-02-21 18:45:19 +01:00
2019-02-04 16:28:17 +01:00
glBindRenderbuffer ( GL_RENDERBUFFER , 0 ) ;
2020-11-03 23:47:33 +01:00
2020-09-21 13:18:53 +02:00
TRACELOG ( LOG_INFO , " TEXTURE: [ID %i] Depth renderbuffer loaded successfully (%i bits) " , id , ( RLGL . ExtSupported . maxDepthBits > = 24 ) ? RLGL . ExtSupported . maxDepthBits : 16 ) ;
2019-02-04 16:28:17 +01:00
}
2019-04-01 18:22:56 +02:00
# endif
2019-02-21 18:45:19 +01:00
2019-02-04 16:28:17 +01:00
return id ;
}
2019-02-06 14:21:44 +01:00
// Load texture cubemap
2020-09-18 02:11:49 +02:00
// NOTE: Cubemap data is expected to be 6 images in a single data array (one after the other),
2019-02-06 14:21:44 +01:00
// expected the following convention: +X, -X, +Y, -Y, +Z, -Z
unsigned int rlLoadTextureCubemap ( void * data , int size , int format )
{
2020-09-21 13:18:53 +02:00
unsigned int id = 0 ;
2019-04-04 13:50:52 +02:00
2019-04-01 18:22:56 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-01-28 18:35:14 +01:00
unsigned int dataSize = GetPixelDataSize ( size , size , format ) ;
2020-02-03 18:31:30 +01:00
2020-09-21 13:18:53 +02:00
glGenTextures ( 1 , & id ) ;
glBindTexture ( GL_TEXTURE_CUBE_MAP , id ) ;
2019-02-21 18:45:19 +01:00
2019-02-06 14:21:44 +01:00
unsigned int glInternalFormat , glFormat , glType ;
rlGetGlTextureFormats ( format , & glInternalFormat , & glFormat , & glType ) ;
2019-04-11 16:11:54 +02:00
if ( glInternalFormat ! = - 1 )
2019-02-06 14:21:44 +01:00
{
2019-04-11 16:11:54 +02:00
// Load cubemap faces
for ( unsigned int i = 0 ; i < 6 ; i + + )
2019-02-06 14:21:44 +01:00
{
2020-09-18 02:11:49 +02:00
if ( data = = NULL )
{
2021-03-14 11:05:51 +01:00
if ( format < PIXELFORMAT_COMPRESSED_DXT1_RGB )
2020-09-18 02:11:49 +02:00
{
2021-03-14 11:05:51 +01:00
if ( format = = PIXELFORMAT_UNCOMPRESSED_R32G32B32 )
2020-09-18 02:11:49 +02:00
{
2020-09-18 11:37:57 +02:00
// Instead of using a sized internal texture format (GL_RGB16F, GL_RGB32F), we let the driver to choose the better format for us (GL_RGB)
2020-09-18 02:11:49 +02:00
if ( RLGL . ExtSupported . texFloat32 ) glTexImage2D ( GL_TEXTURE_CUBE_MAP_POSITIVE_X + i , 0 , GL_RGB , size , size , 0 , GL_RGB , GL_FLOAT , NULL ) ;
2020-09-21 13:18:53 +02:00
else TRACELOG ( LOG_WARNING , " TEXTURES: Cubemap requested format not supported " ) ;
2020-09-18 02:11:49 +02:00
}
2021-03-14 11:05:51 +01:00
else if ( ( format = = PIXELFORMAT_UNCOMPRESSED_R32 ) | | ( format = = PIXELFORMAT_UNCOMPRESSED_R32G32B32A32 ) ) TRACELOG ( LOG_WARNING , " TEXTURES: Cubemap requested format not supported " ) ;
2020-09-18 02:11:49 +02:00
else glTexImage2D ( GL_TEXTURE_CUBE_MAP_POSITIVE_X + i , 0 , glInternalFormat , size , size , 0 , glFormat , glType , NULL ) ;
}
else TRACELOG ( LOG_WARNING , " TEXTURES: Empty cubemap creation does not support compressed format " ) ;
}
else
{
2021-03-14 11:05:51 +01:00
if ( format < PIXELFORMAT_COMPRESSED_DXT1_RGB ) glTexImage2D ( GL_TEXTURE_CUBE_MAP_POSITIVE_X + i , 0 , glInternalFormat , size , size , 0 , glFormat , glType , ( unsigned char * ) data + i * dataSize ) ;
2020-09-18 02:11:49 +02:00
else glCompressedTexImage2D ( GL_TEXTURE_CUBE_MAP_POSITIVE_X + i , 0 , glInternalFormat , size , size , 0 , dataSize , ( unsigned char * ) data + i * dataSize ) ;
}
2020-01-28 18:35:14 +01:00
2019-02-06 14:21:44 +01:00
# if defined(GRAPHICS_API_OPENGL_33)
2021-03-14 11:05:51 +01:00
if ( format = = PIXELFORMAT_UNCOMPRESSED_GRAYSCALE )
2019-02-06 14:21:44 +01:00
{
GLint swizzleMask [ ] = { GL_RED , GL_RED , GL_RED , GL_ONE } ;
glTexParameteriv ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_SWIZZLE_RGBA , swizzleMask ) ;
}
2021-03-14 11:05:51 +01:00
else if ( format = = PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA )
2019-02-06 14:21:44 +01:00
{
# if defined(GRAPHICS_API_OPENGL_21)
GLint swizzleMask [ ] = { GL_RED , GL_RED , GL_RED , GL_ALPHA } ;
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33)
2019-02-06 14:21:44 +01:00
GLint swizzleMask [ ] = { GL_RED , GL_RED , GL_RED , GL_GREEN } ;
# endif
glTexParameteriv ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_SWIZZLE_RGBA , swizzleMask ) ;
}
# endif
}
}
2019-02-21 18:45:19 +01:00
2019-02-06 14:21:44 +01:00
// Set cubemap texture sampling parameters
glTexParameteri ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_MIN_FILTER , GL_LINEAR ) ;
glTexParameteri ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_MAG_FILTER , GL_LINEAR ) ;
glTexParameteri ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_WRAP_S , GL_CLAMP_TO_EDGE ) ;
glTexParameteri ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_WRAP_T , GL_CLAMP_TO_EDGE ) ;
# if defined(GRAPHICS_API_OPENGL_33)
glTexParameteri ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_WRAP_R , GL_CLAMP_TO_EDGE ) ; // Flag not supported on OpenGL ES 2.0
# endif
glBindTexture ( GL_TEXTURE_CUBE_MAP , 0 ) ;
2019-04-01 18:22:56 +02:00
# endif
2019-02-06 14:21:44 +01:00
2020-09-21 13:18:53 +02:00
if ( id > 0 ) TRACELOG ( LOG_INFO , " TEXTURE: [ID %i] Cubemap texture created successfully (%ix%i) " , id , size , size ) ;
else TRACELOG ( LOG_WARNING , " TEXTURE: Failed to load cubemap texture " ) ;
return id ;
2019-02-06 14:21:44 +01:00
}
2018-07-16 17:53:47 +02:00
// Update already loaded texture in GPU with new data
2019-02-06 14:21:44 +01:00
// NOTE: We don't know safely if internal texture format is the expected one...
2020-06-25 16:26:59 +02:00
void rlUpdateTexture ( unsigned int id , int offsetX , int offsetY , int width , int height , int format , const void * data )
2018-07-16 17:53:47 +02:00
{
glBindTexture ( GL_TEXTURE_2D , id ) ;
2018-10-01 15:30:48 +02:00
unsigned int glInternalFormat , glFormat , glType ;
rlGetGlTextureFormats ( format , & glInternalFormat , & glFormat , & glType ) ;
2018-07-16 17:53:47 +02:00
2021-03-14 11:05:51 +01:00
if ( ( glInternalFormat ! = - 1 ) & & ( format < PIXELFORMAT_COMPRESSED_DXT1_RGB ) )
2018-07-16 17:53:47 +02:00
{
2020-11-16 15:18:05 +01:00
glTexSubImage2D ( GL_TEXTURE_2D , 0 , offsetX , offsetY , width , height , glFormat , glType , ( unsigned char * ) data ) ;
2018-07-16 17:53:47 +02:00
}
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_WARNING , " TEXTURE: [ID %i] Failed to update for current texture format (%i) " , id, format) ;
2018-07-16 17:53:47 +02:00
}
2018-10-01 15:30:48 +02:00
// Get OpenGL internal formats and data type from raylib PixelFormat
void rlGetGlTextureFormats ( int format , unsigned int * glInternalFormat , unsigned int * glFormat , unsigned int * glType )
{
* glInternalFormat = - 1 ;
* glFormat = - 1 ;
* glType = - 1 ;
switch ( format )
{
# if defined(GRAPHICS_API_OPENGL_11) || defined(GRAPHICS_API_OPENGL_21) || defined(GRAPHICS_API_OPENGL_ES2)
// NOTE: on OpenGL ES 2.0 (WebGL), internalFormat must match format and options allowed are: GL_LUMINANCE, GL_RGB, GL_RGBA
2021-03-14 11:05:51 +01:00
case PIXELFORMAT_UNCOMPRESSED_GRAYSCALE : * glInternalFormat = GL_LUMINANCE ; * glFormat = GL_LUMINANCE ; * glType = GL_UNSIGNED_BYTE ; break ;
case PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA : * glInternalFormat = GL_LUMINANCE_ALPHA ; * glFormat = GL_LUMINANCE_ALPHA ; * glType = GL_UNSIGNED_BYTE ; break ;
case PIXELFORMAT_UNCOMPRESSED_R5G6B5 : * glInternalFormat = GL_RGB ; * glFormat = GL_RGB ; * glType = GL_UNSIGNED_SHORT_5_6_5 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R8G8B8 : * glInternalFormat = GL_RGB ; * glFormat = GL_RGB ; * glType = GL_UNSIGNED_BYTE ; break ;
case PIXELFORMAT_UNCOMPRESSED_R5G5B5A1 : * glInternalFormat = GL_RGBA ; * glFormat = GL_RGBA ; * glType = GL_UNSIGNED_SHORT_5_5_5_1 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R4G4B4A4 : * glInternalFormat = GL_RGBA ; * glFormat = GL_RGBA ; * glType = GL_UNSIGNED_SHORT_4_4_4_4 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 : * glInternalFormat = GL_RGBA ; * glFormat = GL_RGBA ; * glType = GL_UNSIGNED_BYTE ; break ;
2018-10-01 15:30:48 +02:00
# if !defined(GRAPHICS_API_OPENGL_11)
2021-03-14 11:05:51 +01:00
case PIXELFORMAT_UNCOMPRESSED_R32 : if ( RLGL . ExtSupported . texFloat32 ) * glInternalFormat = GL_LUMINANCE ; * glFormat = GL_LUMINANCE ; * glType = GL_FLOAT ; break ; // NOTE: Requires extension OES_texture_float
case PIXELFORMAT_UNCOMPRESSED_R32G32B32 : if ( RLGL . ExtSupported . texFloat32 ) * glInternalFormat = GL_RGB ; * glFormat = GL_RGB ; * glType = GL_FLOAT ; break ; // NOTE: Requires extension OES_texture_float
case PIXELFORMAT_UNCOMPRESSED_R32G32B32A32 : if ( RLGL . ExtSupported . texFloat32 ) * glInternalFormat = GL_RGBA ; * glFormat = GL_RGBA ; * glType = GL_FLOAT ; break ; // NOTE: Requires extension OES_texture_float
2018-10-01 15:30:48 +02:00
# endif
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33)
2021-03-14 11:05:51 +01:00
case PIXELFORMAT_UNCOMPRESSED_GRAYSCALE : * glInternalFormat = GL_R8 ; * glFormat = GL_RED ; * glType = GL_UNSIGNED_BYTE ; break ;
case PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA : * glInternalFormat = GL_RG8 ; * glFormat = GL_RG ; * glType = GL_UNSIGNED_BYTE ; break ;
case PIXELFORMAT_UNCOMPRESSED_R5G6B5 : * glInternalFormat = GL_RGB565 ; * glFormat = GL_RGB ; * glType = GL_UNSIGNED_SHORT_5_6_5 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R8G8B8 : * glInternalFormat = GL_RGB8 ; * glFormat = GL_RGB ; * glType = GL_UNSIGNED_BYTE ; break ;
case PIXELFORMAT_UNCOMPRESSED_R5G5B5A1 : * glInternalFormat = GL_RGB5_A1 ; * glFormat = GL_RGBA ; * glType = GL_UNSIGNED_SHORT_5_5_5_1 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R4G4B4A4 : * glInternalFormat = GL_RGBA4 ; * glFormat = GL_RGBA ; * glType = GL_UNSIGNED_SHORT_4_4_4_4 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 : * glInternalFormat = GL_RGBA8 ; * glFormat = GL_RGBA ; * glType = GL_UNSIGNED_BYTE ; break ;
case PIXELFORMAT_UNCOMPRESSED_R32 : if ( RLGL . ExtSupported . texFloat32 ) * glInternalFormat = GL_R32F ; * glFormat = GL_RED ; * glType = GL_FLOAT ; break ;
case PIXELFORMAT_UNCOMPRESSED_R32G32B32 : if ( RLGL . ExtSupported . texFloat32 ) * glInternalFormat = GL_RGB32F ; * glFormat = GL_RGB ; * glType = GL_FLOAT ; break ;
case PIXELFORMAT_UNCOMPRESSED_R32G32B32A32 : if ( RLGL . ExtSupported . texFloat32 ) * glInternalFormat = GL_RGBA32F ; * glFormat = GL_RGBA ; * glType = GL_FLOAT ; break ;
2018-10-01 15:30:48 +02:00
# endif
2021-03-02 12:45:23 +01:00
# if !defined(GRAPHICS_API_OPENGL_11)
2021-03-14 11:05:51 +01:00
case PIXELFORMAT_COMPRESSED_DXT1_RGB : if ( RLGL . ExtSupported . texCompDXT ) * glInternalFormat = GL_COMPRESSED_RGB_S3TC_DXT1_EXT ; break ;
case PIXELFORMAT_COMPRESSED_DXT1_RGBA : if ( RLGL . ExtSupported . texCompDXT ) * glInternalFormat = GL_COMPRESSED_RGBA_S3TC_DXT1_EXT ; break ;
case PIXELFORMAT_COMPRESSED_DXT3_RGBA : if ( RLGL . ExtSupported . texCompDXT ) * glInternalFormat = GL_COMPRESSED_RGBA_S3TC_DXT3_EXT ; break ;
case PIXELFORMAT_COMPRESSED_DXT5_RGBA : if ( RLGL . ExtSupported . texCompDXT ) * glInternalFormat = GL_COMPRESSED_RGBA_S3TC_DXT5_EXT ; break ;
case PIXELFORMAT_COMPRESSED_ETC1_RGB : if ( RLGL . ExtSupported . texCompETC1 ) * glInternalFormat = GL_ETC1_RGB8_OES ; break ; // NOTE: Requires OpenGL ES 2.0 or OpenGL 4.3
case PIXELFORMAT_COMPRESSED_ETC2_RGB : if ( RLGL . ExtSupported . texCompETC2 ) * glInternalFormat = GL_COMPRESSED_RGB8_ETC2 ; break ; // NOTE: Requires OpenGL ES 3.0 or OpenGL 4.3
case PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA : if ( RLGL . ExtSupported . texCompETC2 ) * glInternalFormat = GL_COMPRESSED_RGBA8_ETC2_EAC ; break ; // NOTE: Requires OpenGL ES 3.0 or OpenGL 4.3
case PIXELFORMAT_COMPRESSED_PVRT_RGB : if ( RLGL . ExtSupported . texCompPVRT ) * glInternalFormat = GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG ; break ; // NOTE: Requires PowerVR GPU
case PIXELFORMAT_COMPRESSED_PVRT_RGBA : if ( RLGL . ExtSupported . texCompPVRT ) * glInternalFormat = GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG ; break ; // NOTE: Requires PowerVR GPU
case PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA : if ( RLGL . ExtSupported . texCompASTC ) * glInternalFormat = GL_COMPRESSED_RGBA_ASTC_4x4_KHR ; break ; // NOTE: Requires OpenGL ES 3.1 or OpenGL 4.3
case PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA : if ( RLGL . ExtSupported . texCompASTC ) * glInternalFormat = GL_COMPRESSED_RGBA_ASTC_8x8_KHR ; break ; // NOTE: Requires OpenGL ES 3.1 or OpenGL 4.3
2021-03-02 12:45:23 +01:00
# endif
2020-03-27 18:31:36 +01:00
default : TRACELOG ( LOG_WARNING , " TEXTURE: Current format not supported (%i) " , format ) ; break ;
2018-10-01 15:30:48 +02:00
}
}
2018-07-16 17:53:47 +02:00
// Unload texture from GPU memory
void rlUnloadTexture ( unsigned int id )
{
2020-09-18 02:11:49 +02:00
glDeleteTextures ( 1 , & id ) ;
2018-07-16 17:53:47 +02:00
}
2020-09-18 02:11:49 +02:00
// Load a framebuffer to be used for rendering
// NOTE: No textures attached
unsigned int rlLoadFramebuffer ( int width , int height )
2019-02-04 13:27:36 +01:00
{
2020-09-18 02:11:49 +02:00
unsigned int fboId = 0 ;
2019-02-21 18:45:19 +01:00
2020-07-17 19:41:38 +02:00
# if (defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)) && defined(SUPPORT_RENDER_TEXTURES_HINT)
2020-09-18 02:11:49 +02:00
glGenFramebuffers ( 1 , & fboId ) ; // Create the framebuffer object
glBindFramebuffer ( GL_FRAMEBUFFER , 0 ) ; // Unbind any framebuffer
2019-02-04 16:28:17 +01:00
# endif
2020-09-18 02:11:49 +02:00
return fboId ;
2019-02-04 16:28:17 +01:00
}
// Attach color buffer texture to an fbo (unloads previous attachment)
// NOTE: Attach type: 0-Color, 1-Depth renderbuffer, 2-Depth texture
2020-09-18 11:37:57 +02:00
void rlFramebufferAttach ( unsigned int fboId , unsigned int texId , int attachType , int texType )
2019-02-04 16:28:17 +01:00
{
2020-07-17 19:41:38 +02:00
# if (defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)) && defined(SUPPORT_RENDER_TEXTURES_HINT)
2020-09-18 02:11:49 +02:00
glBindFramebuffer ( GL_FRAMEBUFFER , fboId ) ;
2019-02-04 16:28:17 +01:00
2020-09-18 02:11:49 +02:00
switch ( attachType )
2019-02-06 14:21:44 +01:00
{
2020-09-18 11:37:57 +02:00
case RL_ATTACHMENT_COLOR_CHANNEL0 :
case RL_ATTACHMENT_COLOR_CHANNEL1 :
2020-11-03 23:47:33 +01:00
case RL_ATTACHMENT_COLOR_CHANNEL2 :
case RL_ATTACHMENT_COLOR_CHANNEL3 :
case RL_ATTACHMENT_COLOR_CHANNEL4 :
case RL_ATTACHMENT_COLOR_CHANNEL5 :
case RL_ATTACHMENT_COLOR_CHANNEL6 :
case RL_ATTACHMENT_COLOR_CHANNEL7 :
2020-09-18 11:37:57 +02:00
{
if ( texType = = RL_ATTACHMENT_TEXTURE2D ) glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 + attachType , GL_TEXTURE_2D , texId , 0 ) ;
else if ( texType = = RL_ATTACHMENT_RENDERBUFFER ) glFramebufferRenderbuffer ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 + attachType , GL_RENDERBUFFER , texId ) ;
else if ( texType > = RL_ATTACHMENT_CUBEMAP_POSITIVE_X ) glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 + attachType , GL_TEXTURE_CUBE_MAP_POSITIVE_X + texType , texId , 0 ) ;
} break ;
case RL_ATTACHMENT_DEPTH :
{
if ( texType = = RL_ATTACHMENT_TEXTURE2D ) glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_DEPTH_ATTACHMENT , GL_TEXTURE_2D , texId , 0 ) ;
else if ( texType = = RL_ATTACHMENT_RENDERBUFFER ) glFramebufferRenderbuffer ( GL_FRAMEBUFFER , GL_DEPTH_ATTACHMENT , GL_RENDERBUFFER , texId ) ;
2020-11-03 23:47:33 +01:00
2020-09-18 11:37:57 +02:00
} break ;
case RL_ATTACHMENT_STENCIL :
{
if ( texType = = RL_ATTACHMENT_TEXTURE2D ) glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_STENCIL_ATTACHMENT , GL_TEXTURE_2D , texId , 0 ) ;
else if ( texType = = RL_ATTACHMENT_RENDERBUFFER ) glFramebufferRenderbuffer ( GL_FRAMEBUFFER , GL_STENCIL_ATTACHMENT , GL_RENDERBUFFER , texId ) ;
2020-11-03 23:47:33 +01:00
2020-09-18 11:37:57 +02:00
} break ;
2020-09-18 02:11:49 +02:00
default : break ;
2019-02-06 14:21:44 +01:00
}
2019-02-21 18:45:19 +01:00
2019-02-04 16:28:17 +01:00
glBindFramebuffer ( GL_FRAMEBUFFER , 0 ) ;
2019-04-01 18:22:56 +02:00
# endif
2019-02-04 16:28:17 +01:00
}
// Verify render texture is complete
2020-09-18 02:11:49 +02:00
bool rlFramebufferComplete ( unsigned int id )
2019-02-04 16:28:17 +01:00
{
2019-04-01 18:22:56 +02:00
bool result = false ;
2019-04-04 13:50:52 +02:00
2020-07-17 19:41:38 +02:00
# if (defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)) && defined(SUPPORT_RENDER_TEXTURES_HINT)
2020-09-18 02:11:49 +02:00
glBindFramebuffer ( GL_FRAMEBUFFER , id ) ;
2019-02-21 18:45:19 +01:00
2018-07-16 17:53:47 +02:00
GLenum status = glCheckFramebufferStatus ( GL_FRAMEBUFFER ) ;
if ( status ! = GL_FRAMEBUFFER_COMPLETE )
{
switch ( status )
{
2020-09-18 02:11:49 +02:00
case GL_FRAMEBUFFER_UNSUPPORTED : TRACELOG ( LOG_WARNING , " FBO: [ID %i] Framebuffer is unsupported " , id ) ; break ;
case GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT : TRACELOG ( LOG_WARNING , " FBO: [ID %i] Framebuffer has incomplete attachment " , id ) ; break ;
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_ES2)
2020-09-18 02:11:49 +02:00
case GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS : TRACELOG ( LOG_WARNING , " FBO: [ID %i] Framebuffer has incomplete dimensions " , id ) ; break ;
2018-07-16 17:53:47 +02:00
# endif
2020-09-18 02:11:49 +02:00
case GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT : TRACELOG ( LOG_WARNING , " FBO: [ID %i] Framebuffer has a missing attachment " , id ) ; break ;
2018-07-16 17:53:47 +02:00
default : break ;
}
}
2019-02-21 18:45:19 +01:00
2018-07-16 17:53:47 +02:00
glBindFramebuffer ( GL_FRAMEBUFFER , 0 ) ;
2019-02-21 18:45:19 +01:00
2019-04-01 18:22:56 +02:00
result = ( status = = GL_FRAMEBUFFER_COMPLETE ) ;
# endif
return result ;
2018-07-16 17:53:47 +02:00
}
// Generate mipmap data for selected texture
void rlGenerateMipmaps ( Texture2D * texture )
{
glBindTexture ( GL_TEXTURE_2D , texture - > id ) ;
// Check if texture is power-of-two (POT)
bool texIsPOT = false ;
if ( ( ( texture - > width > 0 ) & & ( ( texture - > width & ( texture - > width - 1 ) ) = = 0 ) ) & &
( ( texture - > height > 0 ) & & ( ( texture - > height & ( texture - > height - 1 ) ) = = 0 ) ) ) texIsPOT = true ;
# if defined(GRAPHICS_API_OPENGL_11)
2018-12-14 10:00:44 +01:00
if ( texIsPOT )
{
2018-07-16 17:53:47 +02:00
// WARNING: Manual mipmap generation only works for RGBA 32bit textures!
2021-03-14 11:05:51 +01:00
if ( texture - > format = = PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 )
2018-07-16 17:53:47 +02:00
{
// Retrieve texture data from VRAM
2021-02-21 12:09:52 +01:00
void * texData = rlReadTexturePixels ( * texture ) ;
2018-07-16 17:53:47 +02:00
2021-02-21 12:09:52 +01:00
// NOTE: Texture data size is reallocated to fit mipmaps data
2018-07-16 17:53:47 +02:00
// NOTE: CPU mipmap generation only supports RGBA 32bit data
2021-02-26 13:40:43 +01:00
int mipmapCount = GenerateMipmaps ( texData , texture - > width , texture - > height ) ;
2018-07-16 17:53:47 +02:00
int size = texture - > width * texture - > height * 4 ;
int offset = size ;
int mipWidth = texture - > width / 2 ;
int mipHeight = texture - > height / 2 ;
// Load the mipmaps
for ( int level = 1 ; level < mipmapCount ; level + + )
{
2021-02-21 12:09:52 +01:00
glTexImage2D ( GL_TEXTURE_2D , level , GL_RGBA8 , mipWidth , mipHeight , 0 , GL_RGBA , GL_UNSIGNED_BYTE , ( unsigned char * ) texData + offset ) ;
2018-07-16 17:53:47 +02:00
size = mipWidth * mipHeight * 4 ;
offset + = size ;
mipWidth / = 2 ;
mipHeight / = 2 ;
}
texture - > mipmaps = mipmapCount + 1 ;
2021-02-21 12:09:52 +01:00
RL_FREE ( texData ) ; // Once mipmaps have been generated and data has been uploaded to GPU VRAM, we can discard RAM data
2018-07-16 17:53:47 +02:00
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " TEXTURE: [ID %i] Mipmaps generated manually on CPU side, total: %i " , texture - > id , texture - > mipmaps ) ;
2018-07-16 17:53:47 +02:00
}
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_WARNING , " TEXTURE: [ID %i] Failed to generate mipmaps for provided texture format " , texture - > id ) ;
2018-12-14 10:00:44 +01:00
}
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
if ( ( texIsPOT ) | | ( RLGL . ExtSupported . texNPOT ) )
2018-12-14 10:00:44 +01:00
{
2018-07-16 17:53:47 +02:00
//glHint(GL_GENERATE_MIPMAP_HINT, GL_DONT_CARE); // Hint for mipmaps generation algorythm: GL_FASTEST, GL_NICEST, GL_DONT_CARE
glGenerateMipmap ( GL_TEXTURE_2D ) ; // Generate mipmaps automatically
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , GL_LINEAR ) ;
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_LINEAR_MIPMAP_LINEAR ) ; // Activate Trilinear filtering for mipmaps
# define MIN(a,b) (((a)<(b))?(a):(b))
# define MAX(a,b) (((a)>(b))?(a):(b))
texture - > mipmaps = 1 + ( int ) floor ( log ( MAX ( texture - > width , texture - > height ) ) / log ( 2 ) ) ;
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_INFO , " TEXTURE: [ID %i] Mipmaps generated automatically, total: %i " , texture - > id , texture - > mipmaps ) ;
2018-07-16 17:53:47 +02:00
}
2018-12-14 10:00:44 +01:00
# endif
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_WARNING , " TEXTURE: [ID %i] Failed to generate mipmaps " , texture - > id ) ;
2018-07-16 17:53:47 +02:00
glBindTexture ( GL_TEXTURE_2D , 0 ) ;
}
// Upload vertex data into a VAO (if supported) and VBO
void rlLoadMesh ( Mesh * mesh , bool dynamic )
{
2019-02-06 14:21:44 +01:00
if ( mesh - > vaoId > 0 )
{
// Check if mesh has already been loaded in GPU
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " VAO: [ID %i] Trying to re-load an already loaded mesh " , mesh - > vaoId ) ;
2019-02-06 14:21:44 +01:00
return ;
}
2021-02-21 12:09:52 +01:00
mesh - > vboId = ( unsigned int * ) RL_CALLOC ( MAX_MESH_VERTEX_BUFFERS , sizeof ( unsigned int ) ) ;
2019-02-21 18:45:19 +01:00
2018-07-16 17:53:47 +02:00
mesh - > vaoId = 0 ; // Vertex Array Object
mesh - > vboId [ 0 ] = 0 ; // Vertex positions VBO
mesh - > vboId [ 1 ] = 0 ; // Vertex texcoords VBO
mesh - > vboId [ 2 ] = 0 ; // Vertex normals VBO
mesh - > vboId [ 3 ] = 0 ; // Vertex colors VBO
mesh - > vboId [ 4 ] = 0 ; // Vertex tangents VBO
mesh - > vboId [ 5 ] = 0 ; // Vertex texcoords2 VBO
mesh - > vboId [ 6 ] = 0 ; // Vertex indices VBO
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
int drawHint = GL_STATIC_DRAW ;
if ( dynamic ) drawHint = GL_DYNAMIC_DRAW ;
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao )
2018-07-16 17:53:47 +02:00
{
// Initialize Quads VAO (Buffer A)
glGenVertexArrays ( 1 , & mesh - > vaoId ) ;
glBindVertexArray ( mesh - > vaoId ) ;
}
// NOTE: Attributes must be uploaded considering default locations points
// Enable vertex attributes: position (shader-location = 0)
glGenBuffers ( 1 , & mesh - > vboId [ 0 ] ) ;
glBindBuffer ( GL_ARRAY_BUFFER , mesh - > vboId [ 0 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ARRAY_BUFFER , mesh - > vertexCount * 3 * sizeof ( float ) , mesh - > vertices , drawHint ) ;
2018-07-16 17:53:47 +02:00
glVertexAttribPointer ( 0 , 3 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( 0 ) ;
// Enable vertex attributes: texcoords (shader-location = 1)
glGenBuffers ( 1 , & mesh - > vboId [ 1 ] ) ;
glBindBuffer ( GL_ARRAY_BUFFER , mesh - > vboId [ 1 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ARRAY_BUFFER , mesh - > vertexCount * 2 * sizeof ( float ) , mesh - > texcoords , drawHint ) ;
2018-07-16 17:53:47 +02:00
glVertexAttribPointer ( 1 , 2 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( 1 ) ;
// Enable vertex attributes: normals (shader-location = 2)
if ( mesh - > normals ! = NULL )
{
glGenBuffers ( 1 , & mesh - > vboId [ 2 ] ) ;
glBindBuffer ( GL_ARRAY_BUFFER , mesh - > vboId [ 2 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ARRAY_BUFFER , mesh - > vertexCount * 3 * sizeof ( float ) , mesh - > normals , drawHint ) ;
2018-07-16 17:53:47 +02:00
glVertexAttribPointer ( 2 , 3 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( 2 ) ;
}
else
{
// Default color vertex attribute set to WHITE
glVertexAttrib3f ( 2 , 1.0f , 1.0f , 1.0f ) ;
glDisableVertexAttribArray ( 2 ) ;
}
// Default color vertex attribute (shader-location = 3)
if ( mesh - > colors ! = NULL )
{
glGenBuffers ( 1 , & mesh - > vboId [ 3 ] ) ;
glBindBuffer ( GL_ARRAY_BUFFER , mesh - > vboId [ 3 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ARRAY_BUFFER , mesh - > vertexCount * 4 * sizeof ( unsigned char ) , mesh - > colors , drawHint ) ;
2018-07-16 17:53:47 +02:00
glVertexAttribPointer ( 3 , 4 , GL_UNSIGNED_BYTE , GL_TRUE , 0 , 0 ) ;
glEnableVertexAttribArray ( 3 ) ;
}
else
{
// Default color vertex attribute set to WHITE
glVertexAttrib4f ( 3 , 1.0f , 1.0f , 1.0f , 1.0f ) ;
glDisableVertexAttribArray ( 3 ) ;
}
// Default tangent vertex attribute (shader-location = 4)
if ( mesh - > tangents ! = NULL )
{
glGenBuffers ( 1 , & mesh - > vboId [ 4 ] ) ;
glBindBuffer ( GL_ARRAY_BUFFER , mesh - > vboId [ 4 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ARRAY_BUFFER , mesh - > vertexCount * 4 * sizeof ( float ) , mesh - > tangents , drawHint ) ;
2018-07-16 17:53:47 +02:00
glVertexAttribPointer ( 4 , 4 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( 4 ) ;
}
else
{
// Default tangents vertex attribute
glVertexAttrib4f ( 4 , 0.0f , 0.0f , 0.0f , 0.0f ) ;
glDisableVertexAttribArray ( 4 ) ;
}
// Default texcoord2 vertex attribute (shader-location = 5)
if ( mesh - > texcoords2 ! = NULL )
{
glGenBuffers ( 1 , & mesh - > vboId [ 5 ] ) ;
glBindBuffer ( GL_ARRAY_BUFFER , mesh - > vboId [ 5 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ARRAY_BUFFER , mesh - > vertexCount * 2 * sizeof ( float ) , mesh - > texcoords2 , drawHint ) ;
2018-07-16 17:53:47 +02:00
glVertexAttribPointer ( 5 , 2 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( 5 ) ;
}
else
{
// Default texcoord2 vertex attribute
glVertexAttrib2f ( 5 , 0.0f , 0.0f ) ;
glDisableVertexAttribArray ( 5 ) ;
}
if ( mesh - > indices ! = NULL )
{
glGenBuffers ( 1 , & mesh - > vboId [ 6 ] ) ;
glBindBuffer ( GL_ELEMENT_ARRAY_BUFFER , mesh - > vboId [ 6 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ELEMENT_ARRAY_BUFFER , mesh - > triangleCount * 3 * sizeof ( unsigned short ) , mesh - > indices , drawHint ) ;
2018-07-16 17:53:47 +02:00
}
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao )
2018-07-16 17:53:47 +02:00
{
2020-03-27 18:31:36 +01:00
if ( mesh - > vaoId > 0 ) TRACELOG ( LOG_INFO , " VAO: [ID %i] Mesh uploaded successfully to VRAM (GPU) " , mesh - > vaoId ) ;
else TRACELOG ( LOG_WARNING , " VAO: Failed to load mesh to VRAM (GPU) " ) ;
2018-07-16 17:53:47 +02:00
}
else
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_INFO , " VBO: Mesh uploaded successfully to VRAM (GPU) " ) ;
2018-07-16 17:53:47 +02:00
}
# endif
}
2019-04-05 16:43:09 +02:00
// Load a new attributes buffer
unsigned int rlLoadAttribBuffer ( unsigned int vaoId , int shaderLoc , void * buffer , int size , bool dynamic )
{
unsigned int id = 0 ;
2019-05-08 18:33:09 +02:00
2019-04-05 16:43:09 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
int drawHint = GL_STATIC_DRAW ;
if ( dynamic ) drawHint = GL_DYNAMIC_DRAW ;
2019-05-08 18:33:09 +02:00
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( vaoId ) ;
2019-05-08 18:33:09 +02:00
2019-04-05 16:43:09 +02:00
glGenBuffers ( 1 , & id ) ;
glBindBuffer ( GL_ARRAY_BUFFER , id ) ;
glBufferData ( GL_ARRAY_BUFFER , size , buffer , drawHint ) ;
glVertexAttribPointer ( shaderLoc , 2 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( shaderLoc ) ;
2019-05-08 18:33:09 +02:00
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( 0 ) ;
2019-04-05 16:43:09 +02:00
# endif
return id ;
}
2019-11-06 05:43:36 -05:00
// Update vertex or index data on GPU (upload new data to one buffer)
2020-05-23 19:23:40 +02:00
void rlUpdateMesh ( Mesh mesh , int buffer , int count )
2019-11-11 05:49:13 -05:00
{
2020-05-23 19:23:40 +02:00
rlUpdateMeshAt ( mesh , buffer , count , 0 ) ;
2019-11-11 05:49:13 -05:00
}
// Update vertex or index data on GPU, at index
// WARNING: error checking is in place that will cause the data to not be
// updated if offset + size exceeds what the buffer can hold
2020-05-23 19:23:40 +02:00
void rlUpdateMeshAt ( Mesh mesh , int buffer , int count , int index )
2018-07-16 17:53:47 +02:00
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
// Activate mesh VAO
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( mesh . vaoId ) ;
2018-07-16 17:53:47 +02:00
switch ( buffer )
{
case 0 : // Update vertices (vertex position)
{
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 0 ] ) ;
2020-05-23 19:23:40 +02:00
if ( index = = 0 & & count > = mesh . vertexCount ) glBufferData ( GL_ARRAY_BUFFER , count * 3 * sizeof ( float ) , mesh . vertices , GL_DYNAMIC_DRAW ) ;
else if ( index + count > = mesh . vertexCount ) break ;
else glBufferSubData ( GL_ARRAY_BUFFER , index * 3 * sizeof ( float ) , count * 3 * sizeof ( float ) , mesh . vertices ) ;
2018-07-16 17:53:47 +02:00
} break ;
case 1 : // Update texcoords (vertex texture coordinates)
{
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 1 ] ) ;
2020-05-23 19:23:40 +02:00
if ( index = = 0 & & count > = mesh . vertexCount ) glBufferData ( GL_ARRAY_BUFFER , count * 2 * sizeof ( float ) , mesh . texcoords , GL_DYNAMIC_DRAW ) ;
else if ( index + count > = mesh . vertexCount ) break ;
else glBufferSubData ( GL_ARRAY_BUFFER , index * 2 * sizeof ( float ) , count * 2 * sizeof ( float ) , mesh . texcoords ) ;
2018-07-16 17:53:47 +02:00
} break ;
case 2 : // Update normals (vertex normals)
{
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 2 ] ) ;
2020-05-23 19:23:40 +02:00
if ( index = = 0 & & count > = mesh . vertexCount ) glBufferData ( GL_ARRAY_BUFFER , count * 3 * sizeof ( float ) , mesh . normals , GL_DYNAMIC_DRAW ) ;
else if ( index + count > = mesh . vertexCount ) break ;
else glBufferSubData ( GL_ARRAY_BUFFER , index * 3 * sizeof ( float ) , count * 3 * sizeof ( float ) , mesh . normals ) ;
2018-07-16 17:53:47 +02:00
} break ;
case 3 : // Update colors (vertex colors)
{
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 3 ] ) ;
2020-06-08 16:31:39 +08:00
if ( index = = 0 & & count > = mesh . vertexCount ) glBufferData ( GL_ARRAY_BUFFER , count * 4 * sizeof ( unsigned char ) , mesh . colors , GL_DYNAMIC_DRAW ) ;
2020-05-23 19:23:40 +02:00
else if ( index + count > = mesh . vertexCount ) break ;
else glBufferSubData ( GL_ARRAY_BUFFER , index * 4 * sizeof ( unsigned char ) , count * 4 * sizeof ( unsigned char ) , mesh . colors ) ;
2018-07-16 17:53:47 +02:00
} break ;
case 4 : // Update tangents (vertex tangents)
{
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 4 ] ) ;
2020-05-23 19:23:40 +02:00
if ( index = = 0 & & count > = mesh . vertexCount ) glBufferData ( GL_ARRAY_BUFFER , count * 4 * sizeof ( float ) , mesh . tangents , GL_DYNAMIC_DRAW ) ;
else if ( index + count > = mesh . vertexCount ) break ;
else glBufferSubData ( GL_ARRAY_BUFFER , index * 4 * sizeof ( float ) , count * 4 * sizeof ( float ) , mesh . tangents ) ;
2020-11-03 23:47:33 +01:00
2018-07-16 17:53:47 +02:00
} break ;
case 5 : // Update texcoords2 (vertex second texture coordinates)
{
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 5 ] ) ;
2020-05-23 19:23:40 +02:00
if ( index = = 0 & & count > = mesh . vertexCount ) glBufferData ( GL_ARRAY_BUFFER , count * 2 * sizeof ( float ) , mesh . texcoords2 , GL_DYNAMIC_DRAW ) ;
else if ( index + count > = mesh . vertexCount ) break ;
else glBufferSubData ( GL_ARRAY_BUFFER , index * 2 * sizeof ( float ) , count * 2 * sizeof ( float ) , mesh . texcoords2 ) ;
2020-11-03 23:47:33 +01:00
2019-11-06 05:43:36 -05:00
} break ;
case 6 : // Update indices (triangle index buffer)
{
2019-11-11 05:49:13 -05:00
// the * 3 is because each triangle has 3 indices
2019-11-06 05:43:36 -05:00
unsigned short * indices = mesh . indices ;
glBindBuffer ( GL_ELEMENT_ARRAY_BUFFER , mesh . vboId [ 6 ] ) ;
2020-11-03 23:47:33 +01:00
2020-05-23 19:23:40 +02:00
if ( index = = 0 & & count > = mesh . triangleCount ) glBufferData ( GL_ELEMENT_ARRAY_BUFFER , count * 3 * sizeof ( * indices ) , indices , GL_DYNAMIC_DRAW ) ;
else if ( index + count > = mesh . triangleCount ) break ;
else glBufferSubData ( GL_ELEMENT_ARRAY_BUFFER , index * 3 * sizeof ( * indices ) , count * 3 * sizeof ( * indices ) , indices ) ;
2020-11-03 23:47:33 +01:00
2018-07-16 17:53:47 +02:00
} break ;
default : break ;
}
// Unbind the current VAO
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( 0 ) ;
2018-07-16 17:53:47 +02:00
// Another option would be using buffer mapping...
//mesh.vertices = glMapBuffer(GL_ARRAY_BUFFER, GL_READ_WRITE);
// Now we can modify vertices
//glUnmapBuffer(GL_ARRAY_BUFFER);
# endif
}
// Draw a 3d mesh with material and transform
void rlDrawMesh ( Mesh mesh , Material material , Matrix transform )
{
# if defined(GRAPHICS_API_OPENGL_11)
glEnable ( GL_TEXTURE_2D ) ;
2021-03-14 11:05:51 +01:00
glBindTexture ( GL_TEXTURE_2D , material . maps [ MATERIAL_MAP_DIFFUSE ] . texture . id ) ;
2018-07-16 17:53:47 +02:00
// NOTE: On OpenGL 1.1 we use Vertex Arrays to draw model
glEnableClientState ( GL_VERTEX_ARRAY ) ; // Enable vertex array
glEnableClientState ( GL_TEXTURE_COORD_ARRAY ) ; // Enable texture coords array
if ( mesh . normals ! = NULL ) glEnableClientState ( GL_NORMAL_ARRAY ) ; // Enable normals array
if ( mesh . colors ! = NULL ) glEnableClientState ( GL_COLOR_ARRAY ) ; // Enable colors array
glVertexPointer ( 3 , GL_FLOAT , 0 , mesh . vertices ) ; // Pointer to vertex coords array
glTexCoordPointer ( 2 , GL_FLOAT , 0 , mesh . texcoords ) ; // Pointer to texture coords array
if ( mesh . normals ! = NULL ) glNormalPointer ( GL_FLOAT , 0 , mesh . normals ) ; // Pointer to normals array
if ( mesh . colors ! = NULL ) glColorPointer ( 4 , GL_UNSIGNED_BYTE , 0 , mesh . colors ) ; // Pointer to colors array
rlPushMatrix ( ) ;
rlMultMatrixf ( MatrixToFloat ( transform ) ) ;
2021-03-14 11:05:51 +01:00
rlColor4ub ( material . maps [ MATERIAL_MAP_DIFFUSE ] . color . r , material . maps [ MATERIAL_MAP_DIFFUSE ] . color . g , material . maps [ MATERIAL_MAP_DIFFUSE ] . color . b , material . maps [ MATERIAL_MAP_DIFFUSE ] . color . a ) ;
2018-07-16 17:53:47 +02:00
if ( mesh . indices ! = NULL ) glDrawElements ( GL_TRIANGLES , mesh . triangleCount * 3 , GL_UNSIGNED_SHORT , mesh . indices ) ;
else glDrawArrays ( GL_TRIANGLES , 0 , mesh . vertexCount ) ;
rlPopMatrix ( ) ;
glDisableClientState ( GL_VERTEX_ARRAY ) ; // Disable vertex array
glDisableClientState ( GL_TEXTURE_COORD_ARRAY ) ; // Disable texture coords array
if ( mesh . normals ! = NULL ) glDisableClientState ( GL_NORMAL_ARRAY ) ; // Disable normals array
if ( mesh . colors ! = NULL ) glDisableClientState ( GL_NORMAL_ARRAY ) ; // Disable colors array
glDisable ( GL_TEXTURE_2D ) ;
glBindTexture ( GL_TEXTURE_2D , 0 ) ;
# endif
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
// Bind shader program
glUseProgram ( material . shader . id ) ;
// Matrices and other values required by shader
//-----------------------------------------------------
// Calculate and send to shader model matrix (used by PBR shader)
2021-03-14 11:05:51 +01:00
if ( material . shader . locs [ SHADER_LOC_MATRIX_MODEL ] ! = - 1 ) SetShaderValueMatrix ( material . shader , material . shader . locs [ SHADER_LOC_MATRIX_MODEL ] , transform ) ;
2018-07-16 17:53:47 +02:00
// Upload to shader material.colDiffuse
2021-03-14 11:05:51 +01:00
if ( material . shader . locs [ SHADER_LOC_COLOR_DIFFUSE ] ! = - 1 )
glUniform4f ( material . shader . locs [ SHADER_LOC_COLOR_DIFFUSE ] , ( float ) material . maps [ MATERIAL_MAP_DIFFUSE ] . color . r / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_DIFFUSE ] . color . g / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_DIFFUSE ] . color . b / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_DIFFUSE ] . color . a / 255.0f ) ;
2018-07-16 17:53:47 +02:00
// Upload to shader material.colSpecular (if available)
2021-03-14 11:05:51 +01:00
if ( material . shader . locs [ SHADER_LOC_COLOR_SPECULAR ] ! = - 1 )
glUniform4f ( material . shader . locs [ SHADER_LOC_COLOR_SPECULAR ] , ( float ) material . maps [ MATERIAL_MAP_SPECULAR ] . color . r / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_SPECULAR ] . color . g / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_SPECULAR ] . color . b / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_SPECULAR ] . color . a / 255.0f ) ;
2018-07-16 17:53:47 +02:00
2021-03-14 11:05:51 +01:00
if ( material . shader . locs [ SHADER_LOC_MATRIX_VIEW ] ! = - 1 ) SetShaderValueMatrix ( material . shader , material . shader . locs [ SHADER_LOC_MATRIX_VIEW ] , RLGL . State . modelview ) ;
if ( material . shader . locs [ SHADER_LOC_MATRIX_PROJECTION ] ! = - 1 ) SetShaderValueMatrix ( material . shader , material . shader . locs [ SHADER_LOC_MATRIX_PROJECTION ] , RLGL . State . projection ) ;
2018-07-16 17:53:47 +02:00
// At this point the modelview matrix just contains the view matrix (camera)
// That's because BeginMode3D() sets it an no model-drawing function modifies it, all use rlPushMatrix() and rlPopMatrix()
2020-02-03 18:31:30 +01:00
Matrix matView = RLGL . State . modelview ; // View matrix (camera)
Matrix matProjection = RLGL . State . projection ; // Projection matrix (perspective)
2019-09-13 12:29:52 +01:00
2020-02-03 18:31:30 +01:00
// TODO: Consider possible transform matrices in the RLGL.State.stack
2019-07-24 22:40:12 +02:00
// Is this the right order? or should we start with the first stored matrix instead of the last one?
2019-11-25 11:29:04 +01:00
//Matrix matStackTransform = MatrixIdentity();
2020-02-03 18:31:30 +01:00
//for (int i = RLGL.State.stackCounter; i > 0; i--) matStackTransform = MatrixMultiply(RLGL.State.stack[i], matStackTransform);
2018-07-16 17:53:47 +02:00
2019-11-25 11:29:04 +01:00
// Transform to camera-space coordinates
2020-02-03 18:31:30 +01:00
Matrix matModelView = MatrixMultiply ( transform , MatrixMultiply ( RLGL . State . transform , matView ) ) ;
2018-07-16 17:53:47 +02:00
//-----------------------------------------------------
// Bind active texture maps (if available)
for ( int i = 0 ; i < MAX_MATERIAL_MAPS ; i + + )
{
if ( material . maps [ i ] . texture . id > 0 )
{
glActiveTexture ( GL_TEXTURE0 + i ) ;
2021-03-14 11:05:51 +01:00
if ( ( i = = MATERIAL_MAP_IRRADIANCE ) | | ( i = = MATERIAL_MAP_PREFILTER ) | | ( i = = MATERIAL_MAP_CUBEMAP ) ) glBindTexture ( GL_TEXTURE_CUBE_MAP , material . maps [ i ] . texture . id ) ;
2018-07-16 17:53:47 +02:00
else glBindTexture ( GL_TEXTURE_2D , material . maps [ i ] . texture . id ) ;
2021-03-14 11:05:51 +01:00
glUniform1i ( material . shader . locs [ SHADER_LOC_MAP_DIFFUSE + i ] , i ) ;
2018-07-16 17:53:47 +02:00
}
}
// Bind vertex array objects (or VBOs)
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( mesh . vaoId ) ;
2018-07-16 17:53:47 +02:00
else
{
// Bind mesh VBO data: vertex position (shader-location = 0)
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 0 ] ) ;
2021-03-14 11:05:51 +01:00
glVertexAttribPointer ( material . shader . locs [ SHADER_LOC_VERTEX_POSITION ] , 3 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( material . shader . locs [ SHADER_LOC_VERTEX_POSITION ] ) ;
2018-07-16 17:53:47 +02:00
// Bind mesh VBO data: vertex texcoords (shader-location = 1)
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 1 ] ) ;
2021-03-14 11:05:51 +01:00
glVertexAttribPointer ( material . shader . locs [ SHADER_LOC_VERTEX_TEXCOORD01 ] , 2 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( material . shader . locs [ SHADER_LOC_VERTEX_TEXCOORD01 ] ) ;
2018-07-16 17:53:47 +02:00
// Bind mesh VBO data: vertex normals (shader-location = 2, if available)
2021-03-14 11:05:51 +01:00
if ( material . shader . locs [ SHADER_LOC_VERTEX_NORMAL ] ! = - 1 )
2018-07-16 17:53:47 +02:00
{
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 2 ] ) ;
2021-03-14 11:05:51 +01:00
glVertexAttribPointer ( material . shader . locs [ SHADER_LOC_VERTEX_NORMAL ] , 3 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( material . shader . locs [ SHADER_LOC_VERTEX_NORMAL ] ) ;
2018-07-16 17:53:47 +02:00
}
// Bind mesh VBO data: vertex colors (shader-location = 3, if available)
2021-03-14 11:05:51 +01:00
if ( material . shader . locs [ SHADER_LOC_VERTEX_COLOR ] ! = - 1 )
2018-07-16 17:53:47 +02:00
{
if ( mesh . vboId [ 3 ] ! = 0 )
{
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 3 ] ) ;
2021-03-14 11:05:51 +01:00
glVertexAttribPointer ( material . shader . locs [ SHADER_LOC_VERTEX_COLOR ] , 4 , GL_UNSIGNED_BYTE , GL_TRUE , 0 , 0 ) ;
glEnableVertexAttribArray ( material . shader . locs [ SHADER_LOC_VERTEX_COLOR ] ) ;
2018-07-16 17:53:47 +02:00
}
else
{
// Set default value for unused attribute
// NOTE: Required when using default shader and no VAO support
2021-03-14 11:05:51 +01:00
glVertexAttrib4f ( material . shader . locs [ SHADER_LOC_VERTEX_COLOR ] , 1.0f , 1.0f , 1.0f , 1.0f ) ;
glDisableVertexAttribArray ( material . shader . locs [ SHADER_LOC_VERTEX_COLOR ] ) ;
2018-07-16 17:53:47 +02:00
}
}
// Bind mesh VBO data: vertex tangents (shader-location = 4, if available)
2021-03-14 11:05:51 +01:00
if ( material . shader . locs [ SHADER_LOC_VERTEX_TANGENT ] ! = - 1 )
2018-07-16 17:53:47 +02:00
{
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 4 ] ) ;
2021-03-14 11:05:51 +01:00
glVertexAttribPointer ( material . shader . locs [ SHADER_LOC_VERTEX_TANGENT ] , 4 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( material . shader . locs [ SHADER_LOC_VERTEX_TANGENT ] ) ;
2018-07-16 17:53:47 +02:00
}
// Bind mesh VBO data: vertex texcoords2 (shader-location = 5, if available)
2021-03-14 11:05:51 +01:00
if ( material . shader . locs [ SHADER_LOC_VERTEX_TEXCOORD02 ] ! = - 1 )
2018-07-16 17:53:47 +02:00
{
glBindBuffer ( GL_ARRAY_BUFFER , mesh . vboId [ 5 ] ) ;
2021-03-14 11:05:51 +01:00
glVertexAttribPointer ( material . shader . locs [ SHADER_LOC_VERTEX_TEXCOORD02 ] , 2 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( material . shader . locs [ SHADER_LOC_VERTEX_TEXCOORD02 ] ) ;
2018-07-16 17:53:47 +02:00
}
if ( mesh . indices ! = NULL ) glBindBuffer ( GL_ELEMENT_ARRAY_BUFFER , mesh . vboId [ 6 ] ) ;
}
int eyesCount = 1 ;
# if defined(SUPPORT_VR_SIMULATOR)
2020-02-03 18:31:30 +01:00
if ( RLGL . Vr . stereoRender ) eyesCount = 2 ;
2018-07-16 17:53:47 +02:00
# endif
for ( int eye = 0 ; eye < eyesCount ; eye + + )
{
2020-02-03 18:31:30 +01:00
if ( eyesCount = = 1 ) RLGL . State . modelview = matModelView ;
2018-07-16 17:53:47 +02:00
# if defined(SUPPORT_VR_SIMULATOR)
else SetStereoView ( eye , matProjection , matModelView ) ;
# endif
// Calculate model-view-projection matrix (MVP)
2020-02-03 18:31:30 +01:00
Matrix matMVP = MatrixMultiply ( RLGL . State . modelview , RLGL . State . projection ) ; // Transform to screen-space coordinates
2018-07-16 17:53:47 +02:00
// Send combined model-view-projection matrix to shader
2021-03-14 11:05:51 +01:00
glUniformMatrix4fv ( material . shader . locs [ SHADER_LOC_MATRIX_MVP ] , 1 , false , MatrixToFloat ( matMVP ) ) ;
2018-07-16 17:53:47 +02:00
// Draw call!
if ( mesh . indices ! = NULL ) glDrawElements ( GL_TRIANGLES , mesh . triangleCount * 3 , GL_UNSIGNED_SHORT , 0 ) ; // Indexed vertices draw
else glDrawArrays ( GL_TRIANGLES , 0 , mesh . vertexCount ) ;
}
// Unbind all binded texture maps
for ( int i = 0 ; i < MAX_MATERIAL_MAPS ; i + + )
{
glActiveTexture ( GL_TEXTURE0 + i ) ; // Set shader active texture
2021-03-14 11:05:51 +01:00
if ( ( i = = MATERIAL_MAP_IRRADIANCE ) | | ( i = = MATERIAL_MAP_PREFILTER ) | | ( i = = MATERIAL_MAP_CUBEMAP ) ) glBindTexture ( GL_TEXTURE_CUBE_MAP , 0 ) ;
2018-07-16 17:53:47 +02:00
else glBindTexture ( GL_TEXTURE_2D , 0 ) ; // Unbind current active texture
}
// Unind vertex array objects (or VBOs)
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( 0 ) ;
2018-07-16 17:53:47 +02:00
else
{
glBindBuffer ( GL_ARRAY_BUFFER , 0 ) ;
if ( mesh . indices ! = NULL ) glBindBuffer ( GL_ELEMENT_ARRAY_BUFFER , 0 ) ;
}
// Unbind shader program
glUseProgram ( 0 ) ;
2020-02-03 18:31:30 +01:00
// Restore RLGL.State.projection/RLGL.State.modelview matrices
2018-07-16 17:53:47 +02:00
// NOTE: In stereo rendering matrices are being modified to fit every eye
2020-02-03 18:31:30 +01:00
RLGL . State . projection = matProjection ;
RLGL . State . modelview = matView ;
2018-07-16 17:53:47 +02:00
# endif
}
2020-09-27 18:29:05 +10:00
// Draw a 3d mesh with material and transform
void rlDrawMeshInstanced ( Mesh mesh , Material material , Matrix * transforms , int count )
{
2021-03-17 13:56:00 +01:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
if ( RLGL . ExtSupported . instancing )
2020-09-27 18:29:05 +10:00
{
2021-03-17 13:56:00 +01:00
// Bind shader program
glUseProgram ( material . shader . id ) ;
// Upload to shader material.colDiffuse
if ( material . shader . locs [ SHADER_LOC_COLOR_DIFFUSE ] ! = - 1 )
glUniform4f ( material . shader . locs [ SHADER_LOC_COLOR_DIFFUSE ] , ( float ) material . maps [ MATERIAL_MAP_DIFFUSE ] . color . r / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_DIFFUSE ] . color . g / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_DIFFUSE ] . color . b / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_DIFFUSE ] . color . a / 255.0f ) ;
// Upload to shader material.colSpecular (if available)
if ( material . shader . locs [ SHADER_LOC_COLOR_SPECULAR ] ! = - 1 )
glUniform4f ( material . shader . locs [ SHADER_LOC_COLOR_SPECULAR ] , ( float ) material . maps [ MATERIAL_MAP_SPECULAR ] . color . r / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_SPECULAR ] . color . g / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_SPECULAR ] . color . b / 255.0f ,
( float ) material . maps [ MATERIAL_MAP_SPECULAR ] . color . a / 255.0f ) ;
// Bind active texture maps (if available)
for ( int i = 0 ; i < MAX_MATERIAL_MAPS ; i + + )
2020-09-27 18:29:05 +10:00
{
2021-03-17 13:56:00 +01:00
if ( material . maps [ i ] . texture . id > 0 )
{
glActiveTexture ( GL_TEXTURE0 + i ) ;
if ( ( i = = MATERIAL_MAP_IRRADIANCE ) | | ( i = = MATERIAL_MAP_PREFILTER ) | | ( i = = MATERIAL_MAP_CUBEMAP ) )
glBindTexture ( GL_TEXTURE_CUBE_MAP , material . maps [ i ] . texture . id ) ;
else glBindTexture ( GL_TEXTURE_2D , material . maps [ i ] . texture . id ) ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
glUniform1i ( material . shader . locs [ SHADER_LOC_MAP_DIFFUSE + i ] , i ) ;
}
2020-09-27 18:29:05 +10:00
}
2021-03-17 13:56:00 +01:00
// Bind vertex array objects (or VBOs)
glBindVertexArray ( mesh . vaoId ) ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
// At this point the modelview matrix just contains the view matrix (camera)
// For instanced shaders "mvp" is not premultiplied by any instance transform, only RLGL.State.transform
glUniformMatrix4fv ( material . shader . locs [ SHADER_LOC_MATRIX_MVP ] , 1 , false ,
MatrixToFloat ( MatrixMultiply ( MatrixMultiply ( RLGL . State . transform , RLGL . State . modelview ) , RLGL . State . projection ) ) ) ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
float16 * instanceTransforms = RL_MALLOC ( count * sizeof ( float16 ) ) ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
for ( int i = 0 ; i < count ; i + + ) instanceTransforms [ i ] = MatrixToFloatV ( transforms [ i ] ) ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
// This could alternatively use a static VBO and either glMapBuffer or glBufferSubData.
// It isn't clear which would be reliably faster in all cases and on all platforms, and
// anecdotally glMapBuffer seems very slow (syncs) while glBufferSubData seems no faster
// since we're transferring all the transform matrices anyway.
unsigned int instancesB = 0 ;
glGenBuffers ( 1 , & instancesB ) ;
glBindBuffer ( GL_ARRAY_BUFFER , instancesB ) ;
glBufferData ( GL_ARRAY_BUFFER , count * sizeof ( float16 ) , instanceTransforms , GL_STATIC_DRAW ) ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
// Instances are put in SHADER_LOC_MATRIX_MODEL attribute location with space for 4x Vector4, eg:
// layout (location = 12) in mat4 instance;
unsigned int instanceA = material . shader . locs [ SHADER_LOC_MATRIX_MODEL ] ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
for ( unsigned int i = 0 ; i < 4 ; i + + )
{
glEnableVertexAttribArray ( instanceA + i ) ;
glVertexAttribPointer ( instanceA + i , 4 , GL_FLOAT , GL_FALSE , sizeof ( Matrix ) , ( void * ) ( i * sizeof ( Vector4 ) ) ) ;
glVertexAttribDivisor ( instanceA + i , 1 ) ;
}
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
glBindBuffer ( GL_ARRAY_BUFFER , 0 ) ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
// Draw instanced
if ( mesh . indices ! = NULL ) glDrawElementsInstanced ( GL_TRIANGLES , mesh . triangleCount * 3 , GL_UNSIGNED_SHORT , 0 , count ) ;
else glDrawArraysInstanced ( GL_TRIANGLES , 0 , mesh . vertexCount , count ) ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
glDeleteBuffers ( 1 , & instancesB ) ;
RL_FREE ( instanceTransforms ) ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
// Unbind all binded texture maps
for ( int i = 0 ; i < MAX_MATERIAL_MAPS ; i + + )
{
glActiveTexture ( GL_TEXTURE0 + i ) ; // Set shader active texture
if ( ( i = = MATERIAL_MAP_IRRADIANCE ) | | ( i = = MATERIAL_MAP_PREFILTER ) | | ( i = = MATERIAL_MAP_CUBEMAP ) ) glBindTexture ( GL_TEXTURE_CUBE_MAP , 0 ) ;
else glBindTexture ( GL_TEXTURE_2D , 0 ) ; // Unbind current active texture
}
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
// Unind vertex array objects (or VBOs)
glBindVertexArray ( 0 ) ;
2020-09-27 18:29:05 +10:00
2021-03-17 13:56:00 +01:00
// Unbind shader program
glUseProgram ( 0 ) ;
}
2020-09-27 18:29:05 +10:00
# endif
}
2018-07-16 17:53:47 +02:00
// Unload mesh data from CPU and GPU
2021-03-02 00:34:10 +01:00
void rlUnloadMesh ( Mesh * mesh )
2018-07-16 17:53:47 +02:00
{
2020-09-18 02:11:49 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2021-03-02 01:35:30 +01:00
for ( int i = 0 ; i < 7 ; i + + ) glDeleteBuffers ( 1 , & mesh - > vboId [ i ] ) ; // DEFAULT_MESH_VERTEX_BUFFERS (model.c)
2020-09-18 02:11:49 +02:00
if ( RLGL . ExtSupported . vao )
{
glBindVertexArray ( 0 ) ;
2021-03-02 01:35:30 +01:00
glDeleteVertexArrays ( 1 , & mesh - > vaoId ) ;
2021-03-02 01:41:30 +01:00
TRACELOG ( LOG_INFO , " VAO: [ID %i] Unloaded vertex data from VRAM (GPU) " , mesh - > vaoId ) ;
2020-09-18 02:11:49 +02:00
}
else TRACELOG ( LOG_INFO , " VBO: Unloaded vertex data from VRAM (GPU) " ) ;
# endif
2021-02-21 12:09:52 +01:00
2021-03-02 00:34:10 +01:00
RL_FREE ( mesh - > vboId ) ;
mesh - > vboId = NULL ;
2018-07-16 17:53:47 +02:00
}
// Read screen pixel data (color buffer)
unsigned char * rlReadScreenPixels ( int width , int height )
{
2019-04-23 14:55:35 +02:00
unsigned char * screenData = ( unsigned char * ) RL_CALLOC ( width * height * 4 , sizeof ( unsigned char ) ) ;
2018-07-16 17:53:47 +02:00
2019-01-11 18:55:04 +01:00
// NOTE 1: glReadPixels returns image flipped vertically -> (0,0) is the bottom left corner of the framebuffer
// NOTE 2: We are getting alpha channel! Be careful, it can be transparent if not cleared properly!
2018-07-16 17:53:47 +02:00
glReadPixels ( 0 , 0 , width , height , GL_RGBA , GL_UNSIGNED_BYTE , screenData ) ;
// Flip image vertically!
2020-05-23 19:23:40 +02:00
unsigned char * imgData = ( unsigned char * ) RL_MALLOC ( width * height * 4 * sizeof ( unsigned char ) ) ;
2018-07-16 17:53:47 +02:00
for ( int y = height - 1 ; y > = 0 ; y - - )
{
for ( int x = 0 ; x < ( width * 4 ) ; x + + )
{
2019-01-16 10:04:59 +01:00
imgData [ ( ( height - 1 ) - y ) * width * 4 + x ] = screenData [ ( y * width * 4 ) + x ] ; // Flip line
2019-02-21 18:45:19 +01:00
2019-01-16 10:04:59 +01:00
// Set alpha component value to 255 (no trasparent image retrieval)
// NOTE: Alpha value has already been applied to RGB in framebuffer, we don't need it!
if ( ( ( x + 1 ) % 4 ) = = 0 ) imgData [ ( ( height - 1 ) - y ) * width * 4 + x ] = 255 ;
2018-07-16 17:53:47 +02:00
}
}
2019-04-23 14:55:35 +02:00
RL_FREE ( screenData ) ;
2018-07-16 17:53:47 +02:00
return imgData ; // NOTE: image data should be freed
}
// Read texture pixel data
void * rlReadTexturePixels ( Texture2D texture )
{
void * pixels = NULL ;
# if defined(GRAPHICS_API_OPENGL_11) || defined(GRAPHICS_API_OPENGL_33)
glBindTexture ( GL_TEXTURE_2D , texture . id ) ;
// NOTE: Using texture.id, we can retrieve some texture info (but not on OpenGL ES 2.0)
2018-12-18 18:20:20 +01:00
// Possible texture info: GL_TEXTURE_RED_SIZE, GL_TEXTURE_GREEN_SIZE, GL_TEXTURE_BLUE_SIZE, GL_TEXTURE_ALPHA_SIZE
2018-12-18 16:52:18 +01:00
//int width, height, format;
//glGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_WIDTH, &width);
//glGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_HEIGHT, &height);
//glGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_INTERNAL_FORMAT, &format);
2018-07-16 17:53:47 +02:00
// NOTE: Each row written to or read from by OpenGL pixel operations like glGetTexImage are aligned to a 4 byte boundary by default, which may add some padding.
// Use glPixelStorei to modify padding with the GL_[UN]PACK_ALIGNMENT setting.
// GL_PACK_ALIGNMENT affects operations that read from OpenGL memory (glReadPixels, glGetTexImage, etc.)
// GL_UNPACK_ALIGNMENT affects operations that write to OpenGL memory (glTexImage, etc.)
glPixelStorei ( GL_PACK_ALIGNMENT , 1 ) ;
2018-10-01 15:30:48 +02:00
unsigned int glInternalFormat , glFormat , glType ;
rlGetGlTextureFormats ( texture . format , & glInternalFormat , & glFormat , & glType ) ;
2018-07-16 17:53:47 +02:00
unsigned int size = GetPixelDataSize ( texture . width , texture . height , texture . format ) ;
2021-03-14 11:05:51 +01:00
if ( ( glInternalFormat ! = - 1 ) & & ( texture . format < PIXELFORMAT_COMPRESSED_DXT1_RGB ) )
2018-07-16 17:53:47 +02:00
{
2020-09-14 16:03:45 +02:00
pixels = RL_MALLOC ( size ) ;
2018-07-16 17:53:47 +02:00
glGetTexImage ( GL_TEXTURE_2D , 0 , glFormat , glType , pixels ) ;
}
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_WARNING , " TEXTURE: [ID %i] Data retrieval not suported for pixel format (%i) " , texture.id, texture.format) ;
2018-07-16 17:53:47 +02:00
glBindTexture ( GL_TEXTURE_2D , 0 ) ;
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2018-12-18 18:20:20 +01:00
// glGetTexImage() is not available on OpenGL ES 2.0
// Texture2D width and height are required on OpenGL ES 2.0. There is no way to get it from texture id.
// Two possible Options:
2018-07-16 17:53:47 +02:00
// 1 - Bind texture to color fbo attachment and glReadPixels()
// 2 - Create an fbo, activate it, render quad with texture, glReadPixels()
2018-12-18 18:20:20 +01:00
// We are using Option 1, just need to care for texture format on retrieval
// NOTE: This behaviour could be conditioned by graphic driver...
2020-09-18 02:11:49 +02:00
unsigned int fboId = rlLoadFramebuffer ( texture . width , texture . height ) ;
2019-02-21 18:45:19 +01:00
2020-09-18 02:11:49 +02:00
// TODO: Create depth texture/renderbuffer for fbo?
glBindFramebuffer ( GL_FRAMEBUFFER , fboId ) ;
2018-07-16 17:53:47 +02:00
glBindTexture ( GL_TEXTURE_2D , 0 ) ;
2018-12-18 18:20:20 +01:00
// Attach our texture to FBO
2018-07-16 17:53:47 +02:00
glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 , GL_TEXTURE_2D , texture . id , 0 ) ;
2019-12-11 23:22:10 +01:00
// We read data as RGBA because FBO texture is configured as RGBA, despite binding another texture format
2021-03-14 11:05:51 +01:00
pixels = ( unsigned char * ) RL_MALLOC ( GetPixelDataSize ( texture . width , texture . height , PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 ) ) ;
2019-12-11 23:26:42 +01:00
glReadPixels ( 0 , 0 , texture . width , texture . height , GL_RGBA , GL_UNSIGNED_BYTE , pixels ) ;
2018-07-16 17:53:47 +02:00
glBindFramebuffer ( GL_FRAMEBUFFER , 0 ) ;
// Clean up temporal fbo
2020-09-18 02:14:05 +02:00
rlUnloadFramebuffer ( fboId ) ;
2018-07-16 17:53:47 +02:00
# endif
return pixels ;
}
//----------------------------------------------------------------------------------
// Module Functions Definition - Shaders Functions
// NOTE: Those functions are exposed directly to the user in raylib.h
//----------------------------------------------------------------------------------
// Get default internal texture (white texture)
Texture2D GetTextureDefault ( void )
{
2018-12-14 10:00:44 +01:00
Texture2D texture = { 0 } ;
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
texture . id = RLGL . State . defaultTextureId ;
2018-07-16 17:53:47 +02:00
texture . width = 1 ;
texture . height = 1 ;
texture . mipmaps = 1 ;
2021-03-14 11:05:51 +01:00
texture . format = PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 ;
2018-12-14 10:00:44 +01:00
# endif
2018-07-16 17:53:47 +02:00
return texture ;
}
2020-02-03 18:31:30 +01:00
// Get texture to draw shapes (RAII)
Texture2D GetShapesTexture ( void )
{
2020-06-27 14:10:53 +02:00
# if defined(GRAPHICS_API_OPENGL_11)
Texture2D texture = { 0 } ;
return texture ;
# else
2020-02-03 18:31:30 +01:00
return RLGL . State . shapesTexture ;
2020-06-27 14:10:53 +02:00
# endif
2020-02-03 18:31:30 +01:00
}
// Get texture rectangle to draw shapes
Rectangle GetShapesTextureRec ( void )
{
2020-06-27 14:10:53 +02:00
# if defined(GRAPHICS_API_OPENGL_11)
Rectangle rec = { 0 } ;
return rec ;
# else
2020-02-03 18:31:30 +01:00
return RLGL . State . shapesTextureRec ;
2020-06-27 14:10:53 +02:00
# endif
2020-02-03 18:31:30 +01:00
}
// Define default texture used to draw shapes
void SetShapesTexture ( Texture2D texture , Rectangle source )
{
2020-06-27 14:10:53 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
RLGL . State . shapesTexture = texture ;
RLGL . State . shapesTextureRec = source ;
2020-06-27 14:10:53 +02:00
# endif
2020-02-03 18:31:30 +01:00
}
2018-07-16 17:53:47 +02:00
// Get default shader
Shader GetShaderDefault ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
return RLGL . State . defaultShader ;
2018-07-16 17:53:47 +02:00
# else
Shader shader = { 0 } ;
return shader ;
# endif
}
// Load shader from files and bind default locations
// NOTE: If shader string is NULL, using default vertex/fragment shaders
Shader LoadShader ( const char * vsFileName , const char * fsFileName )
{
Shader shader = { 0 } ;
2019-10-17 17:18:03 +02:00
2019-09-22 21:47:19 +02:00
// NOTE: Shader.locs is allocated by LoadShaderCode()
2018-07-16 17:53:47 +02:00
char * vShaderStr = NULL ;
char * fShaderStr = NULL ;
2020-03-04 00:21:46 +01:00
if ( vsFileName ! = NULL ) vShaderStr = LoadFileText ( vsFileName ) ;
if ( fsFileName ! = NULL ) fShaderStr = LoadFileText ( fsFileName ) ;
2018-07-16 17:53:47 +02:00
shader = LoadShaderCode ( vShaderStr , fShaderStr ) ;
2019-04-23 14:55:35 +02:00
if ( vShaderStr ! = NULL ) RL_FREE ( vShaderStr ) ;
if ( fShaderStr ! = NULL ) RL_FREE ( fShaderStr ) ;
2018-07-16 17:53:47 +02:00
return shader ;
}
// Load shader from code strings
// NOTE: If shader string is NULL, using default vertex/fragment shaders
2019-09-25 17:31:10 +03:00
Shader LoadShaderCode ( const char * vsCode , const char * fsCode )
2018-07-16 17:53:47 +02:00
{
Shader shader = { 0 } ;
2019-08-27 10:56:49 +02:00
shader . locs = ( int * ) RL_CALLOC ( MAX_SHADER_LOCATIONS , sizeof ( int ) ) ;
2018-07-16 17:53:47 +02:00
// NOTE: All locations must be reseted to -1 (no location)
for ( int i = 0 ; i < MAX_SHADER_LOCATIONS ; i + + ) shader . locs [ i ] = - 1 ;
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
unsigned int vertexShaderId = RLGL . State . defaultVShaderId ;
unsigned int fragmentShaderId = RLGL . State . defaultFShaderId ;
2018-07-16 17:53:47 +02:00
if ( vsCode ! = NULL ) vertexShaderId = CompileShader ( vsCode , GL_VERTEX_SHADER ) ;
if ( fsCode ! = NULL ) fragmentShaderId = CompileShader ( fsCode , GL_FRAGMENT_SHADER ) ;
2020-02-03 18:31:30 +01:00
if ( ( vertexShaderId = = RLGL . State . defaultVShaderId ) & & ( fragmentShaderId = = RLGL . State . defaultFShaderId ) ) shader = RLGL . State . defaultShader ;
2018-07-16 17:53:47 +02:00
else
{
shader . id = LoadShaderProgram ( vertexShaderId , fragmentShaderId ) ;
2020-11-03 23:47:33 +01:00
if ( vertexShaderId ! = RLGL . State . defaultVShaderId )
2020-09-16 13:17:16 +02:00
{
// Detach shader before deletion to make sure memory is freed
glDetachShader ( shader . id , vertexShaderId ) ;
glDeleteShader ( vertexShaderId ) ;
}
2020-11-03 23:47:33 +01:00
if ( fragmentShaderId ! = RLGL . State . defaultFShaderId )
2020-09-16 13:17:16 +02:00
{
// Detach shader before deletion to make sure memory is freed
glDetachShader ( shader . id , fragmentShaderId ) ;
glDeleteShader ( fragmentShaderId ) ;
}
2018-07-16 17:53:47 +02:00
if ( shader . id = = 0 )
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " SHADER: Failed to load custom shader code " ) ;
2020-02-03 18:31:30 +01:00
shader = RLGL . State . defaultShader ;
2018-07-16 17:53:47 +02:00
}
// After shader loading, we TRY to set default location names
if ( shader . id > 0 ) SetShaderDefaultLocations ( & shader ) ;
}
// Get available shader uniforms
// NOTE: This information is useful for debug...
int uniformCount = - 1 ;
glGetProgramiv ( shader . id , GL_ACTIVE_UNIFORMS , & uniformCount ) ;
2019-08-27 12:22:54 +02:00
for ( int i = 0 ; i < uniformCount ; i + + )
2018-07-16 17:53:47 +02:00
{
int namelen = - 1 ;
int num = - 1 ;
char name [ 256 ] ; // Assume no variable names longer than 256
GLenum type = GL_ZERO ;
// Get the name of the uniforms
2020-05-23 19:23:40 +02:00
glGetActiveUniform ( shader . id , i , sizeof ( name ) - 1 , & namelen , & num , & type , name ) ;
2018-07-16 17:53:47 +02:00
name [ namelen ] = 0 ;
2020-03-27 18:31:36 +01:00
TRACELOGD ( " SHADER: [ID %i] Active uniform (%s) set at location: %i " , shader . id , name , glGetUniformLocation ( shader . id , name ) ) ;
2018-07-16 17:53:47 +02:00
}
# endif
return shader ;
}
// Unload shader from GPU memory (VRAM)
void UnloadShader ( Shader shader )
{
2020-09-18 02:11:49 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
if ( shader . id ! = RLGL . State . defaultShader . id )
2018-07-16 17:53:47 +02:00
{
2020-09-18 02:11:49 +02:00
glDeleteProgram ( shader . id ) ;
2020-09-16 16:33:17 +02:00
RL_FREE ( shader . locs ) ;
2020-11-03 23:47:33 +01:00
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_INFO , " SHADER: [ID %i] Unloaded shader program data from VRAM (GPU) " , shader . id ) ;
2018-07-16 17:53:47 +02:00
}
2020-09-18 02:11:49 +02:00
# endif
2018-07-16 17:53:47 +02:00
}
// Begin custom shader mode
void BeginShaderMode ( Shader shader )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
if ( RLGL . State . currentShader . id ! = shader . id )
2018-07-16 17:53:47 +02:00
{
2020-09-25 18:19:19 +02:00
DrawRenderBatch ( RLGL . currentBatch ) ;
2020-02-03 18:31:30 +01:00
RLGL . State . currentShader = shader ;
2018-07-16 17:53:47 +02:00
}
# endif
}
// End custom shader mode (returns to default shader)
void EndShaderMode ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
BeginShaderMode ( RLGL . State . defaultShader ) ;
2018-07-16 17:53:47 +02:00
# endif
}
// Get shader uniform location
int GetShaderLocation ( Shader shader , const char * uniformName )
{
int location = - 1 ;
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
location = glGetUniformLocation ( shader . id , uniformName ) ;
2020-03-27 18:31:36 +01:00
if ( location = = - 1 ) TRACELOG ( LOG_WARNING , " SHADER: [ID %i] Failed to find shader uniform: %s " , shader . id , uniformName ) ;
else TRACELOG ( LOG_INFO , " SHADER: [ID %i] Shader uniform (%s) set at location : % i " , shader.id, uniformName, location) ;
2018-07-16 17:53:47 +02:00
# endif
return location ;
}
2020-09-27 18:29:05 +10:00
// Get shader attribute location
int GetShaderLocationAttrib ( Shader shader , const char * attribName )
{
int location = - 1 ;
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
location = glGetAttribLocation ( shader . id , attribName ) ;
if ( location = = - 1 ) TRACELOG ( LOG_WARNING , " SHADER: [ID %i] Failed to find shader attribute: %s " , shader . id , attribName ) ;
else TRACELOG ( LOG_INFO , " SHADER: [ID %i] Shader attribute (%s) set at location : % i " , shader.id, attribName, location) ;
# endif
return location ;
}
2019-01-10 11:25:26 +01:00
// Set shader uniform value
void SetShaderValue ( Shader shader , int uniformLoc , const void * value , int uniformType )
2019-01-09 16:18:00 +01:00
{
2019-01-10 11:25:26 +01:00
SetShaderValueV ( shader , uniformLoc , value , uniformType , 1 ) ;
2019-01-09 16:18:00 +01:00
}
2019-01-10 11:25:26 +01:00
// Set shader uniform value vector
void SetShaderValueV ( Shader shader , int uniformLoc , const void * value , int uniformType , int count )
2018-07-16 17:53:47 +02:00
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
glUseProgram ( shader . id ) ;
2019-01-10 11:25:26 +01:00
switch ( uniformType )
{
2021-03-14 11:05:51 +01:00
case SHADER_UNIFORM_FLOAT : glUniform1fv ( uniformLoc , count , ( float * ) value ) ; break ;
case SHADER_UNIFORM_VEC2 : glUniform2fv ( uniformLoc , count , ( float * ) value ) ; break ;
case SHADER_UNIFORM_VEC3 : glUniform3fv ( uniformLoc , count , ( float * ) value ) ; break ;
case SHADER_UNIFORM_VEC4 : glUniform4fv ( uniformLoc , count , ( float * ) value ) ; break ;
case SHADER_UNIFORM_INT : glUniform1iv ( uniformLoc , count , ( int * ) value ) ; break ;
case SHADER_UNIFORM_IVEC2 : glUniform2iv ( uniformLoc , count , ( int * ) value ) ; break ;
case SHADER_UNIFORM_IVEC3 : glUniform3iv ( uniformLoc , count , ( int * ) value ) ; break ;
case SHADER_UNIFORM_IVEC4 : glUniform4iv ( uniformLoc , count , ( int * ) value ) ; break ;
case SHADER_UNIFORM_SAMPLER2D : glUniform1iv ( uniformLoc , count , ( int * ) value ) ; break ;
2020-03-27 18:31:36 +01:00
default : TRACELOG ( LOG_WARNING , " SHADER: [ID %i] Failed to set uniform, data type not recognized " , shader . id ) ;
2019-01-10 11:25:26 +01:00
}
2019-02-21 18:45:19 +01:00
2018-07-16 17:53:47 +02:00
//glUseProgram(0); // Avoid reseting current shader program, in case other uniforms are set
# endif
}
// Set shader uniform value (matrix 4x4)
void SetShaderValueMatrix ( Shader shader , int uniformLoc , Matrix mat )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
glUseProgram ( shader . id ) ;
glUniformMatrix4fv ( uniformLoc , 1 , false , MatrixToFloat ( mat ) ) ;
//glUseProgram(0);
# endif
}
2019-04-05 17:08:46 +02:00
// Set shader uniform value for texture
void SetShaderValueTexture ( Shader shader , int uniformLoc , Texture2D texture )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
glUseProgram ( shader . id ) ;
2020-11-03 23:47:33 +01:00
2020-10-31 11:48:44 +01:00
// Check if texture is already active
for ( int i = 0 ; i < MAX_BATCH_ACTIVE_TEXTURES ; i + + ) if ( RLGL . State . activeTextureId [ i ] = = texture . id ) return ;
2019-04-05 17:08:46 +02:00
2020-10-26 20:13:08 +01:00
// Register a new active texture for the internal batch system
2020-10-29 20:22:52 +01:00
// NOTE: Default texture is always activated as GL_TEXTURE0
2020-11-03 23:47:33 +01:00
for ( int i = 0 ; i < MAX_BATCH_ACTIVE_TEXTURES ; i + + )
2020-10-26 20:13:08 +01:00
{
2020-10-29 20:22:52 +01:00
if ( RLGL . State . activeTextureId [ i ] = = 0 )
2020-10-26 20:13:08 +01:00
{
2020-10-29 20:22:52 +01:00
glUniform1i ( uniformLoc , 1 + i ) ; // Activate new texture unit
2020-10-26 20:13:08 +01:00
RLGL . State . activeTextureId [ i ] = texture . id ; // Save texture id for binding on drawing
2020-10-29 20:22:52 +01:00
break ;
2020-10-26 20:13:08 +01:00
}
}
2019-04-05 17:08:46 +02:00
//glUseProgram(0);
# endif
}
2018-07-16 17:53:47 +02:00
// Set a custom projection matrix (replaces internal projection matrix)
2020-02-03 18:31:30 +01:00
void SetMatrixProjection ( Matrix projection )
2018-07-16 17:53:47 +02:00
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
RLGL . State . projection = projection ;
2018-07-16 17:53:47 +02:00
# endif
}
2019-10-27 11:13:18 +00:00
// Return internal projection matrix
Matrix GetMatrixProjection ( void ) {
# if defined(GRAPHICS_API_OPENGL_11)
float mat [ 16 ] ;
glGetFloatv ( GL_PROJECTION_MATRIX , mat ) ;
Matrix m ;
m . m0 = mat [ 0 ] ; m . m1 = mat [ 1 ] ; m . m2 = mat [ 2 ] ; m . m3 = mat [ 3 ] ;
m . m4 = mat [ 4 ] ; m . m5 = mat [ 5 ] ; m . m6 = mat [ 6 ] ; m . m7 = mat [ 7 ] ;
m . m8 = mat [ 8 ] ; m . m9 = mat [ 9 ] ; m . m10 = mat [ 10 ] ; m . m11 = mat [ 11 ] ;
m . m12 = mat [ 12 ] ; m . m13 = mat [ 13 ] ; m . m14 = mat [ 14 ] ; m . m15 = mat [ 15 ] ;
return m ;
# else
2020-02-03 18:31:30 +01:00
return RLGL . State . projection ;
2019-10-27 11:13:18 +00:00
# endif
#
}
2018-07-16 17:53:47 +02:00
// Set a custom modelview matrix (replaces internal modelview matrix)
void SetMatrixModelview ( Matrix view )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
RLGL . State . modelview = view ;
2018-07-16 17:53:47 +02:00
# endif
}
// Return internal modelview matrix
2019-06-06 11:38:45 +02:00
Matrix GetMatrixModelview ( void )
2018-07-16 17:53:47 +02:00
{
Matrix matrix = MatrixIdentity ( ) ;
# if defined(GRAPHICS_API_OPENGL_11)
float mat [ 16 ] ;
glGetFloatv ( GL_MODELVIEW_MATRIX , mat ) ;
2019-10-27 11:13:18 +00:00
matrix . m0 = mat [ 0 ] ; matrix . m1 = mat [ 1 ] ; matrix . m2 = mat [ 2 ] ; matrix . m3 = mat [ 3 ] ;
matrix . m4 = mat [ 4 ] ; matrix . m5 = mat [ 5 ] ; matrix . m6 = mat [ 6 ] ; matrix . m7 = mat [ 7 ] ;
matrix . m8 = mat [ 8 ] ; matrix . m9 = mat [ 9 ] ; matrix . m10 = mat [ 10 ] ; matrix . m11 = mat [ 11 ] ;
matrix . m12 = mat [ 12 ] ; matrix . m13 = mat [ 13 ] ; matrix . m14 = mat [ 14 ] ; matrix . m15 = mat [ 15 ] ;
2018-07-16 17:53:47 +02:00
# else
2020-02-03 18:31:30 +01:00
matrix = RLGL . State . modelview ;
2018-07-16 17:53:47 +02:00
# endif
return matrix ;
}
// Generate cubemap texture from HDR texture
2020-09-21 13:18:53 +02:00
TextureCubemap GenTextureCubemap ( Shader shader , Texture2D panorama , int size , int format )
2018-07-16 17:53:47 +02:00
{
2020-09-18 13:50:51 +02:00
TextureCubemap cubemap = { 0 } ;
2018-12-25 15:19:25 +01:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-09-18 13:50:51 +02:00
rlDisableBackfaceCulling ( ) ; // Disable backface culling to render inside the cube
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
// STEP 1: Setup framebuffer
//------------------------------------------------------------------------------------------
unsigned int rbo = rlLoadTextureDepth ( size , size , true ) ;
2020-09-21 13:18:53 +02:00
cubemap . id = rlLoadTextureCubemap ( NULL , size , format ) ;
2020-11-03 23:47:33 +01:00
2020-09-18 13:50:51 +02:00
unsigned int fbo = rlLoadFramebuffer ( size , size ) ;
rlFramebufferAttach ( fbo , rbo , RL_ATTACHMENT_DEPTH , RL_ATTACHMENT_RENDERBUFFER ) ;
rlFramebufferAttach ( fbo , cubemap . id , RL_ATTACHMENT_COLOR_CHANNEL0 , RL_ATTACHMENT_CUBEMAP_POSITIVE_X ) ;
2020-11-03 23:47:33 +01:00
2020-09-21 13:18:53 +02:00
// Check if framebuffer is complete with attachments (valid)
if ( rlFramebufferComplete ( fbo ) ) TRACELOG ( LOG_INFO , " FBO: [ID %i] Framebuffer object created successfully " , fbo ) ;
2020-09-18 13:50:51 +02:00
//------------------------------------------------------------------------------------------
2019-02-21 18:45:19 +01:00
2020-09-18 13:50:51 +02:00
// STEP 2: Draw to framebuffer
//------------------------------------------------------------------------------------------
// NOTE: Shader is used to convert HDR equirectangular environment map to cubemap equivalent (6 faces)
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
// Define projection matrix and send it to shader
2020-05-01 17:31:44 +02:00
Matrix fboProjection = MatrixPerspective ( 90.0 * DEG2RAD , 1.0 , RL_CULL_DISTANCE_NEAR , RL_CULL_DISTANCE_FAR ) ;
2021-03-14 11:05:51 +01:00
SetShaderValueMatrix ( shader , shader . locs [ SHADER_LOC_MATRIX_PROJECTION ] , fboProjection ) ;
2020-11-03 23:47:33 +01:00
2020-09-18 13:50:51 +02:00
// Define view matrix for every side of the cubemap
2018-07-16 17:53:47 +02:00
Matrix fboViews [ 6 ] = {
2020-09-18 13:50:51 +02:00
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 1.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { - 1.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , 1.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , 1.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , - 1.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , 1.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , - 1.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } )
2018-07-16 17:53:47 +02:00
} ;
2020-09-18 13:50:51 +02:00
rlEnableShader ( shader . id ) ;
2020-09-26 11:51:42 +02:00
# if !defined(GENTEXTURECUBEMAP_USE_BATCH_SYSTEM)
glActiveTexture ( GL_TEXTURE0 ) ;
glBindTexture ( GL_TEXTURE_2D , panorama . id ) ;
# endif
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
rlViewport ( 0 , 0 , size , size ) ; // Set viewport to current fbo dimensions
2018-07-16 17:53:47 +02:00
2019-01-06 21:07:09 +01:00
for ( int i = 0 ; i < 6 ; i + + )
2018-07-16 17:53:47 +02:00
{
2021-03-14 11:05:51 +01:00
SetShaderValueMatrix ( shader , shader . locs [ SHADER_LOC_MATRIX_VIEW ] , fboViews [ i ] ) ;
2020-09-18 13:50:51 +02:00
rlFramebufferAttach ( fbo , cubemap . id , RL_ATTACHMENT_COLOR_CHANNEL0 , RL_ATTACHMENT_CUBEMAP_POSITIVE_X + i ) ;
rlEnableFramebuffer ( fbo ) ;
2020-09-26 11:51:42 +02:00
# if defined(GENTEXTURECUBEMAP_USE_BATCH_SYSTEM)
2020-09-25 18:14:46 +02:00
rlEnableTexture ( panorama . id ) ; // WARNING: It must be called after enabling current framebuffer if using internal batch system!
2020-09-26 11:51:42 +02:00
# endif
2020-09-18 13:50:51 +02:00
rlClearScreenBuffers ( ) ;
2020-09-26 11:51:42 +02:00
GenDrawCube ( ) ;
2020-11-03 23:47:33 +01:00
2020-09-26 11:51:42 +02:00
# if defined(GENTEXTURECUBEMAP_USE_BATCH_SYSTEM)
2020-09-25 18:14:46 +02:00
// Using internal batch system instead of raw OpenGL cube creating+drawing
2020-09-26 11:51:42 +02:00
// NOTE: DrawCubeV() is actually provided by models.c! -> GenTextureCubemap() should be moved to user code!
2020-09-25 18:14:46 +02:00
DrawCubeV ( Vector3Zero ( ) , Vector3One ( ) , WHITE ) ;
DrawRenderBatch ( RLGL . currentBatch ) ;
2020-09-26 11:51:42 +02:00
# endif
2018-07-16 17:53:47 +02:00
}
2020-09-18 13:50:51 +02:00
//------------------------------------------------------------------------------------------
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
// STEP 3: Unload framebuffer and reset state
//------------------------------------------------------------------------------------------
rlDisableShader ( ) ; // Unbind shader
rlDisableTexture ( ) ; // Unbind texture
rlDisableFramebuffer ( ) ; // Unbind framebuffer
rlUnloadFramebuffer ( fbo ) ; // Unload framebuffer (and automatically attached depth texture/renderbuffer)
2018-07-16 17:53:47 +02:00
// Reset viewport dimensions to default
2020-09-18 13:50:51 +02:00
rlViewport ( 0 , 0 , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight ) ;
2021-02-28 14:31:25 -08:00
rlEnableBackfaceCulling ( ) ;
2020-09-18 13:50:51 +02:00
//------------------------------------------------------------------------------------------
2018-07-16 17:53:47 +02:00
cubemap . width = size ;
cubemap . height = size ;
2019-01-05 19:24:42 +01:00
cubemap . mipmaps = 1 ;
2021-03-14 11:05:51 +01:00
cubemap . format = PIXELFORMAT_UNCOMPRESSED_R32G32B32 ;
2018-07-16 17:53:47 +02:00
# endif
return cubemap ;
}
// Generate irradiance texture using cubemap data
2020-09-18 13:50:51 +02:00
TextureCubemap GenTextureIrradiance ( Shader shader , TextureCubemap cubemap , int size )
2018-07-16 17:53:47 +02:00
{
2020-09-18 13:50:51 +02:00
TextureCubemap irradiance = { 0 } ;
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
rlDisableBackfaceCulling ( ) ; // Disable backface culling to render inside the cube
2019-02-21 18:45:19 +01:00
2020-09-18 13:50:51 +02:00
// STEP 1: Setup framebuffer
//------------------------------------------------------------------------------------------
unsigned int rbo = rlLoadTextureDepth ( size , size , true ) ;
2021-03-14 11:05:51 +01:00
irradiance . id = rlLoadTextureCubemap ( NULL , size , PIXELFORMAT_UNCOMPRESSED_R32G32B32 ) ;
2020-11-03 23:47:33 +01:00
2020-09-18 13:50:51 +02:00
unsigned int fbo = rlLoadFramebuffer ( size , size ) ;
rlFramebufferAttach ( fbo , rbo , RL_ATTACHMENT_DEPTH , RL_ATTACHMENT_RENDERBUFFER ) ;
rlFramebufferAttach ( fbo , cubemap . id , RL_ATTACHMENT_COLOR_CHANNEL0 , RL_ATTACHMENT_CUBEMAP_POSITIVE_X ) ;
//------------------------------------------------------------------------------------------
// STEP 2: Draw to framebuffer
//------------------------------------------------------------------------------------------
// NOTE: Shader is used to solve diffuse integral by convolution to create an irradiance cubemap
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
// Define projection matrix and send it to shader
2020-05-01 17:31:44 +02:00
Matrix fboProjection = MatrixPerspective ( 90.0 * DEG2RAD , 1.0 , RL_CULL_DISTANCE_NEAR , RL_CULL_DISTANCE_FAR ) ;
2021-03-14 11:05:51 +01:00
SetShaderValueMatrix ( shader , shader . locs [ SHADER_LOC_MATRIX_PROJECTION ] , fboProjection ) ;
2020-11-03 23:47:33 +01:00
2020-09-18 13:50:51 +02:00
// Define view matrix for every side of the cubemap
2018-07-16 17:53:47 +02:00
Matrix fboViews [ 6 ] = {
2020-09-18 13:50:51 +02:00
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 1.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { - 1.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , 1.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , 1.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , - 1.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , 1.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , - 1.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } )
2018-07-16 17:53:47 +02:00
} ;
2020-11-03 23:47:33 +01:00
2020-09-18 13:50:51 +02:00
rlEnableShader ( shader . id ) ;
2018-07-16 17:53:47 +02:00
glActiveTexture ( GL_TEXTURE0 ) ;
glBindTexture ( GL_TEXTURE_CUBE_MAP , cubemap . id ) ;
2020-09-18 13:50:51 +02:00
rlViewport ( 0 , 0 , size , size ) ; // Set viewport to current fbo dimensions
2018-07-16 17:53:47 +02:00
2019-01-06 21:07:09 +01:00
for ( int i = 0 ; i < 6 ; i + + )
2018-07-16 17:53:47 +02:00
{
2021-03-14 11:05:51 +01:00
SetShaderValueMatrix ( shader , shader . locs [ SHADER_LOC_MATRIX_VIEW ] , fboViews [ i ] ) ;
2020-09-18 13:50:51 +02:00
rlFramebufferAttach ( fbo , irradiance . id , RL_ATTACHMENT_COLOR_CHANNEL0 , RL_ATTACHMENT_CUBEMAP_POSITIVE_X + i ) ;
rlEnableFramebuffer ( fbo ) ;
rlClearScreenBuffers ( ) ;
2018-07-16 17:53:47 +02:00
GenDrawCube ( ) ;
}
2020-09-18 13:50:51 +02:00
//------------------------------------------------------------------------------------------
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
// STEP 3: Unload framebuffer and reset state
//------------------------------------------------------------------------------------------
rlDisableShader ( ) ; // Unbind shader
rlDisableTexture ( ) ; // Unbind texture
rlDisableFramebuffer ( ) ; // Unbind framebuffer
rlUnloadFramebuffer ( fbo ) ; // Unload framebuffer (and automatically attached depth texture/renderbuffer)
2018-07-16 17:53:47 +02:00
// Reset viewport dimensions to default
2020-09-18 13:50:51 +02:00
rlViewport ( 0 , 0 , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight ) ;
2021-02-28 14:31:25 -08:00
rlEnableBackfaceCulling ( ) ;
2020-09-18 13:50:51 +02:00
//------------------------------------------------------------------------------------------
2018-07-16 17:53:47 +02:00
irradiance . width = size ;
irradiance . height = size ;
2019-01-06 21:07:09 +01:00
irradiance . mipmaps = 1 ;
2021-03-14 11:05:51 +01:00
irradiance . format = PIXELFORMAT_UNCOMPRESSED_R32G32B32 ;
2018-07-16 17:53:47 +02:00
# endif
return irradiance ;
}
// Generate prefilter texture using cubemap data
2020-09-18 13:50:51 +02:00
TextureCubemap GenTexturePrefilter ( Shader shader , TextureCubemap cubemap , int size )
2018-07-16 17:53:47 +02:00
{
2020-09-18 13:50:51 +02:00
TextureCubemap prefilter = { 0 } ;
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_33) // || defined(GRAPHICS_API_OPENGL_ES2)
2020-09-18 13:50:51 +02:00
rlDisableBackfaceCulling ( ) ; // Disable backface culling to render inside the cube
2019-02-21 18:45:19 +01:00
2020-09-18 13:50:51 +02:00
// STEP 1: Setup framebuffer
//------------------------------------------------------------------------------------------
unsigned int rbo = rlLoadTextureDepth ( size , size , true ) ;
2021-03-14 11:05:51 +01:00
prefilter . id = rlLoadTextureCubemap ( NULL , size , PIXELFORMAT_UNCOMPRESSED_R32G32B32 ) ;
2021-03-03 19:47:37 +01:00
rlTextureParameters ( prefilter . id , RL_TEXTURE_MIN_FILTER , RL_TEXTURE_FILTER_MIP_LINEAR ) ;
2020-11-03 23:47:33 +01:00
2020-09-18 13:50:51 +02:00
unsigned int fbo = rlLoadFramebuffer ( size , size ) ;
rlFramebufferAttach ( fbo , rbo , RL_ATTACHMENT_DEPTH , RL_ATTACHMENT_RENDERBUFFER ) ;
rlFramebufferAttach ( fbo , cubemap . id , RL_ATTACHMENT_COLOR_CHANNEL0 , RL_ATTACHMENT_CUBEMAP_POSITIVE_X ) ;
//------------------------------------------------------------------------------------------
2018-07-16 17:53:47 +02:00
// Generate mipmaps for the prefiltered HDR texture
glGenerateMipmap ( GL_TEXTURE_CUBE_MAP ) ;
2020-09-18 13:50:51 +02:00
// STEP 2: Draw to framebuffer
//------------------------------------------------------------------------------------------
// NOTE: Shader is used to prefilter HDR and store data into mipmap levels
// Define projection matrix and send it to shader
2020-05-01 17:31:44 +02:00
Matrix fboProjection = MatrixPerspective ( 90.0 * DEG2RAD , 1.0 , RL_CULL_DISTANCE_NEAR , RL_CULL_DISTANCE_FAR ) ;
2021-03-14 11:05:51 +01:00
SetShaderValueMatrix ( shader , shader . locs [ SHADER_LOC_MATRIX_PROJECTION ] , fboProjection ) ;
2020-11-03 23:47:33 +01:00
2020-09-18 13:50:51 +02:00
// Define view matrix for every side of the cubemap
2018-07-16 17:53:47 +02:00
Matrix fboViews [ 6 ] = {
2020-09-18 13:50:51 +02:00
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 1.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { - 1.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , 1.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , 1.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , - 1.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , 1.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } ) ,
MatrixLookAt ( ( Vector3 ) { 0.0f , 0.0f , 0.0f } , ( Vector3 ) { 0.0f , 0.0f , - 1.0f } , ( Vector3 ) { 0.0f , - 1.0f , 0.0f } )
2018-07-16 17:53:47 +02:00
} ;
2020-09-18 13:50:51 +02:00
rlEnableShader ( shader . id ) ;
2018-07-16 17:53:47 +02:00
glActiveTexture ( GL_TEXTURE0 ) ;
glBindTexture ( GL_TEXTURE_CUBE_MAP , cubemap . id ) ;
2020-09-18 13:50:51 +02:00
// TODO: Locations should be taken out of this function... too shader dependant...
int roughnessLoc = GetShaderLocation ( shader , " roughness " ) ;
rlEnableFramebuffer ( fbo ) ;
2018-07-16 17:53:47 +02:00
# define MAX_MIPMAP_LEVELS 5 // Max number of prefilter texture mipmaps
2019-01-06 21:07:09 +01:00
for ( int mip = 0 ; mip < MAX_MIPMAP_LEVELS ; mip + + )
2018-07-16 17:53:47 +02:00
{
// Resize framebuffer according to mip-level size.
2019-01-06 21:07:09 +01:00
unsigned int mipWidth = size * ( int ) powf ( 0.5f , ( float ) mip ) ;
unsigned int mipHeight = size * ( int ) powf ( 0.5f , ( float ) mip ) ;
2020-11-03 23:47:33 +01:00
2020-09-18 13:50:51 +02:00
rlViewport ( 0 , 0 , mipWidth , mipHeight ) ;
2018-07-16 17:53:47 +02:00
glBindRenderbuffer ( GL_RENDERBUFFER , rbo ) ;
glRenderbufferStorage ( GL_RENDERBUFFER , GL_DEPTH_COMPONENT24 , mipWidth , mipHeight ) ;
2020-11-03 23:47:33 +01:00
2018-07-16 17:53:47 +02:00
float roughness = ( float ) mip / ( float ) ( MAX_MIPMAP_LEVELS - 1 ) ;
glUniform1f ( roughnessLoc , roughness ) ;
2019-01-06 21:07:09 +01:00
for ( int i = 0 ; i < 6 ; i + + )
2018-07-16 17:53:47 +02:00
{
2021-03-14 11:05:51 +01:00
SetShaderValueMatrix ( shader , shader . locs [ SHADER_LOC_MATRIX_VIEW ] , fboViews [ i ] ) ;
2018-07-16 17:53:47 +02:00
glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 , GL_TEXTURE_CUBE_MAP_POSITIVE_X + i , prefilter . id , mip ) ;
2020-09-18 13:50:51 +02:00
//rlFramebufferAttach(fbo, irradiance.id, RL_ATTACHMENT_COLOR_CHANNEL0, RL_ATTACHMENT_CUBEMAP_POSITIVE_X + i); // TODO: Support mip levels?
rlEnableFramebuffer ( fbo ) ;
rlClearScreenBuffers ( ) ;
2018-07-16 17:53:47 +02:00
GenDrawCube ( ) ;
}
}
2020-09-18 13:50:51 +02:00
//------------------------------------------------------------------------------------------
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
// STEP 3: Unload framebuffer and reset state
//------------------------------------------------------------------------------------------
rlDisableShader ( ) ; // Unbind shader
rlDisableTexture ( ) ; // Unbind texture
rlDisableFramebuffer ( ) ; // Unbind framebuffer
rlUnloadFramebuffer ( fbo ) ; // Unload framebuffer (and automatically attached depth texture/renderbuffer)
2018-07-16 17:53:47 +02:00
// Reset viewport dimensions to default
2020-09-18 13:50:51 +02:00
rlViewport ( 0 , 0 , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight ) ;
2021-02-28 14:31:25 -08:00
rlEnableBackfaceCulling ( ) ;
2020-09-18 13:50:51 +02:00
//------------------------------------------------------------------------------------------
2018-07-16 17:53:47 +02:00
prefilter . width = size ;
prefilter . height = size ;
2020-09-18 13:50:51 +02:00
//prefilter.mipmaps = 1 + (int)floor(log(size)/log(2)); // MAX_MIPMAP_LEVELS
2021-03-14 11:05:51 +01:00
//prefilter.format = PIXELFORMAT_UNCOMPRESSED_R32G32B32;
2018-07-16 17:53:47 +02:00
# endif
return prefilter ;
}
// Generate BRDF texture using cubemap data
2019-01-06 15:49:29 +01:00
// TODO: Review implementation: https://github.com/HectorMF/BRDFGenerator
2019-01-05 19:24:42 +01:00
Texture2D GenTextureBRDF ( Shader shader , int size )
2018-07-16 17:53:47 +02:00
{
Texture2D brdf = { 0 } ;
2019-01-05 19:24:42 +01:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-09-18 13:50:51 +02:00
// STEP 1: Setup framebuffer
//------------------------------------------------------------------------------------------
unsigned int rbo = rlLoadTextureDepth ( size , size , true ) ;
2021-03-14 11:05:51 +01:00
brdf . id = rlLoadTexture ( NULL , size , size , PIXELFORMAT_UNCOMPRESSED_R32G32B32 , 1 ) ;
2019-01-05 19:24:42 +01:00
2020-09-18 13:50:51 +02:00
unsigned int fbo = rlLoadFramebuffer ( size , size ) ;
rlFramebufferAttach ( fbo , rbo , RL_ATTACHMENT_DEPTH , RL_ATTACHMENT_RENDERBUFFER ) ;
rlFramebufferAttach ( fbo , brdf . id , RL_ATTACHMENT_COLOR_CHANNEL0 , RL_ATTACHMENT_TEXTURE2D ) ;
//------------------------------------------------------------------------------------------
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
// STEP 2: Draw to framebuffer
//------------------------------------------------------------------------------------------
// NOTE: Render BRDF LUT into a quad using FBO
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
rlEnableShader ( shader . id ) ;
2018-07-16 17:53:47 +02:00
2020-09-18 13:50:51 +02:00
rlViewport ( 0 , 0 , size , size ) ;
2020-11-03 23:47:33 +01:00
2020-09-18 13:50:51 +02:00
rlEnableFramebuffer ( fbo ) ;
rlClearScreenBuffers ( ) ;
GenDrawQuad ( ) ;
//------------------------------------------------------------------------------------------
2019-02-21 18:45:19 +01:00
2020-09-18 13:50:51 +02:00
// STEP 3: Unload framebuffer and reset state
//------------------------------------------------------------------------------------------
rlDisableShader ( ) ; // Unbind shader
rlDisableTexture ( ) ; // Unbind texture
rlDisableFramebuffer ( ) ; // Unbind framebuffer
rlUnloadFramebuffer ( fbo ) ; // Unload framebuffer (and automatically attached depth texture/renderbuffer)
2018-07-16 17:53:47 +02:00
// Reset viewport dimensions to default
2020-09-18 13:50:51 +02:00
rlViewport ( 0 , 0 , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight ) ;
//------------------------------------------------------------------------------------------
2018-07-16 17:53:47 +02:00
brdf . width = size ;
brdf . height = size ;
2019-01-06 15:49:29 +01:00
brdf . mipmaps = 1 ;
2021-03-14 11:05:51 +01:00
brdf . format = PIXELFORMAT_UNCOMPRESSED_R32G32B32 ;
2018-07-16 17:53:47 +02:00
# endif
return brdf ;
}
// Begin blending mode (alpha, additive, multiplied)
// NOTE: Only 3 blending modes supported, default blend mode is alpha
void BeginBlendMode ( int mode )
{
2020-09-15 11:30:20 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-09-01 21:02:19 +02:00
if ( RLGL . State . currentBlendMode ! = mode )
2018-07-16 17:53:47 +02:00
{
2020-09-25 18:19:19 +02:00
DrawRenderBatch ( RLGL . currentBatch ) ;
2020-09-01 21:02:19 +02:00
2018-07-16 17:53:47 +02:00
switch ( mode )
{
2020-11-03 23:47:33 +01:00
case BLEND_ALPHA : glBlendFunc ( GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA ) ; glBlendEquation ( GL_FUNC_ADD ) ; break ;
case BLEND_ADDITIVE : glBlendFunc ( GL_SRC_ALPHA , GL_ONE ) ; glBlendEquation ( GL_FUNC_ADD ) ; break ;
2020-09-01 21:02:19 +02:00
case BLEND_MULTIPLIED : glBlendFunc ( GL_DST_COLOR , GL_ONE_MINUS_SRC_ALPHA ) ; glBlendEquation ( GL_FUNC_ADD ) ; break ;
case BLEND_ADD_COLORS : glBlendFunc ( GL_ONE , GL_ONE ) ; glBlendEquation ( GL_FUNC_ADD ) ; break ;
case BLEND_SUBTRACT_COLORS : glBlendFunc ( GL_ONE , GL_ONE ) ; glBlendEquation ( GL_FUNC_SUBTRACT ) ; break ;
case BLEND_CUSTOM : glBlendFunc ( RLGL . State . glBlendSrcFactor , RLGL . State . glBlendDstFactor ) ; glBlendEquation ( RLGL . State . glBlendEquation ) ; break ;
default : break ;
2018-07-16 17:53:47 +02:00
}
2020-11-03 23:47:33 +01:00
2020-09-01 21:02:19 +02:00
RLGL . State . currentBlendMode = mode ;
2018-07-16 17:53:47 +02:00
}
2020-09-15 11:30:20 +02:00
# endif
2018-07-16 17:53:47 +02:00
}
// End blending mode (reset to default: alpha blending)
void EndBlendMode ( void )
{
BeginBlendMode ( BLEND_ALPHA ) ;
}
# if defined(SUPPORT_VR_SIMULATOR)
// Init VR simulator for selected device parameters
2020-09-18 02:11:49 +02:00
// NOTE: It modifies the global variable: RLGL.Vr.stereoFboId
2019-04-11 13:53:01 +02:00
void InitVrSimulator ( void )
2018-07-16 17:53:47 +02:00
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2019-04-11 13:53:01 +02:00
// Initialize framebuffer and textures for stereo rendering
// NOTE: Screen size should match HMD aspect ratio
2020-09-18 02:11:49 +02:00
RLGL . Vr . stereoFboId = rlLoadFramebuffer ( RLGL . State . framebufferWidth , RLGL . State . framebufferHeight ) ;
// Load color/depth textures to attach to framebuffer
2021-03-14 11:05:51 +01:00
RLGL . Vr . stereoTexId = rlLoadTexture ( NULL , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight , PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 , 1 ) ;
2020-09-18 02:11:49 +02:00
unsigned int depthId = rlLoadTextureDepth ( RLGL . State . framebufferWidth , RLGL . State . framebufferHeight , true ) ;
// Attach color texture and depth renderbuffer/texture to FBO
2020-09-18 11:37:57 +02:00
rlFramebufferAttach ( RLGL . Vr . stereoFboId , RLGL . Vr . stereoTexId , RL_ATTACHMENT_COLOR_CHANNEL0 , RL_ATTACHMENT_TEXTURE2D ) ;
rlFramebufferAttach ( RLGL . Vr . stereoFboId , depthId , RL_ATTACHMENT_DEPTH , RL_ATTACHMENT_RENDERBUFFER ) ;
2019-05-08 18:33:09 +02:00
2020-02-03 18:31:30 +01:00
RLGL . Vr . simulatorReady = true ;
2019-04-11 13:53:01 +02:00
# else
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " RLGL: VR Simulator not supported on OpenGL 1.1 " ) ;
2018-07-16 17:53:47 +02:00
# endif
}
2019-02-06 14:21:44 +01:00
// Update VR tracking (position and orientation) and camera
// NOTE: Camera (position, target, up) gets update with head tracking information
void UpdateVrTracking ( Camera * camera )
{
// TODO: Simulate 1st person camera system
}
2018-07-16 17:53:47 +02:00
// Close VR simulator for current device
void CloseVrSimulator ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-11-03 23:47:33 +01:00
if ( RLGL . Vr . simulatorReady )
2020-09-18 02:11:49 +02:00
{
rlUnloadTexture ( RLGL . Vr . stereoTexId ) ; // Unload color texture
rlUnloadFramebuffer ( RLGL . Vr . stereoFboId ) ; // Unload stereo framebuffer and depth texture/renderbuffer
}
2019-04-11 13:53:01 +02:00
# endif
}
2019-05-08 18:33:09 +02:00
// Set stereo rendering configuration parameters
2019-04-11 13:53:01 +02:00
void SetVrConfiguration ( VrDeviceInfo hmd , Shader distortion )
{
2019-04-23 15:12:08 +02:00
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
// Reset RLGL.Vr.config for a new values assignment
memset ( & RLGL . Vr . config , 0 , sizeof ( RLGL . Vr . config ) ) ;
2019-05-08 18:33:09 +02:00
2019-04-11 13:53:01 +02:00
// Assign distortion shader
2020-02-03 18:31:30 +01:00
RLGL . Vr . config . distortionShader = distortion ;
2019-04-11 13:53:01 +02:00
// Compute aspect ratio
float aspect = ( ( float ) hmd . hResolution * 0.5f ) / ( float ) hmd . vResolution ;
// Compute lens parameters
float lensShift = ( hmd . hScreenSize * 0.25f - hmd . lensSeparationDistance * 0.5f ) / hmd . hScreenSize ;
float leftLensCenter [ 2 ] = { 0.25f + lensShift , 0.5f } ;
float rightLensCenter [ 2 ] = { 0.75f - lensShift , 0.5f } ;
float leftScreenCenter [ 2 ] = { 0.25f , 0.5f } ;
float rightScreenCenter [ 2 ] = { 0.75f , 0.5f } ;
// Compute distortion scale parameters
// NOTE: To get lens max radius, lensShift must be normalized to [-1..1]
2020-02-28 12:54:39 +01:00
float lensRadius = fabsf ( - 1.0f - 4.0f * lensShift ) ;
2019-04-11 13:53:01 +02:00
float lensRadiusSq = lensRadius * lensRadius ;
float distortionScale = hmd . lensDistortionValues [ 0 ] +
hmd . lensDistortionValues [ 1 ] * lensRadiusSq +
hmd . lensDistortionValues [ 2 ] * lensRadiusSq * lensRadiusSq +
hmd . lensDistortionValues [ 3 ] * lensRadiusSq * lensRadiusSq * lensRadiusSq ;
2020-03-27 18:31:36 +01:00
TRACELOGD ( " RLGL: VR device configuration: " ) ;
TRACELOGD ( " > Distortion Scale: %f " , distortionScale ) ;
2019-04-11 13:53:01 +02:00
float normScreenWidth = 0.5f ;
float normScreenHeight = 1.0f ;
float scaleIn [ 2 ] = { 2.0f / normScreenWidth , 2.0f / normScreenHeight / aspect } ;
float scale [ 2 ] = { normScreenWidth * 0.5f / distortionScale , normScreenHeight * 0.5f * aspect / distortionScale } ;
2020-03-27 18:31:36 +01:00
TRACELOGD ( " > Distortion Shader: LeftLensCenter = { %f, %f } " , leftLensCenter [ 0 ] , leftLensCenter [ 1 ] ) ;
TRACELOGD ( " > Distortion Shader: RightLensCenter = { %f, %f } " , rightLensCenter [ 0 ] , rightLensCenter [ 1 ] ) ;
TRACELOGD ( " > Distortion Shader: Scale = { %f, %f } " , scale [ 0 ] , scale [ 1 ] ) ;
TRACELOGD ( " > Distortion Shader: ScaleIn = { %f, %f } " , scaleIn [ 0 ] , scaleIn [ 1 ] ) ;
2019-04-11 13:53:01 +02:00
2020-02-04 16:55:24 +01:00
// Fovy is normally computed with: 2*atan2f(hmd.vScreenSize, 2*hmd.eyeToScreenDistance)
2019-04-11 13:53:01 +02:00
// ...but with lens distortion it is increased (see Oculus SDK Documentation)
2020-02-04 16:55:24 +01:00
//float fovy = 2.0f*atan2f(hmd.vScreenSize*0.5f*distortionScale, hmd.eyeToScreenDistance); // Really need distortionScale?
float fovy = 2.0f * ( float ) atan2f ( hmd . vScreenSize * 0.5f , hmd . eyeToScreenDistance ) ;
2019-04-11 13:53:01 +02:00
// Compute camera projection matrices
float projOffset = 4.0f * lensShift ; // Scaled to projection space coordinates [-1..1]
2020-05-01 17:31:44 +02:00
Matrix proj = MatrixPerspective ( fovy , aspect , RL_CULL_DISTANCE_NEAR , RL_CULL_DISTANCE_FAR ) ;
2020-02-03 18:31:30 +01:00
RLGL . Vr . config . eyesProjection [ 0 ] = MatrixMultiply ( proj , MatrixTranslate ( projOffset , 0.0f , 0.0f ) ) ;
RLGL . Vr . config . eyesProjection [ 1 ] = MatrixMultiply ( proj , MatrixTranslate ( - projOffset , 0.0f , 0.0f ) ) ;
2019-04-11 13:53:01 +02:00
// Compute camera transformation matrices
// NOTE: Camera movement might seem more natural if we model the head.
// Our axis of rotation is the base of our head, so we might want to add
// some y (base of head to eye level) and -z (center of head to eye protrusion) to the camera positions.
2020-02-03 18:31:30 +01:00
RLGL . Vr . config . eyesViewOffset [ 0 ] = MatrixTranslate ( - hmd . interpupillaryDistance * 0.5f , 0.075f , 0.045f ) ;
RLGL . Vr . config . eyesViewOffset [ 1 ] = MatrixTranslate ( hmd . interpupillaryDistance * 0.5f , 0.075f , 0.045f ) ;
2019-04-11 13:53:01 +02:00
// Compute eyes Viewports
2020-02-03 18:31:30 +01:00
RLGL . Vr . config . eyeViewportRight [ 2 ] = hmd . hResolution / 2 ;
RLGL . Vr . config . eyeViewportRight [ 3 ] = hmd . vResolution ;
2019-05-08 18:33:09 +02:00
2020-02-03 18:31:30 +01:00
RLGL . Vr . config . eyeViewportLeft [ 0 ] = hmd . hResolution / 2 ;
RLGL . Vr . config . eyeViewportLeft [ 1 ] = 0 ;
RLGL . Vr . config . eyeViewportLeft [ 2 ] = hmd . hResolution / 2 ;
RLGL . Vr . config . eyeViewportLeft [ 3 ] = hmd . vResolution ;
2019-04-11 13:53:01 +02:00
2020-02-03 18:31:30 +01:00
if ( RLGL . Vr . config . distortionShader . id > 0 )
2018-07-16 17:53:47 +02:00
{
2019-04-11 13:53:01 +02:00
// Update distortion shader with lens and distortion-scale parameters
2021-03-14 11:05:51 +01:00
SetShaderValue ( RLGL . Vr . config . distortionShader , GetShaderLocation ( RLGL . Vr . config . distortionShader , " leftLensCenter " ) , leftLensCenter , SHADER_UNIFORM_VEC2 ) ;
SetShaderValue ( RLGL . Vr . config . distortionShader , GetShaderLocation ( RLGL . Vr . config . distortionShader , " rightLensCenter " ) , rightLensCenter , SHADER_UNIFORM_VEC2 ) ;
SetShaderValue ( RLGL . Vr . config . distortionShader , GetShaderLocation ( RLGL . Vr . config . distortionShader , " leftScreenCenter " ) , leftScreenCenter , SHADER_UNIFORM_VEC2 ) ;
SetShaderValue ( RLGL . Vr . config . distortionShader , GetShaderLocation ( RLGL . Vr . config . distortionShader , " rightScreenCenter " ) , rightScreenCenter , SHADER_UNIFORM_VEC2 ) ;
SetShaderValue ( RLGL . Vr . config . distortionShader , GetShaderLocation ( RLGL . Vr . config . distortionShader , " scale " ) , scale , SHADER_UNIFORM_VEC2 ) ;
SetShaderValue ( RLGL . Vr . config . distortionShader , GetShaderLocation ( RLGL . Vr . config . distortionShader , " scaleIn " ) , scaleIn , SHADER_UNIFORM_VEC2 ) ;
SetShaderValue ( RLGL . Vr . config . distortionShader , GetShaderLocation ( RLGL . Vr . config . distortionShader , " hmdWarpParam " ) , hmd . lensDistortionValues , SHADER_UNIFORM_VEC4 ) ;
SetShaderValue ( RLGL . Vr . config . distortionShader , GetShaderLocation ( RLGL . Vr . config . distortionShader , " chromaAbParam " ) , hmd . chromaAbCorrection , SHADER_UNIFORM_VEC4 ) ;
2018-07-16 17:53:47 +02:00
}
2019-04-23 15:12:08 +02:00
# endif
2018-07-16 17:53:47 +02:00
}
// Detect if VR simulator is running
bool IsVrSimulatorReady ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
return RLGL . Vr . simulatorReady ;
2018-07-16 17:53:47 +02:00
# else
return false ;
# endif
}
// Enable/Disable VR experience (device or simulator)
void ToggleVrMode ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
RLGL . Vr . simulatorReady = ! RLGL . Vr . simulatorReady ;
2018-07-16 17:53:47 +02:00
2020-02-03 18:31:30 +01:00
if ( ! RLGL . Vr . simulatorReady )
2018-07-16 17:53:47 +02:00
{
2020-02-03 18:31:30 +01:00
RLGL . Vr . stereoRender = false ;
2018-07-16 17:53:47 +02:00
// Reset viewport and default projection-modelview matrices
2020-02-03 18:31:30 +01:00
rlViewport ( 0 , 0 , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight ) ;
RLGL . State . projection = MatrixOrtho ( 0.0 , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight , 0.0 , 0.0 , 1.0 ) ;
RLGL . State . modelview = MatrixIdentity ( ) ;
2018-07-16 17:53:47 +02:00
}
2020-02-03 18:31:30 +01:00
else RLGL . Vr . stereoRender = true ;
2018-07-16 17:53:47 +02:00
# endif
}
2019-04-28 16:03:59 +02:00
// Begin VR drawing configuration
2018-07-16 17:53:47 +02:00
void BeginVrDrawing ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
if ( RLGL . Vr . simulatorReady )
2018-07-16 17:53:47 +02:00
{
2020-09-18 02:11:49 +02:00
rlEnableFramebuffer ( RLGL . Vr . stereoFboId ) ; // Setup framebuffer for stereo rendering
//glEnable(GL_FRAMEBUFFER_SRGB); // Enable SRGB framebuffer (only if required)
2018-07-16 17:53:47 +02:00
2020-09-18 02:11:49 +02:00
//rlViewport(0, 0, buffer.width, buffer.height); // Useful if rendering to separate framebuffers (every eye)
rlClearScreenBuffers ( ) ; // Clear current framebuffer
2018-07-16 17:53:47 +02:00
2020-02-03 18:31:30 +01:00
RLGL . Vr . stereoRender = true ;
2018-07-16 17:53:47 +02:00
}
# endif
}
2019-04-28 16:03:59 +02:00
// End VR drawing process (and desktop mirror)
2018-07-16 17:53:47 +02:00
void EndVrDrawing ( void )
{
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
2020-02-03 18:31:30 +01:00
if ( RLGL . Vr . simulatorReady )
2018-07-16 17:53:47 +02:00
{
2020-09-18 02:11:49 +02:00
RLGL . Vr . stereoRender = false ; // Disable stereo render
2018-07-16 17:53:47 +02:00
2020-09-18 02:11:49 +02:00
rlDisableFramebuffer ( ) ; // Unbind current framebuffer
2018-07-16 17:53:47 +02:00
rlClearScreenBuffers ( ) ; // Clear current framebuffer
// Set viewport to default framebuffer size (screen size)
2020-02-03 18:31:30 +01:00
rlViewport ( 0 , 0 , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight ) ;
2018-07-16 17:53:47 +02:00
// Let rlgl reconfigure internal matrices
rlMatrixMode ( RL_PROJECTION ) ; // Enable internal projection matrix
rlLoadIdentity ( ) ; // Reset internal projection matrix
2020-02-03 18:31:30 +01:00
rlOrtho ( 0.0 , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight , 0.0 , 0.0 , 1.0 ) ; // Recalculate internal RLGL.State.projection matrix
2018-07-16 17:53:47 +02:00
rlMatrixMode ( RL_MODELVIEW ) ; // Enable internal modelview matrix
rlLoadIdentity ( ) ; // Reset internal modelview matrix
2020-09-18 02:11:49 +02:00
// Draw stereo framebuffer texture using distortion shader if available
2020-02-03 18:31:30 +01:00
if ( RLGL . Vr . config . distortionShader . id > 0 ) RLGL . State . currentShader = RLGL . Vr . config . distortionShader ;
else RLGL . State . currentShader = GetShaderDefault ( ) ;
2019-04-11 13:53:01 +02:00
2020-09-18 02:11:49 +02:00
rlEnableTexture ( RLGL . Vr . stereoTexId ) ;
2018-07-16 17:53:47 +02:00
rlPushMatrix ( ) ;
rlBegin ( RL_QUADS ) ;
rlColor4ub ( 255 , 255 , 255 , 255 ) ;
rlNormal3f ( 0.0f , 0.0f , 1.0f ) ;
// Bottom-left corner for texture and quad
rlTexCoord2f ( 0.0f , 1.0f ) ;
rlVertex2f ( 0.0f , 0.0f ) ;
// Bottom-right corner for texture and quad
rlTexCoord2f ( 0.0f , 0.0f ) ;
2020-09-18 02:11:49 +02:00
rlVertex2f ( 0.0f , ( float ) RLGL . State . framebufferHeight ) ;
2018-07-16 17:53:47 +02:00
// Top-right corner for texture and quad
rlTexCoord2f ( 1.0f , 0.0f ) ;
2020-09-18 02:11:49 +02:00
rlVertex2f ( ( float ) RLGL . State . framebufferWidth , ( float ) RLGL . State . framebufferHeight ) ;
2018-07-16 17:53:47 +02:00
// Top-left corner for texture and quad
rlTexCoord2f ( 1.0f , 1.0f ) ;
2020-09-18 02:11:49 +02:00
rlVertex2f ( ( float ) RLGL . State . framebufferWidth , 0.0f ) ;
2018-07-16 17:53:47 +02:00
rlEnd ( ) ;
rlPopMatrix ( ) ;
rlDisableTexture ( ) ;
// Update and draw render texture fbo with distortion to backbuffer
2020-05-01 17:34:43 +02:00
DrawRenderBatch ( RLGL . currentBatch ) ;
2018-07-16 17:53:47 +02:00
2020-02-03 18:31:30 +01:00
// Restore RLGL.State.defaultShader
RLGL . State . currentShader = RLGL . State . defaultShader ;
2018-07-16 17:53:47 +02:00
// Reset viewport and default projection-modelview matrices
2020-02-03 18:31:30 +01:00
rlViewport ( 0 , 0 , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight ) ;
RLGL . State . projection = MatrixOrtho ( 0.0 , RLGL . State . framebufferWidth , RLGL . State . framebufferHeight , 0.0 , 0.0 , 1.0 ) ;
RLGL . State . modelview = MatrixIdentity ( ) ;
2018-07-16 17:53:47 +02:00
rlDisableDepthTest ( ) ;
}
# endif
}
# endif // SUPPORT_VR_SIMULATOR
//----------------------------------------------------------------------------------
// Module specific Functions Definition
//----------------------------------------------------------------------------------
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
// Compile custom shader and return shader id
static unsigned int CompileShader ( const char * shaderStr , int type )
{
unsigned int shader = glCreateShader ( type ) ;
glShaderSource ( shader , 1 , & shaderStr , NULL ) ;
GLint success = 0 ;
glCompileShader ( shader ) ;
glGetShaderiv ( shader , GL_COMPILE_STATUS , & success ) ;
2021-03-02 02:03:52 +01:00
if ( success = = GL_FALSE )
2018-07-16 17:53:47 +02:00
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " SHADER: [ID %i] Failed to compile shader code " , shader ) ;
2021-03-02 02:03:52 +01:00
2018-07-16 17:53:47 +02:00
int maxLength = 0 ;
glGetShaderiv ( shader , GL_INFO_LOG_LENGTH , & maxLength ) ;
2021-03-02 02:03:52 +01:00
if ( maxLength > 0 )
{
int length = 0 ;
char * log = RL_CALLOC ( maxLength , sizeof ( char ) ) ;
glGetShaderInfoLog ( shader , maxLength , & length , log ) ;
TRACELOG ( LOG_WARNING , " SHADER: [ID %i] Compile error: %s " , shader , log ) ;
RL_FREE ( log ) ;
}
2018-07-16 17:53:47 +02:00
}
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_INFO , " SHADER: [ID %i] Compiled successfully " , shader ) ;
2018-07-16 17:53:47 +02:00
return shader ;
}
// Load custom shader strings and return program id
static unsigned int LoadShaderProgram ( unsigned int vShaderId , unsigned int fShaderId )
{
unsigned int program = 0 ;
# if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
GLint success = 0 ;
program = glCreateProgram ( ) ;
glAttachShader ( program , vShaderId ) ;
glAttachShader ( program , fShaderId ) ;
// NOTE: Default attribute shader locations must be binded before linking
2020-05-01 17:31:44 +02:00
glBindAttribLocation ( program , 0 , DEFAULT_SHADER_ATTRIB_NAME_POSITION ) ;
glBindAttribLocation ( program , 1 , DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD ) ;
glBindAttribLocation ( program , 2 , DEFAULT_SHADER_ATTRIB_NAME_NORMAL ) ;
glBindAttribLocation ( program , 3 , DEFAULT_SHADER_ATTRIB_NAME_COLOR ) ;
glBindAttribLocation ( program , 4 , DEFAULT_SHADER_ATTRIB_NAME_TANGENT ) ;
glBindAttribLocation ( program , 5 , DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD2 ) ;
2018-07-16 17:53:47 +02:00
// NOTE: If some attrib name is no found on the shader, it locations becomes -1
glLinkProgram ( program ) ;
// NOTE: All uniform variables are intitialised to 0 when a program links
glGetProgramiv ( program , GL_LINK_STATUS , & success ) ;
if ( success = = GL_FALSE )
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_WARNING , " SHADER: [ID %i] Failed to link shader program " , program ) ;
2018-07-16 17:53:47 +02:00
int maxLength = 0 ;
glGetProgramiv ( program , GL_INFO_LOG_LENGTH , & maxLength ) ;
2021-02-02 12:33:01 +01:00
if ( maxLength > 0 )
{
2021-03-02 02:03:52 +01:00
int length = 0 ;
2021-02-02 12:33:01 +01:00
char * log = RL_CALLOC ( maxLength , sizeof ( char ) ) ;
glGetProgramInfoLog ( program , maxLength , & length , log ) ;
TRACELOG ( LOG_WARNING , " SHADER: [ID %i] Link error: %s " , program , log ) ;
RL_FREE ( log ) ;
}
2018-07-16 17:53:47 +02:00
glDeleteProgram ( program ) ;
program = 0 ;
}
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_INFO , " SHADER: [ID %i] Program loaded successfully " , program ) ;
2018-07-16 17:53:47 +02:00
# endif
return program ;
}
// Load default shader (just vertex positioning and texture coloring)
2018-12-11 18:54:48 +01:00
// NOTE: This shader program is used for internal buffers
2018-07-16 17:53:47 +02:00
static Shader LoadShaderDefault ( void )
{
Shader shader = { 0 } ;
2019-08-27 10:56:49 +02:00
shader . locs = ( int * ) RL_CALLOC ( MAX_SHADER_LOCATIONS , sizeof ( int ) ) ;
2018-07-16 17:53:47 +02:00
// NOTE: All locations must be reseted to -1 (no location)
for ( int i = 0 ; i < MAX_SHADER_LOCATIONS ; i + + ) shader . locs [ i ] = - 1 ;
// Vertex shader directly defined, no external file required
2019-09-25 16:45:17 +02:00
const char * defaultVShaderStr =
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_21)
" #version 120 \n "
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2018-07-16 17:53:47 +02:00
" #version 100 \n "
# endif
# if defined(GRAPHICS_API_OPENGL_ES2) || defined(GRAPHICS_API_OPENGL_21)
" attribute vec3 vertexPosition; \n "
" attribute vec2 vertexTexCoord; \n "
" attribute vec4 vertexColor; \n "
" varying vec2 fragTexCoord; \n "
" varying vec4 fragColor; \n "
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33)
2018-07-16 17:53:47 +02:00
" #version 330 \n "
" in vec3 vertexPosition; \n "
" in vec2 vertexTexCoord; \n "
" in vec4 vertexColor; \n "
" out vec2 fragTexCoord; \n "
" out vec4 fragColor; \n "
# endif
" uniform mat4 mvp; \n "
" void main() \n "
" { \n "
" fragTexCoord = vertexTexCoord; \n "
" fragColor = vertexColor; \n "
" gl_Position = mvp*vec4(vertexPosition, 1.0); \n "
" } \n " ;
// Fragment shader directly defined, no external file required
2019-09-25 16:45:17 +02:00
const char * defaultFShaderStr =
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_21)
" #version 120 \n "
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2018-07-16 17:53:47 +02:00
" #version 100 \n "
" precision mediump float; \n " // precision required for OpenGL ES2 (WebGL)
# endif
# if defined(GRAPHICS_API_OPENGL_ES2) || defined(GRAPHICS_API_OPENGL_21)
" varying vec2 fragTexCoord; \n "
" varying vec4 fragColor; \n "
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33)
2018-07-16 17:53:47 +02:00
" #version 330 \n "
" in vec2 fragTexCoord; \n "
" in vec4 fragColor; \n "
" out vec4 finalColor; \n "
# endif
" uniform sampler2D texture0; \n "
" uniform vec4 colDiffuse; \n "
" void main() \n "
" { \n "
# if defined(GRAPHICS_API_OPENGL_ES2) || defined(GRAPHICS_API_OPENGL_21)
" vec4 texelColor = texture2D(texture0, fragTexCoord); \n " // NOTE: texture2D() is deprecated on OpenGL 3.3 and ES 3.0
" gl_FragColor = texelColor*colDiffuse*fragColor; \n "
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_33)
2018-07-16 17:53:47 +02:00
" vec4 texelColor = texture(texture0, fragTexCoord); \n "
" finalColor = texelColor*colDiffuse*fragColor; \n "
# endif
" } \n " ;
// NOTE: Compiled vertex/fragment shaders are kept for re-use
2020-02-03 18:31:30 +01:00
RLGL . State . defaultVShaderId = CompileShader ( defaultVShaderStr , GL_VERTEX_SHADER ) ; // Compile default vertex shader
RLGL . State . defaultFShaderId = CompileShader ( defaultFShaderStr , GL_FRAGMENT_SHADER ) ; // Compile default fragment shader
2018-07-16 17:53:47 +02:00
2020-02-03 18:31:30 +01:00
shader . id = LoadShaderProgram ( RLGL . State . defaultVShaderId , RLGL . State . defaultFShaderId ) ;
2018-07-16 17:53:47 +02:00
if ( shader . id > 0 )
{
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_INFO , " SHADER: [ID %i] Default shader loaded successfully " , shader . id ) ;
2018-07-16 17:53:47 +02:00
// Set default shader locations: attributes locations
2021-03-14 11:05:51 +01:00
shader . locs [ SHADER_LOC_VERTEX_POSITION ] = glGetAttribLocation ( shader . id , " vertexPosition " ) ;
shader . locs [ SHADER_LOC_VERTEX_TEXCOORD01 ] = glGetAttribLocation ( shader . id , " vertexTexCoord " ) ;
shader . locs [ SHADER_LOC_VERTEX_COLOR ] = glGetAttribLocation ( shader . id , " vertexColor " ) ;
2018-07-16 17:53:47 +02:00
// Set default shader locations: uniform locations
2021-03-14 11:05:51 +01:00
shader . locs [ SHADER_LOC_MATRIX_MVP ] = glGetUniformLocation ( shader . id , " mvp " ) ;
shader . locs [ SHADER_LOC_COLOR_DIFFUSE ] = glGetUniformLocation ( shader . id , " colDiffuse " ) ;
shader . locs [ SHADER_LOC_MAP_DIFFUSE ] = glGetUniformLocation ( shader . id , " texture0 " ) ;
2018-07-16 17:53:47 +02:00
// NOTE: We could also use below function but in case DEFAULT_ATTRIB_* points are
// changed for external custom shaders, we just use direct bindings above
//SetShaderDefaultLocations(&shader);
}
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_WARNING , " SHADER: [ID %i] Failed to load default shader " , shader . id ) ;
2018-07-16 17:53:47 +02:00
return shader ;
}
// Get location handlers to for shader attributes and uniforms
// NOTE: If any location is not found, loc point becomes -1
static void SetShaderDefaultLocations ( Shader * shader )
{
// NOTE: Default shader attrib locations have been fixed before linking:
// vertex position location = 0
// vertex texcoord location = 1
// vertex normal location = 2
// vertex color location = 3
// vertex tangent location = 4
// vertex texcoord2 location = 5
// Get handles to GLSL input attibute locations
2021-03-14 11:05:51 +01:00
shader - > locs [ SHADER_LOC_VERTEX_POSITION ] = glGetAttribLocation ( shader - > id , DEFAULT_SHADER_ATTRIB_NAME_POSITION ) ;
shader - > locs [ SHADER_LOC_VERTEX_TEXCOORD01 ] = glGetAttribLocation ( shader - > id , DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD ) ;
shader - > locs [ SHADER_LOC_VERTEX_TEXCOORD02 ] = glGetAttribLocation ( shader - > id , DEFAULT_SHADER_ATTRIB_NAME_TEXCOORD2 ) ;
shader - > locs [ SHADER_LOC_VERTEX_NORMAL ] = glGetAttribLocation ( shader - > id , DEFAULT_SHADER_ATTRIB_NAME_NORMAL ) ;
shader - > locs [ SHADER_LOC_VERTEX_TANGENT ] = glGetAttribLocation ( shader - > id , DEFAULT_SHADER_ATTRIB_NAME_TANGENT ) ;
shader - > locs [ SHADER_LOC_VERTEX_COLOR ] = glGetAttribLocation ( shader - > id , DEFAULT_SHADER_ATTRIB_NAME_COLOR ) ;
2018-07-16 17:53:47 +02:00
// Get handles to GLSL uniform locations (vertex shader)
2021-03-14 11:05:51 +01:00
shader - > locs [ SHADER_LOC_MATRIX_MVP ] = glGetUniformLocation ( shader - > id , " mvp " ) ;
shader - > locs [ SHADER_LOC_MATRIX_PROJECTION ] = glGetUniformLocation ( shader - > id , " projection " ) ;
shader - > locs [ SHADER_LOC_MATRIX_VIEW ] = glGetUniformLocation ( shader - > id , " view " ) ;
2018-07-16 17:53:47 +02:00
// Get handles to GLSL uniform locations (fragment shader)
2021-03-14 11:05:51 +01:00
shader - > locs [ SHADER_LOC_COLOR_DIFFUSE ] = glGetUniformLocation ( shader - > id , " colDiffuse " ) ;
shader - > locs [ SHADER_LOC_MAP_DIFFUSE ] = glGetUniformLocation ( shader - > id , " texture0 " ) ;
shader - > locs [ SHADER_LOC_MAP_SPECULAR ] = glGetUniformLocation ( shader - > id , " texture1 " ) ;
shader - > locs [ SHADER_LOC_MAP_NORMAL ] = glGetUniformLocation ( shader - > id , " texture2 " ) ;
2018-07-16 17:53:47 +02:00
}
// Unload default shader
static void UnloadShaderDefault ( void )
{
glUseProgram ( 0 ) ;
2020-02-03 18:31:30 +01:00
glDetachShader ( RLGL . State . defaultShader . id , RLGL . State . defaultVShaderId ) ;
glDetachShader ( RLGL . State . defaultShader . id , RLGL . State . defaultFShaderId ) ;
glDeleteShader ( RLGL . State . defaultVShaderId ) ;
glDeleteShader ( RLGL . State . defaultFShaderId ) ;
2018-07-16 17:53:47 +02:00
2020-02-03 18:31:30 +01:00
glDeleteProgram ( RLGL . State . defaultShader . id ) ;
2020-07-09 11:42:20 -07:00
RL_FREE ( RLGL . State . defaultShader . locs ) ;
2018-07-16 17:53:47 +02:00
}
2020-05-01 17:34:43 +02:00
// Load render batch
static RenderBatch LoadRenderBatch ( int numBuffers , int bufferElements )
2018-07-16 17:53:47 +02:00
{
2020-05-01 17:34:43 +02:00
RenderBatch batch = { 0 } ;
2020-11-03 23:47:33 +01:00
2020-05-01 17:34:43 +02:00
// Initialize CPU (RAM) vertex buffers (position, texcoord, color data and indexes)
2018-07-16 17:53:47 +02:00
//--------------------------------------------------------------------------------------------
2020-05-01 17:34:43 +02:00
batch . vertexBuffer = ( VertexBuffer * ) RL_MALLOC ( sizeof ( VertexBuffer ) * numBuffers ) ;
2020-11-03 23:47:33 +01:00
2020-05-01 17:34:43 +02:00
for ( int i = 0 ; i < numBuffers ; i + + )
2018-12-11 18:54:48 +01:00
{
2020-05-01 17:34:43 +02:00
batch . vertexBuffer [ i ] . elementsCount = bufferElements ;
2020-11-03 23:47:33 +01:00
2020-05-23 19:23:40 +02:00
batch . vertexBuffer [ i ] . vertices = ( float * ) RL_MALLOC ( bufferElements * 3 * 4 * sizeof ( float ) ) ; // 3 float by vertex, 4 vertex by quad
batch . vertexBuffer [ i ] . texcoords = ( float * ) RL_MALLOC ( bufferElements * 2 * 4 * sizeof ( float ) ) ; // 2 float by texcoord, 4 texcoord by quad
batch . vertexBuffer [ i ] . colors = ( unsigned char * ) RL_MALLOC ( bufferElements * 4 * 4 * sizeof ( unsigned char ) ) ; // 4 float by color, 4 colors by quad
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_33)
2020-05-23 19:23:40 +02:00
batch . vertexBuffer [ i ] . indices = ( unsigned int * ) RL_MALLOC ( bufferElements * 6 * sizeof ( unsigned int ) ) ; // 6 int by quad (indices)
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2020-05-23 19:23:40 +02:00
batch . vertexBuffer [ i ] . indices = ( unsigned short * ) RL_MALLOC ( bufferElements * 6 * sizeof ( unsigned short ) ) ; // 6 int by quad (indices)
2018-07-16 17:53:47 +02:00
# endif
2020-05-01 17:34:43 +02:00
for ( int j = 0 ; j < ( 3 * 4 * bufferElements ) ; j + + ) batch . vertexBuffer [ i ] . vertices [ j ] = 0.0f ;
for ( int j = 0 ; j < ( 2 * 4 * bufferElements ) ; j + + ) batch . vertexBuffer [ i ] . texcoords [ j ] = 0.0f ;
for ( int j = 0 ; j < ( 4 * 4 * bufferElements ) ; j + + ) batch . vertexBuffer [ i ] . colors [ j ] = 0 ;
2018-07-16 17:53:47 +02:00
2018-12-11 18:54:48 +01:00
int k = 0 ;
2018-07-16 17:53:47 +02:00
2018-12-11 18:54:48 +01:00
// Indices can be initialized right now
2020-05-01 17:34:43 +02:00
for ( int j = 0 ; j < ( 6 * bufferElements ) ; j + = 6 )
2018-12-11 18:54:48 +01:00
{
2020-05-01 17:34:43 +02:00
batch . vertexBuffer [ i ] . indices [ j ] = 4 * k ;
batch . vertexBuffer [ i ] . indices [ j + 1 ] = 4 * k + 1 ;
batch . vertexBuffer [ i ] . indices [ j + 2 ] = 4 * k + 2 ;
batch . vertexBuffer [ i ] . indices [ j + 3 ] = 4 * k ;
batch . vertexBuffer [ i ] . indices [ j + 4 ] = 4 * k + 2 ;
batch . vertexBuffer [ i ] . indices [ j + 5 ] = 4 * k + 3 ;
2018-12-11 18:54:48 +01:00
k + + ;
}
2018-07-16 17:53:47 +02:00
2020-05-01 17:34:43 +02:00
batch . vertexBuffer [ i ] . vCounter = 0 ;
batch . vertexBuffer [ i ] . tcCounter = 0 ;
batch . vertexBuffer [ i ] . cCounter = 0 ;
2018-12-11 18:54:48 +01:00
}
2018-07-16 17:53:47 +02:00
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_INFO , " RLGL: Internal vertex buffers initialized successfully in RAM (CPU) " ) ;
2018-07-16 17:53:47 +02:00
//--------------------------------------------------------------------------------------------
2018-12-11 18:54:48 +01:00
// Upload to GPU (VRAM) vertex data and initialize VAOs/VBOs
2018-07-16 17:53:47 +02:00
//--------------------------------------------------------------------------------------------
2020-05-01 17:34:43 +02:00
for ( int i = 0 ; i < numBuffers ; i + + )
2018-07-16 17:53:47 +02:00
{
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao )
2018-12-11 18:54:48 +01:00
{
// Initialize Quads VAO
2020-05-01 17:34:43 +02:00
glGenVertexArrays ( 1 , & batch . vertexBuffer [ i ] . vaoId ) ;
glBindVertexArray ( batch . vertexBuffer [ i ] . vaoId ) ;
2018-12-11 18:54:48 +01:00
}
2018-07-16 17:53:47 +02:00
2018-12-11 18:54:48 +01:00
// Quads - Vertex buffers binding and attributes enable
// Vertex position buffer (shader-location = 0)
2020-05-01 17:34:43 +02:00
glGenBuffers ( 1 , & batch . vertexBuffer [ i ] . vboId [ 0 ] ) ;
glBindBuffer ( GL_ARRAY_BUFFER , batch . vertexBuffer [ i ] . vboId [ 0 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ARRAY_BUFFER , bufferElements * 3 * 4 * sizeof ( float ) , batch . vertexBuffer [ i ] . vertices , GL_DYNAMIC_DRAW ) ;
2021-03-14 11:05:51 +01:00
glEnableVertexAttribArray ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_POSITION ] ) ;
glVertexAttribPointer ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_POSITION ] , 3 , GL_FLOAT , 0 , 0 , 0 ) ;
2018-12-11 18:54:48 +01:00
// Vertex texcoord buffer (shader-location = 1)
2020-05-01 17:34:43 +02:00
glGenBuffers ( 1 , & batch . vertexBuffer [ i ] . vboId [ 1 ] ) ;
glBindBuffer ( GL_ARRAY_BUFFER , batch . vertexBuffer [ i ] . vboId [ 1 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ARRAY_BUFFER , bufferElements * 2 * 4 * sizeof ( float ) , batch . vertexBuffer [ i ] . texcoords , GL_DYNAMIC_DRAW ) ;
2021-03-14 11:05:51 +01:00
glEnableVertexAttribArray ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_TEXCOORD01 ] ) ;
glVertexAttribPointer ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_TEXCOORD01 ] , 2 , GL_FLOAT , 0 , 0 , 0 ) ;
2018-12-11 18:54:48 +01:00
// Vertex color buffer (shader-location = 3)
2020-05-01 17:34:43 +02:00
glGenBuffers ( 1 , & batch . vertexBuffer [ i ] . vboId [ 2 ] ) ;
glBindBuffer ( GL_ARRAY_BUFFER , batch . vertexBuffer [ i ] . vboId [ 2 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ARRAY_BUFFER , bufferElements * 4 * 4 * sizeof ( unsigned char ) , batch . vertexBuffer [ i ] . colors , GL_DYNAMIC_DRAW ) ;
2021-03-14 11:05:51 +01:00
glEnableVertexAttribArray ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_COLOR ] ) ;
glVertexAttribPointer ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_COLOR ] , 4 , GL_UNSIGNED_BYTE , GL_TRUE , 0 , 0 ) ;
2018-12-11 18:54:48 +01:00
// Fill index buffer
2020-05-01 17:34:43 +02:00
glGenBuffers ( 1 , & batch . vertexBuffer [ i ] . vboId [ 3 ] ) ;
glBindBuffer ( GL_ELEMENT_ARRAY_BUFFER , batch . vertexBuffer [ i ] . vboId [ 3 ] ) ;
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_33)
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ELEMENT_ARRAY_BUFFER , bufferElements * 6 * sizeof ( int ) , batch . vertexBuffer [ i ] . indices , GL_STATIC_DRAW ) ;
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2020-05-23 19:23:40 +02:00
glBufferData ( GL_ELEMENT_ARRAY_BUFFER , bufferElements * 6 * sizeof ( short ) , batch . vertexBuffer [ i ] . indices , GL_STATIC_DRAW ) ;
2018-07-16 17:53:47 +02:00
# endif
2018-12-11 18:54:48 +01:00
}
2019-02-21 18:45:19 +01:00
2020-05-01 17:34:43 +02:00
TRACELOG ( LOG_INFO , " RLGL: Render batch vertex buffers loaded successfully " ) ;
2018-07-16 17:53:47 +02:00
// Unbind the current VAO
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( 0 ) ;
2018-07-16 17:53:47 +02:00
//--------------------------------------------------------------------------------------------
2020-11-03 23:47:33 +01:00
2020-05-01 17:34:43 +02:00
// Init draw calls tracking system
//--------------------------------------------------------------------------------------------
2020-05-23 19:23:40 +02:00
batch . draws = ( DrawCall * ) RL_MALLOC ( DEFAULT_BATCH_DRAWCALLS * sizeof ( DrawCall ) ) ;
2020-05-01 17:34:43 +02:00
for ( int i = 0 ; i < DEFAULT_BATCH_DRAWCALLS ; i + + )
{
batch . draws [ i ] . mode = RL_QUADS ;
batch . draws [ i ] . vertexCount = 0 ;
batch . draws [ i ] . vertexAlignment = 0 ;
//batch.draws[i].vaoId = 0;
//batch.draws[i].shaderId = 0;
batch . draws [ i ] . textureId = RLGL . State . defaultTextureId ;
//batch.draws[i].RLGL.State.projection = MatrixIdentity();
//batch.draws[i].RLGL.State.modelview = MatrixIdentity();
}
2020-07-09 11:42:20 -07:00
batch . buffersCount = numBuffers ; // Record buffer count
batch . drawsCounter = 1 ; // Reset draws counter
batch . currentDepth = - 1.0f ; // Reset depth value
2020-05-01 17:34:43 +02:00
//--------------------------------------------------------------------------------------------
2020-11-03 23:47:33 +01:00
2020-05-01 17:34:43 +02:00
return batch ;
2018-07-16 17:53:47 +02:00
}
2020-05-01 17:34:43 +02:00
// Draw render batch
// NOTE: We require a pointer to reset batch and increase current buffer (multi-buffer)
static void DrawRenderBatch ( RenderBatch * batch )
2018-07-16 17:53:47 +02:00
{
2020-05-01 17:34:43 +02:00
// Update batch vertex buffers
//------------------------------------------------------------------------------------------------------------
// NOTE: If there is not vertex data, buffers doesn't need to be updated (vertexCount > 0)
// TODO: If no data changed on the CPU arrays --> No need to re-update GPU arrays (change flag required)
if ( batch - > vertexBuffer [ batch - > currentBuffer ] . vCounter > 0 )
2018-07-16 17:53:47 +02:00
{
2018-12-11 18:54:48 +01:00
// Activate elements VAO
2020-05-01 17:34:43 +02:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( batch - > vertexBuffer [ batch - > currentBuffer ] . vaoId ) ;
2018-12-11 18:54:48 +01:00
// Vertex positions buffer
2020-05-01 17:34:43 +02:00
glBindBuffer ( GL_ARRAY_BUFFER , batch - > vertexBuffer [ batch - > currentBuffer ] . vboId [ 0 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferSubData ( GL_ARRAY_BUFFER , 0 , batch - > vertexBuffer [ batch - > currentBuffer ] . vCounter * 3 * sizeof ( float ) , batch - > vertexBuffer [ batch - > currentBuffer ] . vertices ) ;
2020-05-01 17:34:43 +02:00
//glBufferData(GL_ARRAY_BUFFER, sizeof(float)*3*4*batch->vertexBuffer[batch->currentBuffer].elementsCount, batch->vertexBuffer[batch->currentBuffer].vertices, GL_DYNAMIC_DRAW); // Update all buffer
2019-02-21 18:45:19 +01:00
2018-12-11 18:54:48 +01:00
// Texture coordinates buffer
2020-05-01 17:34:43 +02:00
glBindBuffer ( GL_ARRAY_BUFFER , batch - > vertexBuffer [ batch - > currentBuffer ] . vboId [ 1 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferSubData ( GL_ARRAY_BUFFER , 0 , batch - > vertexBuffer [ batch - > currentBuffer ] . vCounter * 2 * sizeof ( float ) , batch - > vertexBuffer [ batch - > currentBuffer ] . texcoords ) ;
2020-05-01 17:34:43 +02:00
//glBufferData(GL_ARRAY_BUFFER, sizeof(float)*2*4*batch->vertexBuffer[batch->currentBuffer].elementsCount, batch->vertexBuffer[batch->currentBuffer].texcoords, GL_DYNAMIC_DRAW); // Update all buffer
2018-12-11 18:54:48 +01:00
// Colors buffer
2020-05-01 17:34:43 +02:00
glBindBuffer ( GL_ARRAY_BUFFER , batch - > vertexBuffer [ batch - > currentBuffer ] . vboId [ 2 ] ) ;
2020-05-23 19:23:40 +02:00
glBufferSubData ( GL_ARRAY_BUFFER , 0 , batch - > vertexBuffer [ batch - > currentBuffer ] . vCounter * 4 * sizeof ( unsigned char ) , batch - > vertexBuffer [ batch - > currentBuffer ] . colors ) ;
2020-05-01 17:34:43 +02:00
//glBufferData(GL_ARRAY_BUFFER, sizeof(float)*4*4*batch->vertexBuffer[batch->currentBuffer].elementsCount, batch->vertexBuffer[batch->currentBuffer].colors, GL_DYNAMIC_DRAW); // Update all buffer
2019-02-21 18:45:19 +01:00
2018-12-11 18:54:48 +01:00
// NOTE: glMapBuffer() causes sync issue.
2019-02-21 18:45:19 +01:00
// If GPU is working with this buffer, glMapBuffer() will wait(stall) until GPU to finish its job.
2018-12-11 18:54:48 +01:00
// To avoid waiting (idle), you can call first glBufferData() with NULL pointer before glMapBuffer().
// If you do that, the previous data in PBO will be discarded and glMapBuffer() returns a new
// allocated pointer immediately even if GPU is still working with the previous data.
2019-02-21 18:45:19 +01:00
2018-12-11 18:54:48 +01:00
// Another option: map the buffer object into client's memory
// Probably this code could be moved somewhere else...
2020-05-01 17:34:43 +02:00
// batch->vertexBuffer[batch->currentBuffer].vertices = (float *)glMapBuffer(GL_ARRAY_BUFFER, GL_READ_WRITE);
// if (batch->vertexBuffer[batch->currentBuffer].vertices)
2018-12-11 18:54:48 +01:00
// {
// Update vertex data
// }
// glUnmapBuffer(GL_ARRAY_BUFFER);
// Unbind the current VAO
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( 0 ) ;
2018-07-16 17:53:47 +02:00
}
2020-05-01 17:34:43 +02:00
//------------------------------------------------------------------------------------------------------------
2020-11-03 23:47:33 +01:00
2020-05-01 17:34:43 +02:00
// Draw batch vertex buffers (considering VR stereo if required)
//------------------------------------------------------------------------------------------------------------
2020-02-03 18:31:30 +01:00
Matrix matProjection = RLGL . State . projection ;
Matrix matModelView = RLGL . State . modelview ;
2018-07-16 17:53:47 +02:00
int eyesCount = 1 ;
# if defined(SUPPORT_VR_SIMULATOR)
2020-02-03 18:31:30 +01:00
if ( RLGL . Vr . stereoRender ) eyesCount = 2 ;
2018-07-16 17:53:47 +02:00
# endif
for ( int eye = 0 ; eye < eyesCount ; eye + + )
{
2018-12-11 18:54:48 +01:00
# if defined(SUPPORT_VR_SIMULATOR)
2018-07-16 17:53:47 +02:00
if ( eyesCount = = 2 ) SetStereoView ( eye , matProjection , matModelView ) ;
2018-12-11 18:54:48 +01:00
# endif
2018-12-29 00:00:52 +01:00
// Draw buffers
2020-05-01 17:34:43 +02:00
if ( batch - > vertexBuffer [ batch - > currentBuffer ] . vCounter > 0 )
2018-07-16 17:53:47 +02:00
{
2018-12-11 18:54:48 +01:00
// Set current shader and upload current MVP matrix
2020-02-03 18:31:30 +01:00
glUseProgram ( RLGL . State . currentShader . id ) ;
2018-07-16 17:53:47 +02:00
2020-10-26 20:11:58 +01:00
// Create modelview-projection matrix and upload to shader
2020-02-03 18:31:30 +01:00
Matrix matMVP = MatrixMultiply ( RLGL . State . modelview , RLGL . State . projection ) ;
2021-03-14 11:05:51 +01:00
glUniformMatrix4fv ( RLGL . State . currentShader . locs [ SHADER_LOC_MATRIX_MVP ] , 1 , false , MatrixToFloat ( matMVP ) ) ;
2019-02-21 18:45:19 +01:00
2020-05-01 17:34:43 +02:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( batch - > vertexBuffer [ batch - > currentBuffer ] . vaoId ) ;
2018-07-16 17:53:47 +02:00
else
{
// Bind vertex attrib: position (shader-location = 0)
2020-05-01 17:34:43 +02:00
glBindBuffer ( GL_ARRAY_BUFFER , batch - > vertexBuffer [ batch - > currentBuffer ] . vboId [ 0 ] ) ;
2021-03-14 11:05:51 +01:00
glVertexAttribPointer ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_POSITION ] , 3 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_POSITION ] ) ;
2018-07-16 17:53:47 +02:00
// Bind vertex attrib: texcoord (shader-location = 1)
2020-05-01 17:34:43 +02:00
glBindBuffer ( GL_ARRAY_BUFFER , batch - > vertexBuffer [ batch - > currentBuffer ] . vboId [ 1 ] ) ;
2021-03-14 11:05:51 +01:00
glVertexAttribPointer ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_TEXCOORD01 ] , 2 , GL_FLOAT , 0 , 0 , 0 ) ;
glEnableVertexAttribArray ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_TEXCOORD01 ] ) ;
2018-07-16 17:53:47 +02:00
// Bind vertex attrib: color (shader-location = 3)
2020-05-01 17:34:43 +02:00
glBindBuffer ( GL_ARRAY_BUFFER , batch - > vertexBuffer [ batch - > currentBuffer ] . vboId [ 2 ] ) ;
2021-03-14 11:05:51 +01:00
glVertexAttribPointer ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_COLOR ] , 4 , GL_UNSIGNED_BYTE , GL_TRUE , 0 , 0 ) ;
glEnableVertexAttribArray ( RLGL . State . currentShader . locs [ SHADER_LOC_VERTEX_COLOR ] ) ;
2018-07-16 17:53:47 +02:00
2020-05-01 17:34:43 +02:00
glBindBuffer ( GL_ELEMENT_ARRAY_BUFFER , batch - > vertexBuffer [ batch - > currentBuffer ] . vboId [ 3 ] ) ;
2018-07-16 17:53:47 +02:00
}
2020-10-29 20:22:52 +01:00
// Setup some default shader values
2021-03-14 11:05:51 +01:00
glUniform4f ( RLGL . State . currentShader . locs [ SHADER_LOC_COLOR_DIFFUSE ] , 1.0f , 1.0f , 1.0f , 1.0f ) ;
glUniform1i ( RLGL . State . currentShader . locs [ SHADER_LOC_MAP_DIFFUSE ] , 0 ) ; // Active default sampler2D: texture0
2020-11-03 23:47:33 +01:00
2020-10-26 20:13:08 +01:00
// Activate additional sampler textures
// Those additional textures will be common for all draw calls of the batch
2020-10-31 11:48:44 +01:00
for ( int i = 0 ; i < MAX_BATCH_ACTIVE_TEXTURES ; i + + )
2018-07-16 17:53:47 +02:00
{
2020-11-03 23:47:33 +01:00
if ( RLGL . State . activeTextureId [ i ] > 0 )
2020-10-26 20:13:08 +01:00
{
glActiveTexture ( GL_TEXTURE0 + 1 + i ) ;
glBindTexture ( GL_TEXTURE_2D , RLGL . State . activeTextureId [ i ] ) ;
}
}
2020-10-29 20:22:52 +01:00
2020-10-31 11:48:44 +01:00
// Activate default sampler2D texture0 (one texture is always active for default batch shader)
// NOTE: Batch system accumulates calls by texture0 changes, additional textures are enabled for all the draw calls
2020-10-29 20:22:52 +01:00
glActiveTexture ( GL_TEXTURE0 ) ;
2019-04-04 13:50:52 +02:00
2020-10-26 20:11:58 +01:00
for ( int i = 0 , vertexOffset = 0 ; i < batch - > drawsCounter ; i + + )
{
2020-10-31 11:48:44 +01:00
// Bind current draw call texture, activated as GL_TEXTURE0 and binded to sampler2D texture0 by default
2020-10-26 20:11:58 +01:00
glBindTexture ( GL_TEXTURE_2D , batch - > draws [ i ] . textureId ) ;
2018-07-16 17:53:47 +02:00
2020-05-01 17:34:43 +02:00
if ( ( batch - > draws [ i ] . mode = = RL_LINES ) | | ( batch - > draws [ i ] . mode = = RL_TRIANGLES ) ) glDrawArrays ( batch - > draws [ i ] . mode , vertexOffset , batch - > draws [ i ] . vertexCount ) ;
2018-12-11 18:54:48 +01:00
else
{
# if defined(GRAPHICS_API_OPENGL_33)
// We need to define the number of indices to be processed: quadsCount*6
2019-02-21 18:45:19 +01:00
// NOTE: The final parameter tells the GPU the offset in bytes from the
2018-12-11 18:54:48 +01:00
// start of the index buffer to the location of the first index to process
2020-05-23 19:23:40 +02:00
glDrawElements ( GL_TRIANGLES , batch - > draws [ i ] . vertexCount / 4 * 6 , GL_UNSIGNED_INT , ( GLvoid * ) ( vertexOffset / 4 * 6 * sizeof ( GLuint ) ) ) ;
2021-03-02 12:45:23 +01:00
# endif
# if defined(GRAPHICS_API_OPENGL_ES2)
2020-05-23 19:23:40 +02:00
glDrawElements ( GL_TRIANGLES , batch - > draws [ i ] . vertexCount / 4 * 6 , GL_UNSIGNED_SHORT , ( GLvoid * ) ( vertexOffset / 4 * 6 * sizeof ( GLushort ) ) ) ;
2018-12-11 18:54:48 +01:00
# endif
}
2019-04-04 13:50:52 +02:00
2020-05-01 17:34:43 +02:00
vertexOffset + = ( batch - > draws [ i ] . vertexCount + batch - > draws [ i ] . vertexAlignment ) ;
2018-07-16 17:53:47 +02:00
}
2020-02-03 18:31:30 +01:00
if ( ! RLGL . ExtSupported . vao )
2018-07-16 17:53:47 +02:00
{
glBindBuffer ( GL_ARRAY_BUFFER , 0 ) ;
glBindBuffer ( GL_ELEMENT_ARRAY_BUFFER , 0 ) ;
}
glBindTexture ( GL_TEXTURE_2D , 0 ) ; // Unbind textures
}
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( 0 ) ; // Unbind VAO
2018-07-16 17:53:47 +02:00
glUseProgram ( 0 ) ; // Unbind shader program
}
2020-05-01 17:34:43 +02:00
//------------------------------------------------------------------------------------------------------------
2020-11-03 23:47:33 +01:00
2020-05-01 17:34:43 +02:00
// Reset batch buffers
//------------------------------------------------------------------------------------------------------------
2018-07-16 17:53:47 +02:00
// Reset vertex counters for next frame
2020-05-01 17:34:43 +02:00
batch - > vertexBuffer [ batch - > currentBuffer ] . vCounter = 0 ;
batch - > vertexBuffer [ batch - > currentBuffer ] . tcCounter = 0 ;
batch - > vertexBuffer [ batch - > currentBuffer ] . cCounter = 0 ;
2018-07-16 17:53:47 +02:00
// Reset depth for next draw
2020-05-01 17:34:43 +02:00
batch - > currentDepth = - 1.0f ;
2018-07-16 17:53:47 +02:00
// Restore projection/modelview matrices
2020-02-03 18:31:30 +01:00
RLGL . State . projection = matProjection ;
RLGL . State . modelview = matModelView ;
2018-08-17 01:34:45 +02:00
2020-05-01 17:34:43 +02:00
// Reset RLGL.currentBatch->draws array
for ( int i = 0 ; i < DEFAULT_BATCH_DRAWCALLS ; i + + )
2018-12-29 00:00:52 +01:00
{
2020-05-01 17:34:43 +02:00
batch - > draws [ i ] . mode = RL_QUADS ;
batch - > draws [ i ] . vertexCount = 0 ;
batch - > draws [ i ] . textureId = RLGL . State . defaultTextureId ;
2018-12-29 00:00:52 +01:00
}
2020-11-03 23:47:33 +01:00
2020-10-31 11:48:44 +01:00
// Reset active texture units for next batch
for ( int i = 0 ; i < MAX_BATCH_ACTIVE_TEXTURES ; i + + ) RLGL . State . activeTextureId [ i ] = 0 ;
2018-12-29 00:00:52 +01:00
2020-10-31 11:48:44 +01:00
// Reset draws counter to one draw for the batch
2020-05-01 17:34:43 +02:00
batch - > drawsCounter = 1 ;
//------------------------------------------------------------------------------------------------------------
2019-02-21 18:45:19 +01:00
2020-05-01 17:34:43 +02:00
// Change to next buffer in the list (in case of multi-buffering)
batch - > currentBuffer + + ;
if ( batch - > currentBuffer > = batch - > buffersCount ) batch - > currentBuffer = 0 ;
2018-07-16 17:53:47 +02:00
}
// Unload default internal buffers vertex data from CPU and GPU
2020-05-01 17:34:43 +02:00
static void UnloadRenderBatch ( RenderBatch batch )
2018-07-16 17:53:47 +02:00
{
// Unbind everything
2020-02-03 18:31:30 +01:00
if ( RLGL . ExtSupported . vao ) glBindVertexArray ( 0 ) ;
2018-07-16 17:53:47 +02:00
glDisableVertexAttribArray ( 0 ) ;
glDisableVertexAttribArray ( 1 ) ;
glDisableVertexAttribArray ( 2 ) ;
glDisableVertexAttribArray ( 3 ) ;
glBindBuffer ( GL_ARRAY_BUFFER , 0 ) ;
glBindBuffer ( GL_ELEMENT_ARRAY_BUFFER , 0 ) ;
2020-05-01 17:34:43 +02:00
// Unload all vertex buffers data
for ( int i = 0 ; i < batch . buffersCount ; i + + )
2018-07-16 17:53:47 +02:00
{
2018-12-11 18:54:48 +01:00
// Delete VBOs from GPU (VRAM)
2020-05-01 17:34:43 +02:00
glDeleteBuffers ( 1 , & batch . vertexBuffer [ i ] . vboId [ 0 ] ) ;
glDeleteBuffers ( 1 , & batch . vertexBuffer [ i ] . vboId [ 1 ] ) ;
glDeleteBuffers ( 1 , & batch . vertexBuffer [ i ] . vboId [ 2 ] ) ;
glDeleteBuffers ( 1 , & batch . vertexBuffer [ i ] . vboId [ 3 ] ) ;
2018-07-16 17:53:47 +02:00
2018-12-11 18:54:48 +01:00
// Delete VAOs from GPU (VRAM)
2020-05-01 17:34:43 +02:00
if ( RLGL . ExtSupported . vao ) glDeleteVertexArrays ( 1 , & batch . vertexBuffer [ i ] . vaoId ) ;
2018-07-16 17:53:47 +02:00
2018-12-11 18:54:48 +01:00
// Free vertex arrays memory from CPU (RAM)
2020-05-01 17:34:43 +02:00
RL_FREE ( batch . vertexBuffer [ i ] . vertices ) ;
RL_FREE ( batch . vertexBuffer [ i ] . texcoords ) ;
RL_FREE ( batch . vertexBuffer [ i ] . colors ) ;
RL_FREE ( batch . vertexBuffer [ i ] . indices ) ;
2018-12-11 18:54:48 +01:00
}
2020-05-01 17:34:43 +02:00
// Unload arrays
RL_FREE ( batch . vertexBuffer ) ;
RL_FREE ( batch . draws ) ;
}
// Set the active render batch for rlgl
static void SetRenderBatchActive ( RenderBatch * batch )
{
DrawRenderBatch ( RLGL . currentBatch ) ;
RLGL . currentBatch = batch ;
}
// Set default render batch for rlgl
static void SetRenderBatchDefault ( void )
{
DrawRenderBatch ( RLGL . currentBatch ) ;
RLGL . currentBatch = & RLGL . defaultBatch ;
2018-07-16 17:53:47 +02:00
}
// Renders a 1x1 XY quad in NDC
static void GenDrawQuad ( void )
{
unsigned int quadVAO = 0 ;
unsigned int quadVBO = 0 ;
float vertices [ ] = {
2020-09-15 13:44:04 +02:00
// Positions Texcoords
- 1.0f , 1.0f , 0.0f , 0.0f , 1.0f ,
- 1.0f , - 1.0f , 0.0f , 0.0f , 0.0f ,
1.0f , 1.0f , 0.0f , 1.0f , 1.0f ,
1.0f , - 1.0f , 0.0f , 1.0f , 0.0f ,
2018-07-16 17:53:47 +02:00
} ;
2020-09-15 13:44:04 +02:00
// Gen VAO to contain VBO
2018-07-16 17:53:47 +02:00
glGenVertexArrays ( 1 , & quadVAO ) ;
glBindVertexArray ( quadVAO ) ;
2020-09-15 13:44:04 +02:00
// Gen and fill vertex buffer (VBO)
glGenBuffers ( 1 , & quadVBO ) ;
2018-07-16 17:53:47 +02:00
glBindBuffer ( GL_ARRAY_BUFFER , quadVBO ) ;
glBufferData ( GL_ARRAY_BUFFER , sizeof ( vertices ) , & vertices , GL_STATIC_DRAW ) ;
2020-09-15 13:44:04 +02:00
// Bind vertex attributes (position, texcoords)
2018-07-16 17:53:47 +02:00
glEnableVertexAttribArray ( 0 ) ;
2020-09-15 13:44:04 +02:00
glVertexAttribPointer ( 0 , 3 , GL_FLOAT , GL_FALSE , 5 * sizeof ( float ) , ( void * ) 0 ) ; // Positions
2018-07-16 17:53:47 +02:00
glEnableVertexAttribArray ( 1 ) ;
2020-09-15 13:44:04 +02:00
glVertexAttribPointer ( 1 , 2 , GL_FLOAT , GL_FALSE , 5 * sizeof ( float ) , ( void * ) ( 3 * sizeof ( float ) ) ) ; // Texcoords
2018-07-16 17:53:47 +02:00
// Draw quad
glBindVertexArray ( quadVAO ) ;
glDrawArrays ( GL_TRIANGLE_STRIP , 0 , 4 ) ;
glBindVertexArray ( 0 ) ;
2020-09-15 13:44:04 +02:00
// Delete buffers (VBO and VAO)
2018-07-16 17:53:47 +02:00
glDeleteBuffers ( 1 , & quadVBO ) ;
glDeleteVertexArrays ( 1 , & quadVAO ) ;
}
// Renders a 1x1 3D cube in NDC
static void GenDrawCube ( void )
{
unsigned int cubeVAO = 0 ;
unsigned int cubeVBO = 0 ;
float vertices [ ] = {
2020-09-15 13:44:04 +02:00
// Positions Normals Texcoords
- 1.0f , - 1.0f , - 1.0f , 0.0f , 0.0f , - 1.0f , 0.0f , 0.0f ,
1.0f , 1.0f , - 1.0f , 0.0f , 0.0f , - 1.0f , 1.0f , 1.0f ,
1.0f , - 1.0f , - 1.0f , 0.0f , 0.0f , - 1.0f , 1.0f , 0.0f ,
1.0f , 1.0f , - 1.0f , 0.0f , 0.0f , - 1.0f , 1.0f , 1.0f ,
- 1.0f , - 1.0f , - 1.0f , 0.0f , 0.0f , - 1.0f , 0.0f , 0.0f ,
- 1.0f , 1.0f , - 1.0f , 0.0f , 0.0f , - 1.0f , 0.0f , 1.0f ,
- 1.0f , - 1.0f , 1.0f , 0.0f , 0.0f , 1.0f , 0.0f , 0.0f ,
1.0f , - 1.0f , 1.0f , 0.0f , 0.0f , 1.0f , 1.0f , 0.0f ,
1.0f , 1.0f , 1.0f , 0.0f , 0.0f , 1.0f , 1.0f , 1.0f ,
1.0f , 1.0f , 1.0f , 0.0f , 0.0f , 1.0f , 1.0f , 1.0f ,
- 1.0f , 1.0f , 1.0f , 0.0f , 0.0f , 1.0f , 0.0f , 1.0f ,
- 1.0f , - 1.0f , 1.0f , 0.0f , 0.0f , 1.0f , 0.0f , 0.0f ,
- 1.0f , 1.0f , 1.0f , - 1.0f , 0.0f , 0.0f , 1.0f , 0.0f ,
- 1.0f , 1.0f , - 1.0f , - 1.0f , 0.0f , 0.0f , 1.0f , 1.0f ,
- 1.0f , - 1.0f , - 1.0f , - 1.0f , 0.0f , 0.0f , 0.0f , 1.0f ,
- 1.0f , - 1.0f , - 1.0f , - 1.0f , 0.0f , 0.0f , 0.0f , 1.0f ,
- 1.0f , - 1.0f , 1.0f , - 1.0f , 0.0f , 0.0f , 0.0f , 0.0f ,
- 1.0f , 1.0f , 1.0f , - 1.0f , 0.0f , 0.0f , 1.0f , 0.0f ,
1.0f , 1.0f , 1.0f , 1.0f , 0.0f , 0.0f , 1.0f , 0.0f ,
1.0f , - 1.0f , - 1.0f , 1.0f , 0.0f , 0.0f , 0.0f , 1.0f ,
1.0f , 1.0f , - 1.0f , 1.0f , 0.0f , 0.0f , 1.0f , 1.0f ,
1.0f , - 1.0f , - 1.0f , 1.0f , 0.0f , 0.0f , 0.0f , 1.0f ,
1.0f , 1.0f , 1.0f , 1.0f , 0.0f , 0.0f , 1.0f , 0.0f ,
1.0f , - 1.0f , 1.0f , 1.0f , 0.0f , 0.0f , 0.0f , 0.0f ,
- 1.0f , - 1.0f , - 1.0f , 0.0f , - 1.0f , 0.0f , 0.0f , 1.0f ,
1.0f , - 1.0f , - 1.0f , 0.0f , - 1.0f , 0.0f , 1.0f , 1.0f ,
1.0f , - 1.0f , 1.0f , 0.0f , - 1.0f , 0.0f , 1.0f , 0.0f ,
1.0f , - 1.0f , 1.0f , 0.0f , - 1.0f , 0.0f , 1.0f , 0.0f ,
- 1.0f , - 1.0f , 1.0f , 0.0f , - 1.0f , 0.0f , 0.0f , 0.0f ,
- 1.0f , - 1.0f , - 1.0f , 0.0f , - 1.0f , 0.0f , 0.0f , 1.0f ,
- 1.0f , 1.0f , - 1.0f , 0.0f , 1.0f , 0.0f , 0.0f , 1.0f ,
1.0f , 1.0f , 1.0f , 0.0f , 1.0f , 0.0f , 1.0f , 0.0f ,
1.0f , 1.0f , - 1.0f , 0.0f , 1.0f , 0.0f , 1.0f , 1.0f ,
1.0f , 1.0f , 1.0f , 0.0f , 1.0f , 0.0f , 1.0f , 0.0f ,
- 1.0f , 1.0f , - 1.0f , 0.0f , 1.0f , 0.0f , 0.0f , 1.0f ,
- 1.0f , 1.0f , 1.0f , 0.0f , 1.0f , 0.0f , 0.0f , 0.0f
2018-07-16 17:53:47 +02:00
} ;
2020-09-15 13:44:04 +02:00
// Gen VAO to contain VBO
2018-07-16 17:53:47 +02:00
glGenVertexArrays ( 1 , & cubeVAO ) ;
2020-09-15 13:44:04 +02:00
glBindVertexArray ( cubeVAO ) ;
2020-11-03 23:47:33 +01:00
2020-09-15 13:44:04 +02:00
// Gen and fill vertex buffer (VBO)
2018-07-16 17:53:47 +02:00
glGenBuffers ( 1 , & cubeVBO ) ;
glBindBuffer ( GL_ARRAY_BUFFER , cubeVBO ) ;
glBufferData ( GL_ARRAY_BUFFER , sizeof ( vertices ) , vertices , GL_STATIC_DRAW ) ;
2020-09-15 13:44:04 +02:00
// Bind vertex attributes (position, normals, texcoords)
2018-07-16 17:53:47 +02:00
glBindVertexArray ( cubeVAO ) ;
glEnableVertexAttribArray ( 0 ) ;
2020-09-15 13:44:04 +02:00
glVertexAttribPointer ( 0 , 3 , GL_FLOAT , GL_FALSE , 8 * sizeof ( float ) , ( void * ) 0 ) ; // Positions
2018-07-16 17:53:47 +02:00
glEnableVertexAttribArray ( 1 ) ;
2020-09-15 13:44:04 +02:00
glVertexAttribPointer ( 1 , 3 , GL_FLOAT , GL_FALSE , 8 * sizeof ( float ) , ( void * ) ( 3 * sizeof ( float ) ) ) ; // Normals
2018-07-16 17:53:47 +02:00
glEnableVertexAttribArray ( 2 ) ;
2020-09-15 13:44:04 +02:00
glVertexAttribPointer ( 2 , 2 , GL_FLOAT , GL_FALSE , 8 * sizeof ( float ) , ( void * ) ( 6 * sizeof ( float ) ) ) ; // Texcoords
2018-07-16 17:53:47 +02:00
glBindBuffer ( GL_ARRAY_BUFFER , 0 ) ;
glBindVertexArray ( 0 ) ;
// Draw cube
glBindVertexArray ( cubeVAO ) ;
glDrawArrays ( GL_TRIANGLES , 0 , 36 ) ;
glBindVertexArray ( 0 ) ;
2020-09-15 13:44:04 +02:00
// Delete VBO and VAO
2018-07-16 17:53:47 +02:00
glDeleteBuffers ( 1 , & cubeVBO ) ;
glDeleteVertexArrays ( 1 , & cubeVAO ) ;
}
# if defined(SUPPORT_VR_SIMULATOR)
// Set internal projection and modelview matrix depending on eyes tracking data
static void SetStereoView ( int eye , Matrix matProjection , Matrix matModelView )
{
Matrix eyeProjection = matProjection ;
Matrix eyeModelView = matModelView ;
// Setup viewport and projection/modelview matrices using tracking data
2020-02-03 18:31:30 +01:00
rlViewport ( eye * RLGL . State . framebufferWidth / 2 , 0 , RLGL . State . framebufferWidth / 2 , RLGL . State . framebufferHeight ) ;
2018-07-16 17:53:47 +02:00
// Apply view offset to modelview matrix
2020-02-03 18:31:30 +01:00
eyeModelView = MatrixMultiply ( matModelView , RLGL . Vr . config . eyesViewOffset [ eye ] ) ;
2018-07-16 17:53:47 +02:00
// Set current eye projection matrix
2020-02-03 18:31:30 +01:00
eyeProjection = RLGL . Vr . config . eyesProjection [ eye ] ;
2018-07-16 17:53:47 +02:00
SetMatrixModelview ( eyeModelView ) ;
SetMatrixProjection ( eyeProjection ) ;
}
2019-04-28 16:45:23 +02:00
# endif // SUPPORT_VR_SIMULATOR
2018-07-16 17:53:47 +02:00
2019-04-28 16:45:23 +02:00
# endif // GRAPHICS_API_OPENGL_33 || GRAPHICS_API_OPENGL_ES2
2018-07-16 17:53:47 +02:00
# if defined(GRAPHICS_API_OPENGL_11)
// Mipmaps data is generated after image data
// NOTE: Only works with RGBA (4 bytes) data!
static int GenerateMipmaps ( unsigned char * data , int baseWidth , int baseHeight )
{
int mipmapCount = 1 ; // Required mipmap levels count (including base level)
int width = baseWidth ;
int height = baseHeight ;
int size = baseWidth * baseHeight * 4 ; // Size in bytes (will include mipmaps...), RGBA only
// Count mipmap levels required
while ( ( width ! = 1 ) & & ( height ! = 1 ) )
{
2021-01-06 13:27:32 +01:00
width / = 2 ;
height / = 2 ;
2018-07-16 17:53:47 +02:00
2020-03-27 18:31:36 +01:00
TRACELOGD ( " TEXTURE: Next mipmap size: %i x %i " , width , height ) ;
2018-07-16 17:53:47 +02:00
mipmapCount + + ;
size + = ( width * height * 4 ) ; // Add mipmap size (in bytes)
}
2020-03-27 18:31:36 +01:00
TRACELOGD ( " TEXTURE: Total mipmaps required: %i " , mipmapCount ) ;
TRACELOGD ( " TEXTURE: Total size of data required: %i " , size ) ;
2018-07-16 17:53:47 +02:00
2020-01-19 11:23:38 +01:00
unsigned char * temp = RL_REALLOC ( data , size ) ;
2018-07-16 17:53:47 +02:00
if ( temp ! = NULL ) data = temp ;
2021-02-05 13:52:01 +01:00
else TRACELOG ( LOG_WARNING , " TEXTURE: Failed to re-allocate required mipmaps memory " ) ;
2018-07-16 17:53:47 +02:00
width = baseWidth ;
height = baseHeight ;
size = ( width * height * 4 ) ;
// Generate mipmaps
// NOTE: Every mipmap data is stored after data
2019-04-23 14:55:35 +02:00
Color * image = ( Color * ) RL_MALLOC ( width * height * sizeof ( Color ) ) ;
2018-07-16 17:53:47 +02:00
Color * mipmap = NULL ;
int offset = 0 ;
int j = 0 ;
for ( int i = 0 ; i < size ; i + = 4 )
{
image [ j ] . r = data [ i ] ;
image [ j ] . g = data [ i + 1 ] ;
image [ j ] . b = data [ i + 2 ] ;
image [ j ] . a = data [ i + 3 ] ;
j + + ;
}
2020-03-27 18:31:36 +01:00
TRACELOGD ( " TEXTURE: Mipmap base size (%ix%i) " , width , height ) ;
2018-07-16 17:53:47 +02:00
for ( int mip = 1 ; mip < mipmapCount ; mip + + )
{
mipmap = GenNextMipmap ( image , width , height ) ;
offset + = ( width * height * 4 ) ; // Size of last mipmap
j = 0 ;
width / = 2 ;
height / = 2 ;
size = ( width * height * 4 ) ; // Mipmap size to store after offset
// Add mipmap to data
for ( int i = 0 ; i < size ; i + = 4 )
{
data [ offset + i ] = mipmap [ j ] . r ;
data [ offset + i + 1 ] = mipmap [ j ] . g ;
data [ offset + i + 2 ] = mipmap [ j ] . b ;
data [ offset + i + 3 ] = mipmap [ j ] . a ;
j + + ;
}
2019-04-23 14:55:35 +02:00
RL_FREE ( image ) ;
2018-07-16 17:53:47 +02:00
image = mipmap ;
mipmap = NULL ;
}
2019-04-23 14:55:35 +02:00
RL_FREE ( mipmap ) ; // free mipmap data
2018-07-16 17:53:47 +02:00
return mipmapCount ;
}
// Manual mipmap generation (basic scaling algorithm)
static Color * GenNextMipmap ( Color * srcData , int srcWidth , int srcHeight )
{
int x2 , y2 ;
Color prow , pcol ;
int width = srcWidth / 2 ;
int height = srcHeight / 2 ;
2019-04-23 14:55:35 +02:00
Color * mipmap = ( Color * ) RL_MALLOC ( width * height * sizeof ( Color ) ) ;
2018-07-16 17:53:47 +02:00
// Scaling algorithm works perfectly (box-filter)
for ( int y = 0 ; y < height ; y + + )
{
y2 = 2 * y ;
for ( int x = 0 ; x < width ; x + + )
{
x2 = 2 * x ;
prow . r = ( srcData [ y2 * srcWidth + x2 ] . r + srcData [ y2 * srcWidth + x2 + 1 ] . r ) / 2 ;
prow . g = ( srcData [ y2 * srcWidth + x2 ] . g + srcData [ y2 * srcWidth + x2 + 1 ] . g ) / 2 ;
prow . b = ( srcData [ y2 * srcWidth + x2 ] . b + srcData [ y2 * srcWidth + x2 + 1 ] . b ) / 2 ;
prow . a = ( srcData [ y2 * srcWidth + x2 ] . a + srcData [ y2 * srcWidth + x2 + 1 ] . a ) / 2 ;
pcol . r = ( srcData [ ( y2 + 1 ) * srcWidth + x2 ] . r + srcData [ ( y2 + 1 ) * srcWidth + x2 + 1 ] . r ) / 2 ;
pcol . g = ( srcData [ ( y2 + 1 ) * srcWidth + x2 ] . g + srcData [ ( y2 + 1 ) * srcWidth + x2 + 1 ] . g ) / 2 ;
pcol . b = ( srcData [ ( y2 + 1 ) * srcWidth + x2 ] . b + srcData [ ( y2 + 1 ) * srcWidth + x2 + 1 ] . b ) / 2 ;
pcol . a = ( srcData [ ( y2 + 1 ) * srcWidth + x2 ] . a + srcData [ ( y2 + 1 ) * srcWidth + x2 + 1 ] . a ) / 2 ;
mipmap [ y * width + x ] . r = ( prow . r + pcol . r ) / 2 ;
mipmap [ y * width + x ] . g = ( prow . g + pcol . g ) / 2 ;
mipmap [ y * width + x ] . b = ( prow . b + pcol . b ) / 2 ;
mipmap [ y * width + x ] . a = ( prow . a + pcol . a ) / 2 ;
}
}
2020-03-27 18:31:36 +01:00
TRACELOGD ( " TEXTURE: Mipmap generated successfully (%ix%i) " , width , height ) ;
2018-07-16 17:53:47 +02:00
return mipmap ;
}
# endif
# if defined(RLGL_STANDALONE)
2020-03-04 00:21:46 +01:00
// Load text data from file, returns a '\0' terminated string
// NOTE: text chars array should be freed manually
char * LoadFileText ( const char * fileName )
{
char * text = NULL ;
if ( fileName ! = NULL )
{
2021-03-04 20:22:58 +01:00
FILE * file = fopen ( fileName , " rt " ) ;
2020-03-04 00:21:46 +01:00
2021-03-04 20:22:58 +01:00
if ( file ! = NULL )
2020-03-04 00:21:46 +01:00
{
// WARNING: When reading a file as 'text' file,
// text mode causes carriage return-linefeed translation...
// ...but using fseek() should return correct byte-offset
2021-03-04 20:22:58 +01:00
fseek ( file , 0 , SEEK_END ) ;
int size = ftell ( file ) ;
fseek ( file , 0 , SEEK_SET ) ;
2020-03-04 00:21:46 +01:00
if ( size > 0 )
{
2020-05-23 19:23:40 +02:00
text = ( char * ) RL_MALLOC ( ( size + 1 ) * sizeof ( char ) ) ;
2021-03-04 20:22:58 +01:00
int count = ( int ) fread ( text , sizeof ( char ) , size , file ) ;
2020-03-04 00:21:46 +01:00
// WARNING: \r\n is converted to \n on reading, so,
// read bytes count gets reduced by the number of lines
if ( count < size ) text = RL_REALLOC ( text , count + 1 ) ;
// Zero-terminate the string
text [ count ] = ' \0 ' ;
2020-03-25 19:41:51 +01:00
2020-03-27 18:31:36 +01:00
TRACELOG ( LOG_INFO , " FILEIO: [%s] Text file loaded successfully " , fileName ) ;
2020-03-04 00:21:46 +01:00
}
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_WARNING , " FILEIO: [%s] Failed to read text file " , fileName ) ;
2020-03-04 00:21:46 +01:00
2021-03-04 20:22:58 +01:00
fclose ( file ) ;
2020-03-04 00:21:46 +01:00
}
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_WARNING , " FILEIO: [%s] Failed to open text file " , fileName ) ;
2020-03-04 00:21:46 +01:00
}
2020-03-27 18:31:36 +01:00
else TRACELOG ( LOG_WARNING , " FILEIO: File name provided is not valid " ) ;
2020-03-04 00:21:46 +01:00
return text ;
}
2018-07-16 18:22:03 +02:00
// Get pixel data size in bytes (image or texture)
// NOTE: Size depends on pixel format
int GetPixelDataSize ( int width , int height , int format )
{
int dataSize = 0 ; // Size in bytes
int bpp = 0 ; // Bits per pixel
switch ( format )
{
2021-03-14 11:05:51 +01:00
case PIXELFORMAT_UNCOMPRESSED_GRAYSCALE : bpp = 8 ; break ;
case PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA :
case PIXELFORMAT_UNCOMPRESSED_R5G6B5 :
case PIXELFORMAT_UNCOMPRESSED_R5G5B5A1 :
case PIXELFORMAT_UNCOMPRESSED_R4G4B4A4 : bpp = 16 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 : bpp = 32 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R8G8B8 : bpp = 24 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R32 : bpp = 32 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R32G32B32 : bpp = 32 * 3 ; break ;
case PIXELFORMAT_UNCOMPRESSED_R32G32B32A32 : bpp = 32 * 4 ; break ;
case PIXELFORMAT_COMPRESSED_DXT1_RGB :
case PIXELFORMAT_COMPRESSED_DXT1_RGBA :
case PIXELFORMAT_COMPRESSED_ETC1_RGB :
case PIXELFORMAT_COMPRESSED_ETC2_RGB :
case PIXELFORMAT_COMPRESSED_PVRT_RGB :
case PIXELFORMAT_COMPRESSED_PVRT_RGBA : bpp = 4 ; break ;
case PIXELFORMAT_COMPRESSED_DXT3_RGBA :
case PIXELFORMAT_COMPRESSED_DXT5_RGBA :
case PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA :
case PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA : bpp = 8 ; break ;
case PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA : bpp = 2 ; break ;
2018-07-16 18:22:03 +02:00
default : break ;
}
dataSize = width * height * bpp / 8 ; // Total data size in bytes
2019-09-13 12:29:52 +01:00
// Most compressed formats works on 4x4 blocks,
2019-08-12 12:35:23 +02:00
// if texture is smaller, minimum dataSize is 8 or 16
if ( ( width < 4 ) & & ( height < 4 ) )
{
2021-03-14 11:05:51 +01:00
if ( ( format > = PIXELFORMAT_COMPRESSED_DXT1_RGB ) & & ( format < PIXELFORMAT_COMPRESSED_DXT3_RGBA ) ) dataSize = 8 ;
else if ( ( format > = PIXELFORMAT_COMPRESSED_DXT3_RGBA ) & & ( format < PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA ) ) dataSize = 16 ;
2019-08-12 12:35:23 +02:00
}
2018-07-16 18:22:03 +02:00
return dataSize ;
}
2019-04-27 22:47:03 +02:00
# endif // RLGL_STANDALONE
2018-07-16 17:53:47 +02:00
2019-06-15 13:46:48 +08:00
# endif // RLGL_IMPLEMENTATION