1
mirror of https://github.com/mpv-player/mpv synced 2024-09-28 17:52:52 +02:00

vo_opengl: remove some leftovers

Forgotten in the previous commit.
This commit is contained in:
wm4 2015-09-01 23:21:28 +02:00
parent 9be10f3bf1
commit 62378b394a

View File

@ -213,7 +213,6 @@ struct gl_video {
bool use_linear;
bool use_normalized_range;
float user_gamma;
struct fbotex copy_fbos[4];
int frames_uploaded;
int frames_rendered;
@ -584,9 +583,6 @@ static void uninit_rendering(struct gl_video *p)
for (int n = 0; n < FBOSURFACES_MAX; n++)
fbotex_uninit(&p->surfaces[n].fbotex);
for (int n = 0; n < 4; n++)
fbotex_uninit(&p->copy_fbos[n]);
gl_video_reset_surfaces(p);
}