improved safe.
This commit is contained in:
parent
35b7c9651f
commit
60ba3e4df2
2
CMCore
2
CMCore
@ -1 +1 @@
|
|||||||
Subproject commit 2f93a1bb004cf0e99f51735dc2f65967a3ded1b8
|
Subproject commit 74caaea5669441eb27dae3265803e352c008d065
|
@ -460,6 +460,7 @@ public:
|
|||||||
{
|
{
|
||||||
camera=wc;
|
camera=wc;
|
||||||
cur_time=0;
|
cur_time=0;
|
||||||
|
last_time=0;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Vector2f &GetMouseCoord()const{return mouse_pos;}
|
const Vector2f &GetMouseCoord()const{return mouse_pos;}
|
||||||
|
@ -38,13 +38,10 @@ void RenderCmdBuffer::SetFBO(Framebuffer *fb)
|
|||||||
clear_values[cv_count-1].depthStencil.depth = 1.0f;
|
clear_values[cv_count-1].depthStencil.depth = 1.0f;
|
||||||
clear_values[cv_count-1].depthStencil.stencil = 0;
|
clear_values[cv_count-1].depthStencil.stencil = 0;
|
||||||
}
|
}
|
||||||
else
|
else if(clear_values)
|
||||||
{
|
{
|
||||||
if(clear_values)
|
hgl_free(clear_values);
|
||||||
{
|
clear_values=nullptr;
|
||||||
hgl_free(clear_values);
|
|
||||||
clear_values=nullptr;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render_area.offset.x=0;
|
render_area.offset.x=0;
|
||||||
|
@ -161,6 +161,8 @@ Texture2DArray *RenderResource::CreateTexture2DArray(const AnsiString &name,cons
|
|||||||
|
|
||||||
if(ta)
|
if(ta)
|
||||||
Add(ta);
|
Add(ta);
|
||||||
|
else
|
||||||
|
return nullptr;
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
DebugUtils *du=device->GetDebugUtils();
|
DebugUtils *du=device->GetDebugUtils();
|
||||||
|
@ -9,9 +9,13 @@ namespace hgl
|
|||||||
default_source=fs;
|
default_source=fs;
|
||||||
|
|
||||||
if(fs)
|
if(fs)
|
||||||
|
{
|
||||||
fs->RefAcquire(this);
|
fs->RefAcquire(this);
|
||||||
|
|
||||||
max_char_height=fs->GetCharHeight();
|
max_char_height=fs->GetCharHeight();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
max_char_height=0;
|
||||||
}
|
}
|
||||||
|
|
||||||
FontSourceMulti::~FontSourceMulti()
|
FontSourceMulti::~FontSourceMulti()
|
||||||
|
@ -120,6 +120,8 @@ namespace
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
UBOParse()=default;
|
||||||
|
|
||||||
void Clear()
|
void Clear()
|
||||||
{
|
{
|
||||||
hgl_zero(ubo_data);
|
hgl_zero(ubo_data);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user