mirror of
https://github.com/raysan5/raylib.git
synced 2026-02-08 07:09:18 -05:00
Compare commits
5 Commits
11bf3996cf
...
f83c5cb6e1
| Author | SHA1 | Date | |
|---|---|---|---|
| f83c5cb6e1 | |||
| 69021939e6 | |||
| 9cc9f3bbbe | |||
| 3c9c66e72b | |||
| c6d7694286 |
@ -1,4 +1,6 @@
|
|||||||
#version 120
|
#version 100
|
||||||
|
|
||||||
|
precision mediump float;
|
||||||
|
|
||||||
// Input vertex attributes (from vertex shader)
|
// Input vertex attributes (from vertex shader)
|
||||||
varying vec2 fragTexCoord;
|
varying vec2 fragTexCoord;
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
#version 120
|
#version 100
|
||||||
|
|
||||||
|
precision mediump float;
|
||||||
|
|
||||||
// Input vertex attributes (from vertex shader)
|
// Input vertex attributes (from vertex shader)
|
||||||
varying vec2 fragTexCoord;
|
varying vec2 fragTexCoord;
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#version 100
|
#version 120
|
||||||
|
|
||||||
#extension GL_EXT_frag_depth : enable
|
#extension GL_EXT_frag_depth : enable
|
||||||
|
|
||||||
|
|||||||
@ -93,6 +93,9 @@
|
|||||||
#pragma GCC diagnostic ignored "-Wunused-function"
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define STBTT_malloc(x,u) ((void)(u),RL_MALLOC(x))
|
||||||
|
#define STBTT_free(x,u) ((void)(u),RL_FREE(x))
|
||||||
|
|
||||||
#define STBTT_STATIC
|
#define STBTT_STATIC
|
||||||
#define STB_TRUETYPE_IMPLEMENTATION
|
#define STB_TRUETYPE_IMPLEMENTATION
|
||||||
#include "external/stb_truetype.h" // Required for: ttf font data reading
|
#include "external/stb_truetype.h" // Required for: ttf font data reading
|
||||||
|
|||||||
Reference in New Issue
Block a user