mirror of https://github.com/axmolengine/axmol.git
Fix ci
This commit is contained in:
parent
7bca1b19a2
commit
9a4d173030
|
@ -75,7 +75,7 @@ GLViewImpl* GLViewImpl::create(std::string_view viewName)
|
||||||
}
|
}
|
||||||
|
|
||||||
GLViewImpl* GLViewImpl::createWithRect(std::string_view viewName,
|
GLViewImpl* GLViewImpl::createWithRect(std::string_view viewName,
|
||||||
const Rect& rect, float frameZoomFactor)
|
const Rect& rect, float frameZoomFactor, bool /*resizable*/)
|
||||||
{
|
{
|
||||||
auto ret = new GLViewImpl;
|
auto ret = new GLViewImpl;
|
||||||
if (ret && ret->initWithRect(viewName, rect, frameZoomFactor))
|
if (ret && ret->initWithRect(viewName, rect, frameZoomFactor))
|
||||||
|
|
|
@ -48,7 +48,7 @@ class AX_DLL GLViewImpl : public GLView
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static GLViewImpl* create(std::string_view viewName);
|
static GLViewImpl* create(std::string_view viewName);
|
||||||
static GLViewImpl* createWithRect(std::string_view viewName, const Rect& rect, float frameZoomFactor = 1.0f);
|
static GLViewImpl* createWithRect(std::string_view viewName, const Rect& rect, float frameZoomFactor = 1.0f, bool resizable = false);
|
||||||
static GLViewImpl* createWithFullScreen(std::string_view viewName);
|
static GLViewImpl* createWithFullScreen(std::string_view viewName);
|
||||||
|
|
||||||
/* override functions */
|
/* override functions */
|
||||||
|
|
Loading…
Reference in New Issue