mirror of https://github.com/axmolengine/axmol.git
44 lines
1.1 KiB
Lua
44 lines
1.1 KiB
Lua
|
|
--------------------------------
|
|
-- @module GLViewImpl
|
|
-- @extend GLView
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#GLViewImpl] createWithRect
|
|
-- @param self
|
|
-- @param #string viewName
|
|
-- @param #rect_table rect
|
|
-- @param #float frameZoomFactor
|
|
-- @return GLViewImpl#GLViewImpl ret (return value: cc.GLViewImpl)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#GLViewImpl] create
|
|
-- @param self
|
|
-- @param #string viewname
|
|
-- @return GLViewImpl#GLViewImpl ret (return value: cc.GLViewImpl)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#GLViewImpl] createWithFullScreen
|
|
-- @param self
|
|
-- @param #string viewName
|
|
-- @return GLViewImpl#GLViewImpl ret (return value: cc.GLViewImpl)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#GLViewImpl] setIMEKeyboardState
|
|
-- @param self
|
|
-- @param #bool bOpen
|
|
-- @return GLViewImpl#GLViewImpl self (return value: cc.GLViewImpl)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#GLViewImpl] isOpenGLReady
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
return nil
|