mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
parent
194ed96e89
commit
8718f898c1
@ -111,15 +111,6 @@ void glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid
|
||||
}, target, offset, data, size);
|
||||
/* clang-format on */
|
||||
}
|
||||
|
||||
void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data) {
|
||||
|
||||
/* clang-format off */
|
||||
EM_ASM({
|
||||
GLctx.bufferSubData($0, $1, HEAPU8, $2, $3);
|
||||
}, target, offset, data, size);
|
||||
/* clang-format on */
|
||||
}
|
||||
#endif
|
||||
|
||||
void glTexStorage2DCustom(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type) {
|
||||
|
@ -45,7 +45,6 @@
|
||||
// WebGL 2.0 has no MapBufferRange/UnmapBuffer, but offers a non-ES style BufferSubData API instead.
|
||||
#ifdef __EMSCRIPTEN__
|
||||
void glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid *data);
|
||||
void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data);
|
||||
#endif
|
||||
|
||||
class RasterizerCanvasGLES3;
|
||||
|
Loading…
Reference in New Issue
Block a user