Target for off-screen 2D rendering into a texture. More...
#include <RenderTexture.hpp>
Public Member Functions | |
RenderTexture () | |
Default constructor. More... | |
virtual | ~RenderTexture () |
Destructor. More... | |
bool | create (unsigned int width, unsigned int height, bool depthBuffer=false) |
Create the render-texture. More... | |
void | setSmooth (bool smooth) |
Enable or disable texture smoothing. More... | |
bool | isSmooth () const |
Tell whether the smooth filtering is enabled or not. More... | |
void | setRepeated (bool repeated) |
Enable or disable texture repeating. More... | |
bool | isRepeated () const |
Tell whether the texture is repeated or not. More... | |
bool | generateMipmap () |
Generate a mipmap using the current texture data. More... | |
bool | setActive (bool active=true) |
Activate or deactivate the render-texture for rendering. More... | |
void | display () |
Update the contents of the target texture. More... | |
virtual Vector2u | getSize () const |
Return the size of the rendering region of the texture. More... | |
const Texture & | getTexture () const |
Get a read-only reference to the target texture. More... | |
void | clear (const Color &color=Color(0, 0, 0, 255)) |
Clear the entire target with a single color. More... | |
void | setView (const View &view) |
Change the current active view. More... | |
const View & | getView () const |
Get the view currently in use in the render target. More... | |
const View & | getDefaultView () const |
Get the default view of the render target. More... | |
IntRect | getViewport (const View &view) const |
Get the viewport of a view, applied to this render target. More... | |
Vector2f | mapPixelToCoords (const Vector2i &point) const |
Convert a point from target coordinates to world coordinates, using the current view. More... | |
Vector2f | mapPixelToCoords (const Vector2i &point, const View &view) const |
Convert a point from target coordinates to world coordinates. More... | |
Vector2i | mapCoordsToPixel (const Vector2f &point) const |
Convert a point from world coordinates to target coordinates, using the current view. More... | |
Vector2i | mapCoordsToPixel (const Vector2f &point, const View &view) const |
Convert a point from world coordinates to target coordinates. More... | |
void | draw (const Drawable &drawable, const RenderStates &states=RenderStates::Default) |
Draw a drawable object to the render target. More... | |
void | draw (const Vertex *vertices, std::size_t vertexCount, PrimitiveType type, const RenderStates &states=RenderStates::Default) |
Draw primitives defined by an array of vertices. More... | |
void | pushGLStates () |
Save the current OpenGL render states and matrices. More... | |
void | popGLStates () |
Restore the previously saved OpenGL render states and matrices. More... | |
void | resetGLStates () |
Reset the internal OpenGL states so that the target is ready for drawing. More... | |
Protected Member Functions | |
void | initialize () |
Performs the common initialization step after creation. More... | |
Target for off-screen 2D rendering into a texture.
sf::RenderTexture is the little brother of sf::RenderWindow.
It implements the same 2D drawing and OpenGL-related functions (see their base class sf::RenderTarget for more details), the difference is that the result is stored in an off-screen texture rather than being show in a window.
Rendering to a texture can be useful in a variety of situations:
Usage example:
Like sf::RenderWindow, sf::RenderTexture is still able to render direct OpenGL stuff. It is even possible to mix together OpenGL calls and regular SFML drawing commands. If you need a depth buffer for 3D rendering, don't forget to request it when calling RenderTexture::create.
Definition at line 47 of file RenderTexture.hpp.
sf::RenderTexture::RenderTexture | ( | ) |
Default constructor.
Constructs an empty, invalid render-texture. You must call create to have a valid render-texture.
|
virtual |
Destructor.
Clear the entire target with a single color.
This function is usually called once every frame, to clear the previous contents of the target.
color | Fill color to use to clear the render target |
bool sf::RenderTexture::create | ( | unsigned int | width, |
unsigned int | height, | ||
bool | depthBuffer = false |
||
) |
Create the render-texture.
Before calling this function, the render-texture is in an invalid state, thus it is mandatory to call it before doing anything with the render-texture. The last parameter, depthBuffer, is useful if you want to use the render-texture for 3D OpenGL rendering that requires a depth buffer. Otherwise it is unnecessary, and you should leave this parameter to false (which is its default value).
width | Width of the render-texture |
height | Height of the render-texture |
depthBuffer | Do you want this render-texture to have a depth buffer? |
void sf::RenderTexture::display | ( | ) |
Update the contents of the target texture.
This function updates the target texture with what has been drawn so far. Like for windows, calling this function is mandatory at the end of rendering. Not calling it may leave the texture in an undefined state.
|
inherited |
Draw a drawable object to the render target.
drawable | Object to draw |
states | Render states to use for drawing |
|
inherited |
Draw primitives defined by an array of vertices.
vertices | Pointer to the vertices |
vertexCount | Number of vertices in the array |
type | Type of primitives to draw |
states | Render states to use for drawing |
bool sf::RenderTexture::generateMipmap | ( | ) |
Generate a mipmap using the current texture data.
This function is similar to Texture::generateMipmap and operates on the texture used as the target for drawing. Be aware that any draw operation may modify the base level image data. For this reason, calling this function only makes sense after all drawing is completed and display has been called. Not calling display after subsequent drawing will lead to undefined behavior if a mipmap had been previously generated.
|
inherited |
|
virtual |
Return the size of the rendering region of the texture.
The returned value is the size that you passed to the create function.
Implements sf::RenderTarget.
const Texture& sf::RenderTexture::getTexture | ( | ) | const |
Get a read-only reference to the target texture.
After drawing to the render-texture and calling Display, you can retrieve the updated texture using this function, and draw it using a sprite (for example). The internal sf::Texture of a render-texture is always the same instance, so that it is possible to call this function once and keep a reference to the texture even after it is modified.
|
inherited |
Get the view currently in use in the render target.
Get the viewport of a view, applied to this render target.
The viewport is defined in the view as a ratio, this function simply applies this ratio to the current dimensions of the render target to calculate the pixels rectangle that the viewport actually covers in the target.
view | The view for which we want to compute the viewport |
|
protectedinherited |
Performs the common initialization step after creation.
The derived classes must call this function after the target is created and ready for drawing.
bool sf::RenderTexture::isRepeated | ( | ) | const |
bool sf::RenderTexture::isSmooth | ( | ) | const |
Tell whether the smooth filtering is enabled or not.
Convert a point from world coordinates to target coordinates, using the current view.
This function is an overload of the mapCoordsToPixel function that implicitly uses the current view. It is equivalent to:
point | Point to convert |
|
inherited |
Convert a point from world coordinates to target coordinates.
This function finds the pixel of the render target that matches the given 2D point. In other words, it goes through the same process as the graphics card, to compute the final position of a rendered point.
Initially, both coordinate systems (world units and target pixels) match perfectly. But if you define a custom view or resize your render target, this assertion is not true anymore, i.e. a point located at (150, 75) in your 2D world may map to the pixel (10, 50) of your render target – if the view is translated by (140, 25).
This version uses a custom view for calculations, see the other overload of the function if you want to use the current view of the render target.
point | Point to convert |
view | The view to use for converting the point |
Convert a point from target coordinates to world coordinates, using the current view.
This function is an overload of the mapPixelToCoords function that implicitly uses the current view. It is equivalent to:
point | Pixel to convert |
|
inherited |
Convert a point from target coordinates to world coordinates.
This function finds the 2D position that matches the given pixel of the render target. In other words, it does the inverse of what the graphics card does, to find the initial position of a rendered pixel.
Initially, both coordinate systems (world units and target pixels) match perfectly. But if you define a custom view or resize your render target, this assertion is not true anymore, i.e. a point located at (10, 50) in your render target may map to the point (150, 75) in your 2D world – if the view is translated by (140, 25).
For render-windows, this function is typically used to find which point (or object) is located below the mouse cursor.
This version uses a custom view for calculations, see the other overload of the function if you want to use the current view of the render target.
point | Pixel to convert |
view | The view to use for converting the point |
|
inherited |
Restore the previously saved OpenGL render states and matrices.
See the description of pushGLStates to get a detailed description of these functions.
|
inherited |
Save the current OpenGL render states and matrices.
This function can be used when you mix SFML drawing and direct OpenGL rendering. Combined with popGLStates, it ensures that:
More specifically, it must be used around code that calls Draw functions. Example:
Note that this function is quite expensive: it saves all the possible OpenGL states and matrices, even the ones you don't care about. Therefore it should be used wisely. It is provided for convenience, but the best results will be achieved if you handle OpenGL states yourself (because you know which states have really changed, and need to be saved and restored). Take a look at the resetGLStates function if you do so.
|
inherited |
Reset the internal OpenGL states so that the target is ready for drawing.
This function can be used when you mix SFML drawing and direct OpenGL rendering, if you choose not to use pushGLStates/popGLStates. It makes sure that all OpenGL states needed by SFML are set, so that subsequent draw() calls will work as expected.
Example:
bool sf::RenderTexture::setActive | ( | bool | active = true | ) |
Activate or deactivate the render-texture for rendering.
This function makes the render-texture's context current for future OpenGL rendering operations (so you shouldn't care about it if you're not doing direct OpenGL stuff). Only one context can be current in a thread, so if you want to draw OpenGL geometry to another render target (like a RenderWindow) don't forget to activate it again.
active | True to activate, false to deactivate |
void sf::RenderTexture::setRepeated | ( | bool | repeated | ) |
Enable or disable texture repeating.
This function is similar to Texture::setRepeated. This parameter is disabled by default.
repeated | True to enable repeating, false to disable it |
void sf::RenderTexture::setSmooth | ( | bool | smooth | ) |
Enable or disable texture smoothing.
This function is similar to Texture::setSmooth. This parameter is disabled by default.
smooth | True to enable smoothing, false to disable it |
|
inherited |
Change the current active view.
The view is like a 2D camera, it controls which part of the 2D scene is visible, and how it is viewed in the render target. The new view will affect everything that is drawn, until another view is set. The render target keeps its own copy of the view object, so it is not necessary to keep the original one alive after calling this function. To restore the original view of the target, you can pass the result of getDefaultView() to this function.
view | New view to use |