diff options
Diffstat (limited to 'src/ui/visbuf.c')
-rw-r--r-- | src/ui/visbuf.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/ui/visbuf.c b/src/ui/visbuf.c index 88a5fd60..503d0a2f 100644 --- a/src/ui/visbuf.c +++ b/src/ui/visbuf.c | |||
@@ -58,18 +58,14 @@ void alloc_VisBuf(iVisBuf *d, const iInt2 size, int granularity) { | |||
58 | if (tex->texture) { | 58 | if (tex->texture) { |
59 | SDL_DestroyTexture(tex->texture); | 59 | SDL_DestroyTexture(tex->texture); |
60 | } | 60 | } |
61 | SDL_Renderer *rend = renderer_Window(get_Window()); | ||
61 | tex->texture = | 62 | tex->texture = |
62 | SDL_CreateTexture(renderer_Window(get_Window()), | 63 | SDL_CreateTexture(rend, |
63 | SDL_PIXELFORMAT_RGBA8888, | 64 | SDL_PIXELFORMAT_RGBA8888, |
64 | SDL_TEXTUREACCESS_STATIC | SDL_TEXTUREACCESS_TARGET, | 65 | SDL_TEXTUREACCESS_STATIC | SDL_TEXTUREACCESS_TARGET, |
65 | texSize.x, | 66 | texSize.x, |
66 | texSize.y); | 67 | texSize.y); |
67 | SDL_SetTextureBlendMode(tex->texture, SDL_BLENDMODE_NONE); | 68 | SDL_SetTextureBlendMode(tex->texture, SDL_BLENDMODE_NONE); |
68 | // tex->origin = i * texSize.y; | ||
69 | // iZap(tex->validRange); | ||
70 | // if (d->invalidUserData) { | ||
71 | // d->invalidUserData(i, d->buffers[i].user); | ||
72 | // } | ||
73 | } | 69 | } |
74 | invalidate_VisBuf(d); | 70 | invalidate_VisBuf(d); |
75 | } | 71 | } |