74 Texture2D(GraphicContext &context,
const std::string &filename,
const FileSystem &fs,
const ImageImportDescription &import_desc = {});
75 Texture2D(GraphicContext &context, IODevice &file,
const std::string &image_type,
const ImageImportDescription &import_desc = {});
77 Texture2D(GraphicContext &context,
const PixelBuffer &
image,
bool is_srgb =
false);
78 Texture2D(GraphicContext &context,
const PixelBuffer &
image,
const Rect &src_rect,
bool is_srgb =
false);
151 const Rect &src_rect,
165 const Rect &src_rect,
Texture2D(const std::shared_ptr< Texture_Impl > &impl)
Definition: texture_2d.h:52
PixelBuffer get_pixeldata(GraphicContext &gc, int level=0) const
Retrieve image data from texture.
TextureWrapMode
Texture coordinate wrapping modes.
Definition: texture.h:65
Texture object class.
Definition: texture.h:103
Pixel data container.
Definition: pixel_buffer.h:68
Image Import Description Class.
Definition: image_import_description.h:48
int get_width() const
Retrieves the actual width of the texture in the display.
void set_subimage(GraphicContext &context, int x, int y, const PixelBuffer &image, const Rect &src_rect, int level=0)
void set_pixel_ratio(float ratio)
Sets the display pixel ratio for this texture.
2D (left,top,right,bottom) rectangle structure - Integer
Definition: rect.h:470
TextureWrapMode get_wrap_mode_t() const
Get the texture wrap mode for the t coordinate.
2D texture object class.
Definition: texture_2d.h:41
TextureWrapMode get_wrap_mode_s() const
Get the texture wrap mode for the s coordinate.
std::shared_ptr< Texture_Impl > impl
Definition: texture.h:271
float get_pixel_ratio() const
Size get_size() const
Retrieves the actual size of the texture.
Definition: texture_2d.h:91
float get_dip_width() const
Returns the device independent width of this texture.
Definition: texture_2d.h:100
TextureFormat
Texture format.
Definition: texture_format.h:40
Texture2D()
Constructs a null instance.
void set_image(GraphicContext &context, const PixelBuffer &image, int level=0)
void copy_image_from(GraphicContext &context, int level, TextureFormat texture_format=tf_rgba8)
Copy image data from a graphic context.
Interface to drawing graphics.
Definition: graphic_context.h:257
2D (x,y) point structure - Integer
Definition: point.h:62
int get_height() const
Retrieves the actual height of the texture in the display.
void set_wrap_mode(TextureWrapMode wrap_s, TextureWrapMode wrap_t)
2D (width,height) size structure - Integer
Definition: size.h:156
void copy_subimage_from(GraphicContext &context, int offset_x, int offset_y, int x, int y, int width, int height, int level=0)
Copy sub image data from a graphic context.
Sizef get_dip_size() const
Returns the device independent size of this texture.
Definition: texture_2d.h:106
float get_dip_height() const
Returns the device independent height of this texture.
Definition: texture_2d.h:103
Definition: texture_format.h:43
2D (width,height) size structure - Float
Definition: size.h:169