aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/core_oculus_rift.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/core_oculus_rift.c b/examples/core_oculus_rift.c
index 86517829..3c9d7840 100644
--- a/examples/core_oculus_rift.c
+++ b/examples/core_oculus_rift.c
@@ -55,6 +55,8 @@ int main()
for (int eye = 0; eye < 2; eye++)
{
+ // TODO: Probably projection and view matrices could be created here...
+ // ...without the need to create it internally through Begin3dMode()
Begin3dMode(camera);
SetOculusMatrix(eye);
@@ -64,6 +66,8 @@ int main()
DrawGrid(10, 1.0f);
+ // TODO: Call internal buffers drawing directly (rlglDraw()) and...
+ // ...reset internal matrices, instead of letting End3dMode() do that
End3dMode();
}