Get the size of a texture, as floating point values.
Defined in <SDL3/SDL_render.h>
bool SDL_GetTextureSize(SDL_Texture *texture, float *w, float *h);
SDL_Texture * | texture | the texture to query. |
float * | w | a pointer filled in with the width of the texture in pixels. This argument can be NULL if you don't need this information. |
float * | h | a pointer filled in with the height of the texture in pixels. This argument can be NULL if you don't need this information. |
(bool) Returns true on success or false on failure; call SDL_GetError() for more information.
You may only call this function from the main thread.
This function is available since SDL 3.1.3.