Remove some now-unneeded struct members

This commit is contained in:
Clownacy 2020-09-14 23:17:21 +01:00
parent e18ec87f99
commit 30ea89d3fa
2 changed files with 0 additions and 2 deletions

View file

@ -34,7 +34,6 @@ typedef struct RenderBackend_Surface
GLuint texture_id; GLuint texture_id;
size_t width; size_t width;
size_t height; size_t height;
unsigned char *pixels;
} RenderBackend_Surface; } RenderBackend_Surface;
typedef struct RenderBackend_GlyphAtlas typedef struct RenderBackend_GlyphAtlas

View file

@ -18,7 +18,6 @@
typedef struct RenderBackend_Surface typedef struct RenderBackend_Surface
{ {
SDL_Texture *texture; SDL_Texture *texture;
unsigned char *pixels;
size_t width; size_t width;
size_t height; size_t height;
bool render_target; bool render_target;