Home
last modified time | relevance | path

Searched refs:WebGLActiveInfo (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/src/
H A Dwebgl_active_info.cpp26 WebGLActiveInfo* WebGLActiveInfo::GetWebGLActiveInfo(napi_env env, napi_callback_info info) in GetWebGLActiveInfo()
36 WebGLActiveInfo* webGLActiveInfo = nullptr; in GetWebGLActiveInfo()
47 WebGLActiveInfo* webGLActiveInfo = GetWebGLActiveInfo(env, info); in GetActiveName()
59 WebGLActiveInfo* webGLActiveInfo = GetWebGLActiveInfo(env, info); in GetActiveSize()
72 WebGLActiveInfo* webGLActiveInfo = GetWebGLActiveInfo(env, info); in GetActiveType()
89 unique_ptr<WebGLActiveInfo> webGlActiveInfo = make_unique<WebGLActiveInfo>(); in Constructor()
97 bool WebGLActiveInfo::Export(napi_env env, napi_value exports) in Export()
100 NVal::DeclareNapiGetter("name", WebGLActiveInfo::GetActiveName), in Export()
102 NVal::DeclareNapiGetter("type", WebGLActiveInfo::GetActiveType) in Export()
122 string WebGLActiveInfo::GetClassName() in GetClassName()
[all …]
H A Dmodule.cpp48 products.emplace_back(make_unique<WebGLActiveInfo>(env, exports)); in ExportWebGlObj()
H A Dwebgl2_rendering_context_impl.cpp627 WebGLActiveInfo* webGLActiveInfo = nullptr; in GetTransformFeedbackVarying()
628 napi_value objActiveInfo = WebGLActiveInfo::CreateObjectInstance(env, &webGLActiveInfo).val_; in GetTransformFeedbackVarying()
H A Dwebgl_rendering_context_base.cpp2394 WebGLActiveInfo* webGLActiveInfo = nullptr; in CreateWebGLActiveInfo()
2395 napi_value objActiveInfo = WebGLActiveInfo::CreateObjectInstance(env, &webGLActiveInfo).val_; in CreateWebGLActiveInfo()
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/webgl/
H A Dwebgl_active_info.h30 class WebGLActiveInfo final : public NExporter, public WebGLObject {
38 static WebGLActiveInfo *GetWebGLActiveInfo(napi_env env, napi_callback_info info);
42 static NVal CreateObjectInstance(napi_env env, WebGLActiveInfo **instance) in CreateObjectInstance()
44 return WebGLObject::CreateObjectInstance<WebGLActiveInfo>(env, instance); in CreateObjectInstance()
80 explicit WebGLActiveInfo() : size_(0), type_(0) {}; in WebGLActiveInfo() function
82WebGLActiveInfo(napi_env env, napi_value exports) : NExporter(env, exports), size_(0), type_(0) {}; in WebGLActiveInfo() function
83 ~WebGLActiveInfo() {}; in ~WebGLActiveInfo()
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-Release/
H A Djs-apidiff-graphic.md42 …| getTransformFeedbackVarying(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null; | 新增…
458 …ontextBase | getActiveUniform(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null; | 新增…
459 …ContextBase | getActiveAttrib(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null; | 新增…
816 | webgl | WebGLActiveInfo | readonly name: string; | 新增 |
817 | webgl | WebGLActiveInfo | readonly type: GLenum; | 新增 |
818 | webgl | WebGLActiveInfo | readonly size: GLint; | 新增 |
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/
H A Djs-apidiff-graphic.md42 …| getTransformFeedbackVarying(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null; | Ad…
458 …ontextBase | getActiveUniform(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null; | Ad…
459 …ContextBase | getActiveAttrib(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null; | Ad…
816 | webgl | WebGLActiveInfo | readonly name: string; | Added|
817 | webgl | WebGLActiveInfo | readonly type: GLenum; | Added|
818 | webgl | WebGLActiveInfo | readonly size: GLint; | Added|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-beta1/
H A Djs-apidiff-graphic.md20 |删除|模块名: webgl<br>类名: WebGLActiveInfo|NA|webgl.d.ts|
21 |删除|模块名: webgl<br>类名: WebGLActiveInfo<br>方法 or 属性:readonly size: GLint;|NA|webgl.d.ts|
22 |删除|模块名: webgl<br>类名: WebGLActiveInfo<br>方法 or 属性:readonly type: GLenum;|NA|webgl.d.ts|
23 |删除|模块名: webgl<br>类名: WebGLActiveInfo<br>方法 or 属性:readonly name: string;|NA|webgl.d.ts|
382 …e<br>方法 or 属性:getActiveAttrib(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null;|NA|w…
383 …<br>方法 or 属性:getActiveUniform(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null;|NA|w…
817 …backVarying(program: webgl.WebGLProgram, index: webgl.GLuint): webgl.WebGLActiveInfo \| null;|NA|w…
/ohos5.0/docs/en/release-notes/api-diff/v4.0-beta1/
H A Djs-apidiff-graphic.md20 |Deleted|Module name: webgl<br>Class name: WebGLActiveInfo|NA|webgl.d.ts|
21 |Deleted|Module name: webgl<br>Class name: WebGLActiveInfo<br>Method or attribute name: readonly si…
22 |Deleted|Module name: webgl<br>Class name: WebGLActiveInfo<br>Method or attribute name: readonly ty…
23 |Deleted|Module name: webgl<br>Class name: WebGLActiveInfo<br>Method or attribute name: readonly na…
382 …tribute name: getActiveAttrib(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null;|NA|w…
383 …ribute name: getActiveUniform(program: WebGLProgram, index: GLuint): WebGLActiveInfo \| null;|NA|w…
817 …backVarying(program: webgl.WebGLProgram, index: webgl.GLuint): webgl.WebGLActiveInfo \| null;|NA|w…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-Release/
H A Djs-apidiff-graphic.md411WebGLActiveInfo \| null;|类名:WebGL2RenderingContextBase;<br>方法or属性:getTransformFeedbackVarying(prog…
/ohos5.0/docs/zh-cn/release-notes/api-diff/monthly-202210/
H A Djs-apidiff-graphic.md336 …backVarying(program: webgl.WebGLProgram, index: webgl.GLuint): webgl.WebGLActiveInfo \| null;|webg…
/ohos5.0/docs/en/release-notes/api-diff/v3.2-Release/
H A Djs-apidiff-graphic.md411WebGLActiveInfo \| null;|Class name: WebGL2RenderingContextBase;<br>Method or attribute name: getT…
/ohos5.0/docs/en/release-notes/api-diff/monthly-202210/
H A Djs-apidiff-graphic.md336 …backVarying(program: webgl.WebGLProgram, index: webgl.GLuint): webgl.WebGLActiveInfo \| null;|webg…