An instance of this object is returned by Texture::peek(). More...
Public Member Functions | |
filterRect (VBase4 color, float min_u, float min_v, float max_u, float max_v) | |
Fills "color" with the average RGBA color of the texels within the rectangle defined by the specified coordinate range. | |
filterRect (VBase4 color, float min_u, float min_v, float min_w, float max_u, float max_v, float max_w) | |
Fills "color" with the average RGBA color of the texels within the rectangle defined by the specified coordinate range. | |
int | getXSize () |
Returns the width of the texture image that is contributing to the TexturePeeker's information. | |
int | getYSize () |
Returns the height of the texture image that is contributing to the TexturePeeker's information. | |
int | getZSize () |
Returns the depth of the texture image that is contributing to the TexturePeeker's information. | |
lookup (VBase4 color, float u, float v) | |
Fills "color" with the RGBA color of the texel at point (u, v). | |
lookup (VBase4 color, float u, float v, float w) | |
Fills "color" with the RGBA color of the texel at point (u, v, w). |
An instance of this object is returned by Texture::peek().
This object allows quick and easy inspection of a texture's texels by (u, v) coordinates.
filterRect | ( | VBase4 | color, |
float | min_u, | ||
float | min_v, | ||
float | max_u, | ||
float | max_v | ||
) |
Fills "color" with the average RGBA color of the texels within the rectangle defined by the specified coordinate range.
The texel color is linearly filtered over the entire region. u, v, and w will wrap around regardless of the texture's wrap mode.
filterRect | ( | VBase4 | color, |
float | min_u, | ||
float | min_v, | ||
float | min_w, | ||
float | max_u, | ||
float | max_v, | ||
float | max_w | ||
) |
Fills "color" with the average RGBA color of the texels within the rectangle defined by the specified coordinate range.
The texel color is linearly filtered over the entire region. u, v, and w will wrap around regardless of the texture's wrap mode.
Returns the width of the texture image that is contributing to the TexturePeeker's information.
This may be either the Texture's full width, or its simple ram image's width.
Returns the height of the texture image that is contributing to the TexturePeeker's information.
This may be either the Texture's full height, or its simple ram image's height.
Returns the depth of the texture image that is contributing to the TexturePeeker's information.
Fills "color" with the RGBA color of the texel at point (u, v).
The texel color is determined via nearest-point sampling (no filtering of adjacent pixels), regardless of the filter type associated with the texture. u, v, and w will wrap around regardless of the texture's wrap mode.
Fills "color" with the RGBA color of the texel at point (u, v, w).
The texel color is determined via nearest-point sampling (no filtering of adjacent pixels), regardless of the filter type associated with the texture. u, v, and w will wrap around regardless of the texture's wrap mode.