blob: 12937390ea3561ae7e1de5d8c14fbd2e535eb95b (
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
33
|
---@meta
---@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
|