Functions
Texture.h File Reference
#include <SFML/Graphics/Export.h>
#include <SFML/Graphics/Rect.h>
#include <SFML/Graphics/Types.h>
#include <SFML/Window/Types.h>
#include <SFML/System/InputStream.h>
#include <SFML/System/Vector2.h>
#include <stddef.h>

Go to the source code of this file.

Functions

CSFML_GRAPHICS_API sfTexturesfTexture_create (unsigned int width, unsigned int height)
 Create a new texture.
 
CSFML_GRAPHICS_API sfTexturesfTexture_createFromFile (const char *filename, const sfIntRect *area)
 Create a new texture from a file.
 
CSFML_GRAPHICS_API sfTexturesfTexture_createFromMemory (const void *data, size_t sizeInBytes, const sfIntRect *area)
 Create a new texture from a file in memory.
 
CSFML_GRAPHICS_API sfTexturesfTexture_createFromStream (sfInputStream *stream, const sfIntRect *area)
 Create a new texture from a custom stream.
 
CSFML_GRAPHICS_API sfTexturesfTexture_createFromImage (const sfImage *image, const sfIntRect *area)
 Create a new texture from an image.
 
CSFML_GRAPHICS_API sfTexturesfTexture_copy (const sfTexture *texture)
 Copy an existing texture.
 
CSFML_GRAPHICS_API void sfTexture_destroy (sfTexture *texture)
 Destroy an existing texture.
 
CSFML_GRAPHICS_API sfVector2u sfTexture_getSize (const sfTexture *texture)
 Return the size of the texture.
 
CSFML_GRAPHICS_API sfImagesfTexture_copyToImage (const sfTexture *texture)
 Copy a texture's pixels to an image.
 
CSFML_GRAPHICS_API void sfTexture_updateFromPixels (sfTexture *texture, const sfUint8 *pixels, unsigned int width, unsigned int height, unsigned int x, unsigned int y)
 Update a texture from an array of pixels.
 
CSFML_GRAPHICS_API void sfTexture_updateFromImage (sfTexture *texture, const sfImage *image, unsigned int x, unsigned int y)
 Update a texture from an image.
 
CSFML_GRAPHICS_API void sfTexture_updateFromWindow (sfTexture *texture, const sfWindow *window, unsigned int x, unsigned int y)
 Update a texture from the contents of a window.
 
CSFML_GRAPHICS_API void sfTexture_updateFromRenderWindow (sfTexture *texture, const sfRenderWindow *renderWindow, unsigned int x, unsigned int y)
 Update a texture from the contents of a render-window.
 
CSFML_GRAPHICS_API void sfTexture_setSmooth (sfTexture *texture, sfBool smooth)
 Enable or disable the smooth filter on a texture.
 
CSFML_GRAPHICS_API sfBool sfTexture_isSmooth (const sfTexture *texture)
 Tell whether the smooth filter is enabled or not for a texture.
 
CSFML_GRAPHICS_API void sfTexture_setRepeated (sfTexture *texture, sfBool repeated)
 Enable or disable repeating for a texture.
 
CSFML_GRAPHICS_API sfBool sfTexture_isRepeated (const sfTexture *texture)
 Tell whether a texture is repeated or not.
 
CSFML_GRAPHICS_API void sfTexture_bind (const sfTexture *texture)
 Bind a texture for rendering.
 
CSFML_GRAPHICS_API unsigned int sfTexture_getMaximumSize ()
 Get the maximum texture size allowed.
 

Function Documentation

CSFML_GRAPHICS_API void sfTexture_bind ( const sfTexture texture)

Bind a texture for rendering.

This function is not part of the graphics API, it mustn't be used when drawing SFML entities. It must be used only if you mix sfTexture with OpenGL code.

sfTexture *t1, *t2;
...
sfTexture_bind(t1);
// draw OpenGL stuff that use t1...
// draw OpenGL stuff that use t2...
// draw OpenGL stuff that use no texture...
Parameters
texturePointer to the texture to bind, can be null to use no texture
CSFML_GRAPHICS_API sfTexture* sfTexture_copy ( const sfTexture texture)

Copy an existing texture.

Parameters
textureTexture to copy
Returns
Copied object
CSFML_GRAPHICS_API sfImage* sfTexture_copyToImage ( const sfTexture texture)

Copy a texture's pixels to an image.

Parameters
textureTexture to copy
Returns
Image containing the texture's pixels
CSFML_GRAPHICS_API sfTexture* sfTexture_create ( unsigned int  width,
unsigned int  height 
)

Create a new texture.

Parameters
widthTexture width
heightTexture height
Returns
A new sfTexture object, or NULL if it failed
CSFML_GRAPHICS_API sfTexture* sfTexture_createFromFile ( const char *  filename,
const sfIntRect area 
)

Create a new texture from a file.

Parameters
filenamePath of the image file to load
areaArea of the source image to load (NULL to load the entire image)
Returns
A new sfTexture object, or NULL if it failed
CSFML_GRAPHICS_API sfTexture* sfTexture_createFromImage ( const sfImage image,
const sfIntRect area 
)

Create a new texture from an image.

Parameters
imageImage to upload to the texture
areaArea of the source image to load (NULL to load the entire image)
Returns
A new sfTexture object, or NULL if it failed
CSFML_GRAPHICS_API sfTexture* sfTexture_createFromMemory ( const void *  data,
size_t  sizeInBytes,
const sfIntRect area 
)

Create a new texture from a file in memory.

Parameters
dataPointer to the file data in memory
sizeInBytesSize of the data to load, in bytes
areaArea of the source image to load (NULL to load the entire image)
Returns
A new sfTexture object, or NULL if it failed
CSFML_GRAPHICS_API sfTexture* sfTexture_createFromStream ( sfInputStream stream,
const sfIntRect area 
)

Create a new texture from a custom stream.

Parameters
streamSource stream to read from
areaArea of the source image to load (NULL to load the entire image)
Returns
A new sfTexture object, or NULL if it failed
CSFML_GRAPHICS_API void sfTexture_destroy ( sfTexture texture)

Destroy an existing texture.

Parameters
textureTexture to delete
CSFML_GRAPHICS_API unsigned int sfTexture_getMaximumSize ( )

Get the maximum texture size allowed.

Returns
Maximum size allowed for textures, in pixels
CSFML_GRAPHICS_API sfVector2u sfTexture_getSize ( const sfTexture texture)

Return the size of the texture.

Parameters
textureTexture to read
Returns
Size in pixels
CSFML_GRAPHICS_API sfBool sfTexture_isRepeated ( const sfTexture texture)

Tell whether a texture is repeated or not.

Parameters
textureThe texture object
Returns
sfTrue if repeat mode is enabled, sfFalse if it is disabled
CSFML_GRAPHICS_API sfBool sfTexture_isSmooth ( const sfTexture texture)

Tell whether the smooth filter is enabled or not for a texture.

Parameters
textureThe texture object
Returns
sfTrue if smoothing is enabled, sfFalse if it is disabled
CSFML_GRAPHICS_API void sfTexture_setRepeated ( sfTexture texture,
sfBool  repeated 
)

Enable or disable repeating for a texture.

Repeating is involved when using texture coordinates outside the texture rectangle [0, 0, width, height]. In this case, if repeat mode is enabled, the whole texture will be repeated as many times as needed to reach the coordinate (for example, if the X texture coordinate is 3 * width, the texture will be repeated 3 times). If repeat mode is disabled, the "extra space" will instead be filled with border pixels. Warning: on very old graphics cards, white pixels may appear when the texture is repeated. With such cards, repeat mode can be used reliably only if the texture has power-of-two dimensions (such as 256x128). Repeating is disabled by default.

Parameters
textureThe texture object
repeatedTrue to repeat the texture, false to disable repeating
CSFML_GRAPHICS_API void sfTexture_setSmooth ( sfTexture texture,
sfBool  smooth 
)

Enable or disable the smooth filter on a texture.

Parameters
textureThe texture object
smoothsfTrue to enable smoothing, sfFalse to disable it
CSFML_GRAPHICS_API void sfTexture_updateFromImage ( sfTexture texture,
const sfImage image,
unsigned int  x,
unsigned int  y 
)

Update a texture from an image.

Parameters
textureTexture to update
imageImage to copy to the texture
xX offset in the texture where to copy the source pixels
yY offset in the texture where to copy the source pixels
CSFML_GRAPHICS_API void sfTexture_updateFromPixels ( sfTexture texture,
const sfUint8 pixels,
unsigned int  width,
unsigned int  height,
unsigned int  x,
unsigned int  y 
)

Update a texture from an array of pixels.

Parameters
textureTexture to update
pixelsArray of pixels to copy to the texture
widthWidth of the pixel region contained in pixels
heightHeight of the pixel region contained in pixels
xX offset in the texture where to copy the source pixels
yY offset in the texture where to copy the source pixels
CSFML_GRAPHICS_API void sfTexture_updateFromRenderWindow ( sfTexture texture,
const sfRenderWindow renderWindow,
unsigned int  x,
unsigned int  y 
)

Update a texture from the contents of a render-window.

Parameters
textureTexture to update
renderWindowRender-window to copy to the texture
xX offset in the texture where to copy the source pixels
yY offset in the texture where to copy the source pixels
CSFML_GRAPHICS_API void sfTexture_updateFromWindow ( sfTexture texture,
const sfWindow window,
unsigned int  x,
unsigned int  y 
)

Update a texture from the contents of a window.

Parameters
textureTexture to update
windowWindow to copy to the texture
xX offset in the texture where to copy the source pixels
yY offset in the texture where to copy the source pixels