mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
WARNING: Issues on web building
Found some issues when building for web using latest emscripten 1.38.30, traced the error and found that eglGetProcAdress does not return function pointers for VAO functionality, supported by extension. It requires more investigation but now it works (avoiding VAO usage)
This commit is contained in:
4
src/external/cgltf.h
vendored
4
src/external/cgltf.h
vendored
@ -369,7 +369,7 @@ typedef struct cgltf_light {
|
||||
cgltf_float spot_outer_cone_angle;
|
||||
} cgltf_light;
|
||||
|
||||
typedef struct cgltf_node {
|
||||
struct cgltf_node {
|
||||
char* name;
|
||||
cgltf_node* parent;
|
||||
cgltf_node** children;
|
||||
@ -388,7 +388,7 @@ typedef struct cgltf_node {
|
||||
cgltf_float rotation[4];
|
||||
cgltf_float scale[3];
|
||||
cgltf_float matrix[16];
|
||||
} cgltf_node;
|
||||
};
|
||||
|
||||
typedef struct cgltf_scene {
|
||||
char* name;
|
||||
|
||||
Reference in New Issue
Block a user