diff options
| author | Ray <[email protected]> | 2017-12-11 11:55:02 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2017-12-11 11:55:02 +0100 |
| commit | a6f9cc5629841b7adf3d9ff21eaa2aaabb3e4bc1 (patch) | |
| tree | 43c035d81630b22f51e82bad450213a51c61f6d7 /src/raylib.h | |
| parent | 3e1d6859db03ba379dda62281bd3867b3d43d980 (diff) | |
| download | raylib-a6f9cc5629841b7adf3d9ff21eaa2aaabb3e4bc1.tar.gz raylib-a6f9cc5629841b7adf3d9ff21eaa2aaabb3e4bc1.zip | |
Remove rres support
Let the user choose if using rres external library
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/raylib.h b/src/raylib.h index a3914c4d..ac739830 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -495,22 +495,6 @@ typedef struct AudioStream { unsigned int buffers[2]; // OpenAL audio buffers (double buffering) } AudioStream; -// rRES data returned when reading a resource, -// it contains all required data for user (24 byte) -typedef struct RRESData { - unsigned int type; // Resource type (4 byte) - - unsigned int param1; // Resouce parameter 1 (4 byte) - unsigned int param2; // Resouce parameter 2 (4 byte) - unsigned int param3; // Resouce parameter 3 (4 byte) - unsigned int param4; // Resouce parameter 4 (4 byte) - - void *data; // Resource data pointer (4 byte) -} RRESData; - -// RRES type (pointer to RRESData array) -typedef struct RRESData *RRES; - // Head-Mounted-Display device parameters typedef struct VrDeviceInfo { int hResolution; // HMD horizontal resolution in pixels |
