summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2023-12-14 15:32:45 +0100
committerRay <[email protected]>2023-12-14 15:32:45 +0100
commitd29b36310ff155cebd9e8227752805106489943a (patch)
tree41293470cb61df7c96c83e8bbeb0f806206277d4 /src/raylib.h
parent88db11fda4421c66a6043011b36a3f13494b98e5 (diff)
parentcec2261e968bfc554d7b1639dd4d55ab4e2235e6 (diff)
downloadraylib-d29b36310ff155cebd9e8227752805106489943a.tar.gz
raylib-d29b36310ff155cebd9e8227752805106489943a.zip
Merge branch 'master' of https://github.com/raysan5/raylib
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index fd870c18..206b2657 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -484,7 +484,6 @@ typedef struct VrDeviceInfo {
int vResolution; // Vertical resolution in pixels
float hScreenSize; // Horizontal size in meters
float vScreenSize; // Vertical size in meters
- float vScreenCenter; // Screen center in meters
float eyeToScreenDistance; // Distance between eye and display in meters
float lensSeparationDistance; // Lens separation distance in meters
float interpupillaryDistance; // IPD (distance between pupils) in meters
@@ -1481,6 +1480,7 @@ RLAPI const char *TextToUpper(const char *text); // Get upp
RLAPI const char *TextToLower(const char *text); // Get lower case version of provided string
RLAPI const char *TextToPascal(const char *text); // Get Pascal case notation version of provided string
RLAPI int TextToInteger(const char *text); // Get integer value from text (negative values not supported)
+RLAPI float TextToFloat(const char *text); // Get float value from text (negative values not supported)
//------------------------------------------------------------------------------------
// Basic 3d Shapes Drawing Functions (Module: models)