C# Class Silverlight.Html.WebGL.WebGLRenderingContext

Afficher le fichier Open project: Arlorean/Silverlight-WebGL Class Usage Examples

Méthodes publiques

Méthode Description
GetId ( ScriptObject obj ) : int
GetObject ( int id ) : ScriptObject
GetObject ( uint id ) : ScriptObject
Invoke ( string name ) : object
WebGLRenderingContext ( ) : System
WebGLRenderingContext ( System.Windows.Browser.HtmlElement canvas ) : System
WebGLRenderingContext ( System.Windows.Browser.HtmlElement canvas, System.Windows.Browser.ScriptObject attrs ) : System
WebGLRenderingContext ( ScriptObject context ) : System
activeTexture ( UInt32 texture ) : void
attachShader ( System.Windows.Browser.ScriptObject program, System.Windows.Browser.ScriptObject shader ) : void
bindAttribLocation ( System.Windows.Browser.ScriptObject program, UInt32 index, System.String name ) : void
bindBuffer ( UInt32 target, System.Windows.Browser.ScriptObject buffer ) : void
bindTexture ( UInt32 target, System.Windows.Browser.ScriptObject texture ) : void
bufferData ( UInt32 target, ArrayBuffer data, UInt32 usage ) : void
bufferData ( UInt32 target, ArrayBufferView data, UInt32 usage ) : void
bufferData ( UInt32 target, System.Int64 size, UInt32 usage ) : void
clear ( UInt32 mask ) : void
clearColor ( System.Single red, System.Single green, System.Single blue, System.Single alpha ) : void
clearDepth ( System.Single depth ) : void
clearStencil ( Int32 s ) : void
colorMask ( System.Boolean red, System.Boolean green, System.Boolean blue, System.Boolean alpha ) : void
compileShader ( System.Windows.Browser.ScriptObject shader ) : void
createBuffer ( ) : System.Windows.Browser.ScriptObject
createFramebuffer ( ) : System.Windows.Browser.ScriptObject
createProgram ( ) : System.Windows.Browser.ScriptObject
createRenderbuffer ( ) : System.Windows.Browser.ScriptObject
createShader ( UInt32 type ) : System.Windows.Browser.ScriptObject
createTexture ( ) : System.Windows.Browser.ScriptObject
cullFace ( UInt32 mode ) : void
deleteBuffer ( System.Windows.Browser.ScriptObject buffer ) : void
deleteFramebuffer ( System.Windows.Browser.ScriptObject framebuffer ) : void
deleteProgram ( System.Windows.Browser.ScriptObject program ) : void
deleteRenderbuffer ( System.Windows.Browser.ScriptObject renderbuffer ) : void
deleteShader ( System.Windows.Browser.ScriptObject shader ) : void
deleteTexture ( System.Windows.Browser.ScriptObject texture ) : void
depthFunc ( UInt32 func ) : void
depthMask ( System.Boolean flag ) : void
depthRange ( System.Single zNear, System.Single zFar ) : void
detachShader ( System.Windows.Browser.ScriptObject program, System.Windows.Browser.ScriptObject shader ) : void
disable ( UInt32 cap ) : void
disableVertexAttribArray ( UInt32 index ) : void
drawArrays ( UInt32 mode, Int32 first, Int32 count ) : void
drawElements ( UInt32 mode, Int32 count, UInt32 type, System.Int64 offset ) : void
enable ( UInt32 cap ) : void
enableVertexAttribArray ( UInt32 index ) : void
finish ( ) : void
flush ( ) : void
framebufferRenderbuffer ( UInt32 target, UInt32 attachment, UInt32 renderbuffertarget, System.Windows.Browser.ScriptObject renderbuffer ) : void
frontFace ( UInt32 mode ) : void
generateMipmap ( UInt32 target ) : void
getAttribLocation ( System.Windows.Browser.ScriptObject program, System.String name ) : Int32
getContextAttributes ( ) : System.Windows.Browser.ScriptObject
getError ( ) : UInt32
getExtension ( System.String name ) : object
getProgramParameter ( System.Windows.Browser.ScriptObject program, UInt32 pname ) : object
getShaderInfoLog ( System.Windows.Browser.ScriptObject shader ) : System.String
getShaderParameter ( System.Windows.Browser.ScriptObject shader, UInt32 pname ) : object
getSupportedExtensions ( ) : DOMString[]
getUniformLocation ( System.Windows.Browser.ScriptObject program, System.String name ) : System.Windows.Browser.ScriptObject
hint ( UInt32 target, UInt32 mode ) : void
isBuffer ( System.Windows.Browser.ScriptObject buffer ) : System.Boolean
isContextLost ( ) : bool
isEnabled ( UInt32 cap ) : System.Boolean
isFramebuffer ( System.Windows.Browser.ScriptObject framebuffer ) : System.Boolean
isProgram ( System.Windows.Browser.ScriptObject program ) : System.Boolean
isRenderbuffer ( System.Windows.Browser.ScriptObject renderbuffer ) : System.Boolean
isShader ( System.Windows.Browser.ScriptObject shader ) : System.Boolean
isTexture ( System.Windows.Browser.ScriptObject texture ) : System.Boolean
lineWidth ( System.Single width ) : void
linkProgram ( System.Windows.Browser.ScriptObject program ) : void
pixelStorei ( UInt32 pname, Int32 param ) : void
polygonOffset ( System.Single factor, System.Single units ) : void
readPixels ( Int32 x, Int32 y, Int32 width, Int32 height, UInt32 format, UInt32 type, ArrayBufferView pixels ) : void
renderbufferStorage ( UInt32 target, UInt32 internalformat, Int32 width, Int32 height ) : void
sampleCoverage ( System.Single value, System.Boolean invert ) : void
scissor ( Int32 x, Int32 y, Int32 width, Int32 height ) : void
shaderSource ( System.Windows.Browser.ScriptObject shader, System.String source ) : void
stencilFunc ( UInt32 func, Int32 @ref, UInt32 mask ) : void
stencilFuncSeparate ( UInt32 face, UInt32 func, Int32 @ref, UInt32 mask ) : void
stencilMask ( UInt32 mask ) : void
stencilMaskSeparate ( UInt32 face, UInt32 mask ) : void
stencilOp ( UInt32 fail, UInt32 zfail, UInt32 zpass ) : void
stencilOpSeparate ( UInt32 face, UInt32 fail, UInt32 zfail, UInt32 zpass ) : void
texImage2D ( UInt32 target, Int32 level, UInt32 internalformat, Int32 width, Int32 height, Int32 border, UInt32 format, UInt32 type, ArrayBufferView pixels ) : void
texImage2D ( UInt32 target, Int32 level, UInt32 internalformat, UInt32 format, UInt32 type, System.Image image ) : void
texParameterf ( UInt32 target, UInt32 pname, System.Single param ) : void
texParameteri ( UInt32 target, UInt32 pname, Int32 param ) : void
texParameteri ( UInt32 target, UInt32 pname, UInt32 param ) : void
uniform1f ( System.Windows.Browser.ScriptObject location, System.Single x ) : void
uniform1i ( System.Windows.Browser.ScriptObject location, Int32 x ) : void
uniform3f ( System.Windows.Browser.ScriptObject location, System.Single x, System.Single y, System.Single z ) : void
uniformMatrix2fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, Float32Array value ) : void
uniformMatrix2fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, System.Single value ) : void
uniformMatrix3fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, Float32Array value ) : void
uniformMatrix3fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, System.Single value ) : void
uniformMatrix4fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, Float32Array value ) : void
uniformMatrix4fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, System.Single value ) : void
useProgram ( System.Windows.Browser.ScriptObject program ) : void
validateProgram ( System.Windows.Browser.ScriptObject program ) : void
vertexAttribPointer ( UInt32 indx, Int32 size, UInt32 type, System.Boolean normalized, Int32 stride, System.Int64 offset ) : void
viewport ( Int32 x, Int32 y, Int32 width, Int32 height ) : void

Private Methods

Méthode Description
GLboolean ( object any ) : System.Boolean
GLenum ( object any ) : UInt32
GLint ( object any ) : Int32
texImage2D ( UInt32 target, Int32 level, UInt32 internalformat, UInt32 format, UInt32 type, System.Windows.Browser.HtmlElement canvas ) : void

Method Details

GetId() public méthode

public GetId ( ScriptObject obj ) : int
obj ScriptObject
Résultat int

GetObject() public méthode

public GetObject ( int id ) : ScriptObject
id int
Résultat ScriptObject

GetObject() public méthode

public GetObject ( uint id ) : ScriptObject
id uint
Résultat ScriptObject

Invoke() public méthode

public Invoke ( string name ) : object
name string
Résultat object

WebGLRenderingContext() public méthode

public WebGLRenderingContext ( ) : System
Résultat System

WebGLRenderingContext() public méthode

public WebGLRenderingContext ( System.Windows.Browser.HtmlElement canvas ) : System
canvas System.Windows.Browser.HtmlElement
Résultat System

WebGLRenderingContext() public méthode

public WebGLRenderingContext ( System.Windows.Browser.HtmlElement canvas, System.Windows.Browser.ScriptObject attrs ) : System
canvas System.Windows.Browser.HtmlElement
attrs System.Windows.Browser.ScriptObject
Résultat System

WebGLRenderingContext() public méthode

public WebGLRenderingContext ( ScriptObject context ) : System
context ScriptObject
Résultat System

activeTexture() public méthode

public activeTexture ( UInt32 texture ) : void
texture System.UInt32
Résultat void

attachShader() public méthode

public attachShader ( System.Windows.Browser.ScriptObject program, System.Windows.Browser.ScriptObject shader ) : void
program System.Windows.Browser.ScriptObject
shader System.Windows.Browser.ScriptObject
Résultat void

bindAttribLocation() public méthode

public bindAttribLocation ( System.Windows.Browser.ScriptObject program, UInt32 index, System.String name ) : void
program System.Windows.Browser.ScriptObject
index System.UInt32
name System.String
Résultat void

bindBuffer() public méthode

public bindBuffer ( UInt32 target, System.Windows.Browser.ScriptObject buffer ) : void
target System.UInt32
buffer System.Windows.Browser.ScriptObject
Résultat void

bindTexture() public méthode

public bindTexture ( UInt32 target, System.Windows.Browser.ScriptObject texture ) : void
target System.UInt32
texture System.Windows.Browser.ScriptObject
Résultat void

bufferData() public méthode

public bufferData ( UInt32 target, ArrayBuffer data, UInt32 usage ) : void
target System.UInt32
data ArrayBuffer
usage System.UInt32
Résultat void

bufferData() public méthode

public bufferData ( UInt32 target, ArrayBufferView data, UInt32 usage ) : void
target System.UInt32
data ArrayBufferView
usage System.UInt32
Résultat void

bufferData() public méthode

public bufferData ( UInt32 target, System.Int64 size, UInt32 usage ) : void
target System.UInt32
size System.Int64
usage System.UInt32
Résultat void

clear() public méthode

public clear ( UInt32 mask ) : void
mask System.UInt32
Résultat void

clearColor() public méthode

public clearColor ( System.Single red, System.Single green, System.Single blue, System.Single alpha ) : void
red System.Single
green System.Single
blue System.Single
alpha System.Single
Résultat void

clearDepth() public méthode

public clearDepth ( System.Single depth ) : void
depth System.Single
Résultat void

clearStencil() public méthode

public clearStencil ( Int32 s ) : void
s System.Int32
Résultat void

colorMask() public méthode

public colorMask ( System.Boolean red, System.Boolean green, System.Boolean blue, System.Boolean alpha ) : void
red System.Boolean
green System.Boolean
blue System.Boolean
alpha System.Boolean
Résultat void

compileShader() public méthode

public compileShader ( System.Windows.Browser.ScriptObject shader ) : void
shader System.Windows.Browser.ScriptObject
Résultat void

createBuffer() public méthode

public createBuffer ( ) : System.Windows.Browser.ScriptObject
Résultat System.Windows.Browser.ScriptObject

createFramebuffer() public méthode

public createFramebuffer ( ) : System.Windows.Browser.ScriptObject
Résultat System.Windows.Browser.ScriptObject

createProgram() public méthode

public createProgram ( ) : System.Windows.Browser.ScriptObject
Résultat System.Windows.Browser.ScriptObject

createRenderbuffer() public méthode

public createRenderbuffer ( ) : System.Windows.Browser.ScriptObject
Résultat System.Windows.Browser.ScriptObject

createShader() public méthode

public createShader ( UInt32 type ) : System.Windows.Browser.ScriptObject
type System.UInt32
Résultat System.Windows.Browser.ScriptObject

createTexture() public méthode

public createTexture ( ) : System.Windows.Browser.ScriptObject
Résultat System.Windows.Browser.ScriptObject

cullFace() public méthode

public cullFace ( UInt32 mode ) : void
mode System.UInt32
Résultat void

deleteBuffer() public méthode

public deleteBuffer ( System.Windows.Browser.ScriptObject buffer ) : void
buffer System.Windows.Browser.ScriptObject
Résultat void

deleteFramebuffer() public méthode

public deleteFramebuffer ( System.Windows.Browser.ScriptObject framebuffer ) : void
framebuffer System.Windows.Browser.ScriptObject
Résultat void

deleteProgram() public méthode

public deleteProgram ( System.Windows.Browser.ScriptObject program ) : void
program System.Windows.Browser.ScriptObject
Résultat void

deleteRenderbuffer() public méthode

public deleteRenderbuffer ( System.Windows.Browser.ScriptObject renderbuffer ) : void
renderbuffer System.Windows.Browser.ScriptObject
Résultat void

deleteShader() public méthode

public deleteShader ( System.Windows.Browser.ScriptObject shader ) : void
shader System.Windows.Browser.ScriptObject
Résultat void

deleteTexture() public méthode

public deleteTexture ( System.Windows.Browser.ScriptObject texture ) : void
texture System.Windows.Browser.ScriptObject
Résultat void

depthFunc() public méthode

public depthFunc ( UInt32 func ) : void
func System.UInt32
Résultat void

depthMask() public méthode

public depthMask ( System.Boolean flag ) : void
flag System.Boolean
Résultat void

depthRange() public méthode

public depthRange ( System.Single zNear, System.Single zFar ) : void
zNear System.Single
zFar System.Single
Résultat void

detachShader() public méthode

public detachShader ( System.Windows.Browser.ScriptObject program, System.Windows.Browser.ScriptObject shader ) : void
program System.Windows.Browser.ScriptObject
shader System.Windows.Browser.ScriptObject
Résultat void

disable() public méthode

public disable ( UInt32 cap ) : void
cap System.UInt32
Résultat void

disableVertexAttribArray() public méthode

public disableVertexAttribArray ( UInt32 index ) : void
index System.UInt32
Résultat void

drawArrays() public méthode

public drawArrays ( UInt32 mode, Int32 first, Int32 count ) : void
mode System.UInt32
first System.Int32
count System.Int32
Résultat void

drawElements() public méthode

public drawElements ( UInt32 mode, Int32 count, UInt32 type, System.Int64 offset ) : void
mode System.UInt32
count System.Int32
type System.UInt32
offset System.Int64
Résultat void

enable() public méthode

public enable ( UInt32 cap ) : void
cap System.UInt32
Résultat void

enableVertexAttribArray() public méthode

public enableVertexAttribArray ( UInt32 index ) : void
index System.UInt32
Résultat void

finish() public méthode

public finish ( ) : void
Résultat void

flush() public méthode

public flush ( ) : void
Résultat void

framebufferRenderbuffer() public méthode

public framebufferRenderbuffer ( UInt32 target, UInt32 attachment, UInt32 renderbuffertarget, System.Windows.Browser.ScriptObject renderbuffer ) : void
target System.UInt32
attachment System.UInt32
renderbuffertarget System.UInt32
renderbuffer System.Windows.Browser.ScriptObject
Résultat void

frontFace() public méthode

public frontFace ( UInt32 mode ) : void
mode System.UInt32
Résultat void

generateMipmap() public méthode

public generateMipmap ( UInt32 target ) : void
target System.UInt32
Résultat void

getAttribLocation() public méthode

public getAttribLocation ( System.Windows.Browser.ScriptObject program, System.String name ) : Int32
program System.Windows.Browser.ScriptObject
name System.String
Résultat System.Int32

getContextAttributes() public méthode

public getContextAttributes ( ) : System.Windows.Browser.ScriptObject
Résultat System.Windows.Browser.ScriptObject

getError() public méthode

public getError ( ) : UInt32
Résultat System.UInt32

getExtension() public méthode

public getExtension ( System.String name ) : object
name System.String
Résultat object

getProgramParameter() public méthode

public getProgramParameter ( System.Windows.Browser.ScriptObject program, UInt32 pname ) : object
program System.Windows.Browser.ScriptObject
pname System.UInt32
Résultat object

getShaderInfoLog() public méthode

public getShaderInfoLog ( System.Windows.Browser.ScriptObject shader ) : System.String
shader System.Windows.Browser.ScriptObject
Résultat System.String

getShaderParameter() public méthode

public getShaderParameter ( System.Windows.Browser.ScriptObject shader, UInt32 pname ) : object
shader System.Windows.Browser.ScriptObject
pname System.UInt32
Résultat object

getSupportedExtensions() public méthode

public getSupportedExtensions ( ) : DOMString[]
Résultat DOMString[]

getUniformLocation() public méthode

public getUniformLocation ( System.Windows.Browser.ScriptObject program, System.String name ) : System.Windows.Browser.ScriptObject
program System.Windows.Browser.ScriptObject
name System.String
Résultat System.Windows.Browser.ScriptObject

hint() public méthode

public hint ( UInt32 target, UInt32 mode ) : void
target System.UInt32
mode System.UInt32
Résultat void

isBuffer() public méthode

public isBuffer ( System.Windows.Browser.ScriptObject buffer ) : System.Boolean
buffer System.Windows.Browser.ScriptObject
Résultat System.Boolean

isContextLost() public méthode

public isContextLost ( ) : bool
Résultat bool

isEnabled() public méthode

public isEnabled ( UInt32 cap ) : System.Boolean
cap System.UInt32
Résultat System.Boolean

isFramebuffer() public méthode

public isFramebuffer ( System.Windows.Browser.ScriptObject framebuffer ) : System.Boolean
framebuffer System.Windows.Browser.ScriptObject
Résultat System.Boolean

isProgram() public méthode

public isProgram ( System.Windows.Browser.ScriptObject program ) : System.Boolean
program System.Windows.Browser.ScriptObject
Résultat System.Boolean

isRenderbuffer() public méthode

public isRenderbuffer ( System.Windows.Browser.ScriptObject renderbuffer ) : System.Boolean
renderbuffer System.Windows.Browser.ScriptObject
Résultat System.Boolean

isShader() public méthode

public isShader ( System.Windows.Browser.ScriptObject shader ) : System.Boolean
shader System.Windows.Browser.ScriptObject
Résultat System.Boolean

isTexture() public méthode

public isTexture ( System.Windows.Browser.ScriptObject texture ) : System.Boolean
texture System.Windows.Browser.ScriptObject
Résultat System.Boolean

lineWidth() public méthode

public lineWidth ( System.Single width ) : void
width System.Single
Résultat void

linkProgram() public méthode

public linkProgram ( System.Windows.Browser.ScriptObject program ) : void
program System.Windows.Browser.ScriptObject
Résultat void

pixelStorei() public méthode

public pixelStorei ( UInt32 pname, Int32 param ) : void
pname System.UInt32
param System.Int32
Résultat void

polygonOffset() public méthode

public polygonOffset ( System.Single factor, System.Single units ) : void
factor System.Single
units System.Single
Résultat void

readPixels() public méthode

public readPixels ( Int32 x, Int32 y, Int32 width, Int32 height, UInt32 format, UInt32 type, ArrayBufferView pixels ) : void
x System.Int32
y System.Int32
width System.Int32
height System.Int32
format System.UInt32
type System.UInt32
pixels ArrayBufferView
Résultat void

renderbufferStorage() public méthode

public renderbufferStorage ( UInt32 target, UInt32 internalformat, Int32 width, Int32 height ) : void
target System.UInt32
internalformat System.UInt32
width System.Int32
height System.Int32
Résultat void

sampleCoverage() public méthode

public sampleCoverage ( System.Single value, System.Boolean invert ) : void
value System.Single
invert System.Boolean
Résultat void

scissor() public méthode

public scissor ( Int32 x, Int32 y, Int32 width, Int32 height ) : void
x System.Int32
y System.Int32
width System.Int32
height System.Int32
Résultat void

shaderSource() public méthode

public shaderSource ( System.Windows.Browser.ScriptObject shader, System.String source ) : void
shader System.Windows.Browser.ScriptObject
source System.String
Résultat void

stencilFunc() public méthode

public stencilFunc ( UInt32 func, Int32 @ref, UInt32 mask ) : void
func System.UInt32
@ref System.Int32
mask System.UInt32
Résultat void

stencilFuncSeparate() public méthode

public stencilFuncSeparate ( UInt32 face, UInt32 func, Int32 @ref, UInt32 mask ) : void
face System.UInt32
func System.UInt32
@ref System.Int32
mask System.UInt32
Résultat void

stencilMask() public méthode

public stencilMask ( UInt32 mask ) : void
mask System.UInt32
Résultat void

stencilMaskSeparate() public méthode

public stencilMaskSeparate ( UInt32 face, UInt32 mask ) : void
face System.UInt32
mask System.UInt32
Résultat void

stencilOp() public méthode

public stencilOp ( UInt32 fail, UInt32 zfail, UInt32 zpass ) : void
fail System.UInt32
zfail System.UInt32
zpass System.UInt32
Résultat void

stencilOpSeparate() public méthode

public stencilOpSeparate ( UInt32 face, UInt32 fail, UInt32 zfail, UInt32 zpass ) : void
face System.UInt32
fail System.UInt32
zfail System.UInt32
zpass System.UInt32
Résultat void

texImage2D() public méthode

public texImage2D ( UInt32 target, Int32 level, UInt32 internalformat, Int32 width, Int32 height, Int32 border, UInt32 format, UInt32 type, ArrayBufferView pixels ) : void
target System.UInt32
level System.Int32
internalformat System.UInt32
width System.Int32
height System.Int32
border System.Int32
format System.UInt32
type System.UInt32
pixels ArrayBufferView
Résultat void

texImage2D() public méthode

public texImage2D ( UInt32 target, Int32 level, UInt32 internalformat, UInt32 format, UInt32 type, System.Image image ) : void
target System.UInt32
level System.Int32
internalformat System.UInt32
format System.UInt32
type System.UInt32
image System.Image
Résultat void

texParameterf() public méthode

public texParameterf ( UInt32 target, UInt32 pname, System.Single param ) : void
target System.UInt32
pname System.UInt32
param System.Single
Résultat void

texParameteri() public méthode

public texParameteri ( UInt32 target, UInt32 pname, Int32 param ) : void
target System.UInt32
pname System.UInt32
param System.Int32
Résultat void

texParameteri() public méthode

public texParameteri ( UInt32 target, UInt32 pname, UInt32 param ) : void
target System.UInt32
pname System.UInt32
param System.UInt32
Résultat void

uniform1f() public méthode

public uniform1f ( System.Windows.Browser.ScriptObject location, System.Single x ) : void
location System.Windows.Browser.ScriptObject
x System.Single
Résultat void

uniform1i() public méthode

public uniform1i ( System.Windows.Browser.ScriptObject location, Int32 x ) : void
location System.Windows.Browser.ScriptObject
x System.Int32
Résultat void

uniform3f() public méthode

public uniform3f ( System.Windows.Browser.ScriptObject location, System.Single x, System.Single y, System.Single z ) : void
location System.Windows.Browser.ScriptObject
x System.Single
y System.Single
z System.Single
Résultat void

uniformMatrix2fv() public méthode

public uniformMatrix2fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, Float32Array value ) : void
location System.Windows.Browser.ScriptObject
transpose System.Boolean
value Float32Array
Résultat void

uniformMatrix2fv() public méthode

public uniformMatrix2fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, System.Single value ) : void
location System.Windows.Browser.ScriptObject
transpose System.Boolean
value System.Single
Résultat void

uniformMatrix3fv() public méthode

public uniformMatrix3fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, Float32Array value ) : void
location System.Windows.Browser.ScriptObject
transpose System.Boolean
value Float32Array
Résultat void

uniformMatrix3fv() public méthode

public uniformMatrix3fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, System.Single value ) : void
location System.Windows.Browser.ScriptObject
transpose System.Boolean
value System.Single
Résultat void

uniformMatrix4fv() public méthode

public uniformMatrix4fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, Float32Array value ) : void
location System.Windows.Browser.ScriptObject
transpose System.Boolean
value Float32Array
Résultat void

uniformMatrix4fv() public méthode

public uniformMatrix4fv ( System.Windows.Browser.ScriptObject location, System.Boolean transpose, System.Single value ) : void
location System.Windows.Browser.ScriptObject
transpose System.Boolean
value System.Single
Résultat void

useProgram() public méthode

public useProgram ( System.Windows.Browser.ScriptObject program ) : void
program System.Windows.Browser.ScriptObject
Résultat void

validateProgram() public méthode

public validateProgram ( System.Windows.Browser.ScriptObject program ) : void
program System.Windows.Browser.ScriptObject
Résultat void

vertexAttribPointer() public méthode

public vertexAttribPointer ( UInt32 indx, Int32 size, UInt32 type, System.Boolean normalized, Int32 stride, System.Int64 offset ) : void
indx System.UInt32
size System.Int32
type System.UInt32
normalized System.Boolean
stride System.Int32
offset System.Int64
Résultat void

viewport() public méthode

public viewport ( Int32 x, Int32 y, Int32 width, Int32 height ) : void
x System.Int32
y System.Int32
width System.Int32
height System.Int32
Résultat void