Table of Contents

Class WebGLActiveInfo

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The WebGLActiveInfo interface is part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.GetActiveAttrib and WebGLRenderingContext.GetActiveUniform methods.

[Value("WebGLActiveInfo")]
public class WebGLActiveInfo
Inheritance
WebGLActiveInfo
Inherited Members

Remarks

-WebGLRenderingContext.GetActiveAttrib
-WebGLRenderingContext.GetActiveUniform

See also on MDN

Constructors

WebGLActiveInfo()

public WebGLActiveInfo()

Properties

Name

The read-only WebGLActiveInfo.name property represents the name of the requested data returned by calling the WebGLRenderingContext.GetActiveAttrib or WebGLRenderingContext.GetActiveUniform methods.

[Value("name")]
public string Name { get; }

Property Value

string

Remarks

Size

The read-only WebGLActiveInfo.size property is a {{jsxref("Number")}} representing the size of the requested data returned by calling the WebGLRenderingContext.GetActiveAttrib or WebGLRenderingContext.GetActiveUniform methods.

[Value("size")]
public long Size { get; }

Property Value

long

Remarks

Type

The read-only WebGLActiveInfo.type property represents the type of the requested data returned by calling the WebGLRenderingContext.GetActiveAttrib or WebGLRenderingContext.GetActiveUniform methods.

[Value("type")]
public ulong Type { get; }

Property Value

ulong

Remarks