ios now displays splash screen between launch image and main scene, instead of a black screen
This commit is contained in:
parent
4e8dcc8938
commit
b0e5031f1f
5 changed files with 13 additions and 0 deletions
|
|
@ -11188,6 +11188,12 @@ RasterizerGLES2::RasterizerGLES2(bool p_compress_arrays,bool p_keep_ram_copy,boo
|
|||
tc0_idx=0;
|
||||
};
|
||||
|
||||
void RasterizerGLES2::restore_framebuffer() {
|
||||
|
||||
glBindFramebuffer(GL_FRAMEBUFFER, base_framebuffer);
|
||||
|
||||
}
|
||||
|
||||
RasterizerGLES2::~RasterizerGLES2() {
|
||||
|
||||
memdelete_arr(skinned_buffer);
|
||||
|
|
|
|||
|
|
@ -1695,6 +1695,8 @@ public:
|
|||
void reload_vram();
|
||||
|
||||
virtual bool has_feature(VS::Features p_feature) const;
|
||||
|
||||
virtual void restore_framebuffer();
|
||||
|
||||
static RasterizerGLES2* get_singleton();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue