blob: c4a0a5504fc262e0c52d642e16d616ec35029c65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
---@class cc.GLViewImpl :cc.GLView
local GLViewImpl={ }
cc.GLViewImpl=GLViewImpl
---*
---@param viewName string
---@param rect rect_table
---@param frameZoomFactor float
---@return self
function GLViewImpl:createWithRect (viewName,rect,frameZoomFactor) end
---*
---@param viewname string
---@return self
function GLViewImpl:create (viewname) end
---*
---@param viewName string
---@return self
function GLViewImpl:createWithFullScreen (viewName) end
---*
---@param bOpen boolean
---@return self
function GLViewImpl:setIMEKeyboardState (bOpen) end
---*
---@return boolean
function GLViewImpl:isOpenGLReady () end
---*
---@return rect_table
function GLViewImpl:getSafeAreaRect () end
|