-
Notifications
You must be signed in to change notification settings - Fork 3
Texture.API
Henryk Wollik edited this page Jul 29, 2014
·
1 revision
Texture
Name | Type | Argument | Description |
---|---|---|---|
data |
Uint8Array | Float32Array | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | The data |
|
width |
Number | Data width |
|
height |
Number | Data height |
|
format |
Texture.Format |
<optional> |
The format |
- Source:
-
<static> createBlank() → {Texture}
-
Returns a new white texture.
- Source:
- Type
- Texture
-
<static> createFromImage(image, format) → {Texture}
-
Returns a new texture form an image
Name Type Description image
HTMLImageElement format
- Source:
- Type
- Texture
-
<static> createRandom(width, height, format, valueR, valueG, valueB, valueA) → {Texture}
-
Returns a randomly pixelated texture.
Name Type Argument Description width
Number The width
height
Number The height
format
Texture.Format <optional>
The format
valueR
Number <optional>
Optional fixed red value, random if null
valueG
Number <optional>
Optional fixed green value, random if null
valueB
Number <optional>
Optional fixed blue value, random if null
valueA
Number <optional>
Optional fixed alpha value, random if null
- Source:
- Type
- Texture
-
Activates & binds the texture.
Name Type Argument Description unit
Number <optional>
The texture unit
- Source:
-
Delete the texture.
- Source:
-
Returns the textures format.
- Source:
- Type
- Number
-
Returns the webgl texture.
- Source:
- Type
- WebGLTexture
-
Returns the height of the texture
- Source:
- Type
- Number
-
getSize(v) → {Vec2}
-
Returns the size of the texture.
Name Type Argument Description v
Vec2 <optional>
Out size
- Source:
- Type
- Vec2
-
Returns the width of the texture.
- Source:
- Type
- Number
-
Unbind the texture
Name Type Description unit
- Source:
-
Writes new data to the texture.
Name Type Argument Description data
Uint8Array | Float32Array The data
offsetX
Number <optional>
offsetY
Number <optional>
width
Number <optional>
height
Number <optional>
- Source: