Method | Description | |
---|---|---|
ApplyParameters ( |
Applies the specified parameters onto this texture.
|
|
Equals ( object obj ) : bool |
Checks whether this instance is equal to the specified object.
|
|
GetTransparencyType ( ) : TextureTransparencyType |
Gets the type of transparency encountered in this texture.
|
|
Texture ( int width, int height, int bitsPerPixel, byte bytes ) : System |
Creates a new instance of this class.
|
|
operator ( ) : bool |
Checks whether two textures are equal.
|
public ApplyParameters ( |
||
parameters | The parameters, or a null reference. | |
return |
public GetTransparencyType ( ) : TextureTransparencyType | ||
return | TextureTransparencyType |
public Texture ( int width, int height, int bitsPerPixel, byte bytes ) : System | ||
width | int | The width of the texture in pixels. |
height | int | The height of the texture in pixels. |
bitsPerPixel | int | The number of bits per pixel. Must be 32. |
bytes | byte | The texture data. Pixels are stored row-based from top to bottom, and within a row from left to right. For 32 bits per pixel, four bytes are used in the order red, green, blue and alpha. |
return | System |