summaryrefslogtreecommitdiffhomepage
path: root/src/rlgl.c
diff options
context:
space:
mode:
authorRay <[email protected]>2017-04-05 00:02:40 +0200
committerRay <[email protected]>2017-04-05 00:02:40 +0200
commitfdf8501e81f15de54af09580449dd8add42fc96e (patch)
tree99bbdbf3aee7fed637e59d003ca12619cb69596b /src/rlgl.c
parent99affa0cafb466bc960137a4a67128c1c4fd2e17 (diff)
downloadraylib-fdf8501e81f15de54af09580449dd8add42fc96e.tar.gz
raylib-fdf8501e81f15de54af09580449dd8add42fc96e.zip
Improve vr support and simulator
Diffstat (limited to 'src/rlgl.c')
-rw-r--r--src/rlgl.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/rlgl.c b/src/rlgl.c
index 546fbe6e..5f7b6cb2 100644
--- a/src/rlgl.c
+++ b/src/rlgl.c
@@ -57,6 +57,7 @@
// Default configuration flags (supported features)
//-------------------------------------------------
#define SUPPORT_VR_SIMULATION
+#define SUPPORT_DISTORTION_SHADER
//-------------------------------------------------
#include "rlgl.h"
@@ -2240,7 +2241,7 @@ void *rlglReadTexturePixels(Texture2D texture)
pixels = (unsigned char *)malloc(texture.width*texture.height*4*sizeof(unsigned char));
- // NOTE: Despite FBO color texture is RGB, we read data as RGBA... reading as RGB doesn't work... o__O
+ // NOTE: We read data as RGBA because FBO texture is configured as RGBA, despite binding a RGB texture...
glReadPixels(0, 0, texture.width, texture.height, GL_RGBA, GL_UNSIGNED_BYTE, pixels);
// Re-attach internal FBO color texture before deleting it
@@ -2558,7 +2559,7 @@ void InitVrSimulator(int vrDevice)
hmd.chromaAbCorrection[2] = 1.014f; // HMD chromatic aberration correction parameter 2
hmd.chromaAbCorrection[3] = 0.0f; // HMD chromatic aberration correction parameter 3
- TraceLog(WARNING, "Initializing VR Simulator (Oculus Rift DK2)");
+ TraceLog(INFO, "Initializing VR Simulator (Oculus Rift DK2)");
}
else if ((vrDevice == HMD_DEFAULT_DEVICE) || (vrDevice == HMD_OCULUS_RIFT_CV1))
{
@@ -2585,11 +2586,11 @@ void InitVrSimulator(int vrDevice)
hmd.chromaAbCorrection[2] = 1.014f; // HMD chromatic aberration correction parameter 2
hmd.chromaAbCorrection[3] = 0.0f; // HMD chromatic aberration correction parameter 3
- TraceLog(WARNING, "Initializing VR Simulator (Oculus Rift CV1)");
+ TraceLog(INFO, "Initializing VR Simulator (Oculus Rift CV1)");
}
else
{
- TraceLog(WARNING, "VR Simulator doesn't support current device yet,");
+ TraceLog(WARNING, "VR Simulator doesn't support selected device parameters,");
TraceLog(WARNING, "using default VR Simulator parameters");
}