Mercurial > mplayer.hg
annotate libvo/vo_svga.c @ 2784:6caec0df4189
added text block parser
author | alex |
---|---|
date | Fri, 09 Nov 2001 16:32:46 +0000 |
parents | ae79207a3055 |
children | 32638add0dc8 |
rev | line source |
---|---|
285 | 1 /* |
292 | 2 Video driver for SVGAlib - alpha, slow |
285 | 3 by Zoltan Mark Vician <se7en@sch.bme.hu> |
381 | 4 Code started: Mon Apr 1 23:25:47 2001 |
407 | 5 |
6 Uses HW acceleration if your card is supported by SVGAlib. | |
285 | 7 */ |
8 | |
9 #include <stdio.h> | |
10 #include <stdlib.h> | |
11 | |
12 #include <vga.h> | |
13 #include <vgagl.h> | |
14 | |
485 | 15 #include <limits.h> |
16 | |
285 | 17 #include "config.h" |
18 #include "video_out.h" | |
19 #include "video_out_internal.h" | |
20 | |
616 | 21 #include "sub.h" |
2556 | 22 #include "../postproc/rgb2rgb.h" |
616 | 23 |
485 | 24 extern int vo_dbpp; |
504 | 25 extern int verbose; |
407 | 26 |
285 | 27 LIBVO_EXTERN(svga) |
28 | |
29 static vo_info_t vo_info = { | |
30 "SVGAlib", | |
31 "svga", | |
32 "Zoltan Mark Vician <se7en@sch.bme.hu>", | |
33 "" | |
34 }; | |
35 | |
36 // SVGAlib definitions | |
37 | |
38 GraphicsContext *screen; | |
39 GraphicsContext *virt; | |
40 | |
407 | 41 static uint8_t *scalebuf = NULL, *yuvbuf = NULL, *bppbuf = NULL; |
285 | 42 |
43 static uint32_t orig_w, orig_h, maxw, maxh; // Width, height | |
377 | 44 static float scaling = 1.0; |
285 | 45 static uint32_t x_pos, y_pos; // Position |
46 | |
483 | 47 // SVGAlib - list of detected modes |
48 typedef struct vga_modelist_s { | |
49 uint16_t modenum; | |
50 vga_modeinfo modeinfo; | |
51 struct vga_modelist_s *next; | |
52 } vga_modelist_t; | |
447 | 53 |
483 | 54 vga_modelist_t *modelist = NULL; |
55 | |
327 | 56 static uint8_t bpp; |
483 | 57 static uint8_t bpp_conv = 0; |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
447
diff
changeset
|
58 static uint32_t pformat; |
447 | 59 |
483 | 60 #define BPP_15 1 |
61 #define BPP_16 2 | |
62 #define BPP_24 4 | |
63 #define BPP_32 8 | |
64 static uint8_t bpp_avail = 0; | |
65 | |
285 | 66 static uint8_t checked = 0; |
483 | 67 |
485 | 68 static uint32_t add_mode(uint16_t mode, vga_modeinfo minfo) { |
483 | 69 vga_modelist_t *list; |
285 | 70 |
483 | 71 if (modelist == NULL) { |
485 | 72 modelist = (vga_modelist_t *) malloc(sizeof(vga_modelist_t)); |
483 | 73 if (modelist == NULL) { |
74 printf("vo_svga: add_mode() failed. Not enough memory for modelist."); | |
75 return(1); // error | |
76 } | |
485 | 77 modelist->modenum = mode; |
78 modelist->modeinfo = minfo; | |
79 modelist->next = NULL; | |
483 | 80 } else { |
81 list = modelist; | |
82 while (list->next != NULL) | |
83 list = list->next; | |
485 | 84 list->next = (vga_modelist_t *) malloc(sizeof(vga_modelist_t)); |
483 | 85 if (list->next == NULL) { |
86 printf("vo_svga: add_mode() failed. Not enough memory for modelist."); | |
87 return(1); // error | |
88 } | |
89 list = list->next; | |
90 list->modenum = mode; | |
91 list->modeinfo = minfo; | |
92 list->next = NULL; | |
93 } | |
485 | 94 return (0); |
483 | 95 } |
96 | |
97 static int checksupportedmodes() { | |
485 | 98 uint16_t i, max; |
483 | 99 vga_modeinfo *minfo; |
285 | 100 |
101 checked = 1; | |
102 vga_init(); | |
103 vga_disabledriverreport(); | |
485 | 104 max = vga_lastmodenumber(); |
105 for (i = 1; i < max; i++) | |
483 | 106 if (vga_hasmode(i) > 0) { |
107 minfo = vga_getmodeinfo(i); | |
108 switch (minfo->colors) { | |
109 case 32768: bpp_avail |= BPP_15; break; | |
110 case 65536: bpp_avail |= BPP_16; break; | |
111 } | |
112 switch (minfo->bytesperpixel) { | |
113 case 3: bpp_avail |= BPP_24; break; | |
114 case 4: bpp_avail |= BPP_32; break; | |
115 } | |
504 | 116 if (verbose >= 2) |
117 printf("vo_svga: Mode found: %s\n",vga_getmodename(i)); | |
483 | 118 if (add_mode(i, *minfo)) |
119 return(1); | |
120 } | |
485 | 121 return(0); |
285 | 122 } |
123 | |
124 static uint32_t init(uint32_t width, uint32_t height, uint32_t d_width, | |
125 uint32_t d_height, uint32_t fullscreen, char *title, | |
126 uint32_t format) { | |
483 | 127 uint32_t req_w = (d_width > 0 ? d_width : width); |
128 uint32_t req_h = (d_height > 0 ? d_height : height); | |
129 uint16_t vid_mode = 0; | |
976 | 130 uint8_t res_widescr, vid_widescr = (((req_w*1.0)/req_h) > (4.0/3)) ? 1 : 0; |
485 | 131 uint16_t buf_w = USHRT_MAX, buf_h = USHRT_MAX; |
483 | 132 vga_modelist_t *list = modelist; |
387 | 133 |
285 | 134 if (!checked) { |
485 | 135 if (checksupportedmodes()) // Looking for available video modes |
483 | 136 return(1); |
285 | 137 } |
407 | 138 |
483 | 139 bpp_avail = 0; |
140 while (list != NULL) { | |
141 if ((list->modeinfo.width >= req_w) && (list->modeinfo.height >= req_h)) { | |
142 switch (list->modeinfo.colors) { | |
143 case 32768: bpp_avail |= BPP_15; break; | |
144 case 65536: bpp_avail |= BPP_16; break; | |
145 } | |
146 switch (list->modeinfo.bytesperpixel) { | |
147 case 3: bpp_avail |= BPP_24; break; | |
148 case 4: bpp_avail |= BPP_32; break; | |
149 } | |
150 } | |
151 list = list->next; | |
152 } | |
153 | |
285 | 154 pformat = format; |
411 | 155 |
483 | 156 // bpp check |
157 bpp_conv = 0; | |
411 | 158 if (!vo_dbpp) { |
159 if (format == IMGFMT_YV12) bpp = 32; | |
160 else bpp = format & 255; | |
504 | 161 if (verbose) |
162 printf("vo_svga: vo_dbpp == 0, bpp: %d\n",bpp); | |
483 | 163 switch (bpp) { |
164 case 32: if (!(bpp_avail & BPP_32)) { | |
165 printf("vo_svga: Haven't found video mode which fit to: %dx%d %dbpp\n",req_w,req_h,bpp); | |
485 | 166 printf("vo_svga: Maybe you should try -bpp\n"); |
483 | 167 return(1); |
168 } | |
169 break; | |
619 | 170 case 24: if (!(bpp_avail & BPP_24)) { |
483 | 171 if (!(bpp_avail & BPP_32)) { |
172 printf("vo_svga: Haven't found video mode which fit to: %dx%d %dbpp\n",req_w,req_h,bpp); | |
485 | 173 printf("vo_svga: Maybe you should try -bpp\n"); |
483 | 174 return(1); |
175 } else { | |
176 bpp = 32; | |
177 bpp_conv = 1; | |
617 | 178 printf("vo_svga: BPP conversion 24->32\n"); |
619 | 179 } |
180 } | |
483 | 181 break; |
182 case 16: if (!(bpp_avail & BPP_16)) { | |
183 printf("vo_svga: Haven't found video mode which fit to: %dx%d %dbpp\n",req_w,req_h,bpp); | |
184 printf("vo_svga: Maybe you should try -bpp\n"); | |
185 return(1); | |
186 } | |
187 break; | |
619 | 188 case 15: if (!(bpp_avail & BPP_15)) { |
483 | 189 if (!(bpp_avail & BPP_16)) { |
190 printf("vo_svga: Haven't found video mode which fit to: %dx%d %dbpp\n",req_w,req_h,bpp); | |
191 printf("vo_svga: Maybe you should try -bpp\n"); | |
192 return(1); | |
193 } else { | |
194 bpp = 16; | |
195 bpp_conv = 1; | |
617 | 196 printf("vo_svga: BPP conversion 15->16\n"); |
483 | 197 } |
619 | 198 } |
483 | 199 break; |
200 } | |
411 | 201 } else { |
202 bpp = vo_dbpp; | |
504 | 203 if (verbose) |
204 printf("vo_svga: vo_dbpp == %d\n",bpp); | |
411 | 205 switch (bpp) { |
483 | 206 case 32: if (!(bpp_avail & BPP_32)) { |
485 | 207 printf("vo_svga: %dbpp not supported in %dx%d (or larger resoltuion) by HW or SVGAlib\n",bpp,req_w,req_h); |
411 | 208 return(1); |
209 } | |
485 | 210 break; |
483 | 211 case 24: if (!(bpp_avail & BPP_24)) { |
485 | 212 printf("vo_svga: %dbpp not supported in %dx%d (or larger resoltuion) by HW or SVGAlib\n",bpp,req_w,req_h); |
411 | 213 return(1); |
214 } | |
485 | 215 break; |
483 | 216 case 16: if (!(bpp_avail & BPP_16)) { |
485 | 217 printf("vo_svga: %dbpp not supported in %dx%d (or larger resoltuion) by HW or SVGAlib\n",bpp,req_w,req_h); |
411 | 218 return(1); |
219 } | |
485 | 220 break; |
483 | 221 case 15: if (!(bpp_avail & BPP_15)) { |
485 | 222 printf("vo_svga: %dbpp not supported in %dx%d (or larger resoltuion) by HW or SVGAlib\n",bpp,req_w,req_h); |
411 | 223 return(1); |
224 } | |
485 | 225 break; |
411 | 226 } |
227 } | |
483 | 228 |
229 list = modelist; | |
504 | 230 if (verbose) { |
231 printf("vo_svga: Looking for the best resolution...\n"); | |
232 printf("vo_svga: req_w: %d, req_h: %d, bpp: %d\n",req_w,req_h,bpp); | |
233 } | |
485 | 234 while (list != NULL) { |
483 | 235 if ((list->modeinfo.width >= req_w) && (list->modeinfo.height >= req_h)) { |
504 | 236 if (verbose) { |
237 switch (list->modeinfo.colors) { | |
238 case 32768: printf("vo_svga: vid_mode: %d, %dx%d 15bpp\n",list->modenum,list->modeinfo.width,list->modeinfo.height); | |
239 break; | |
240 case 65536: printf("vo_svga: vid_mode: %d, %dx%d 16bpp\n",list->modenum,list->modeinfo.width,list->modeinfo.height); | |
241 break; | |
242 } | |
243 switch (list->modeinfo.bytesperpixel) { | |
244 case 3: printf("vo_svga: vid_mode: %d, %dx%d 24bpp\n",list->modenum,list->modeinfo.width,list->modeinfo.height); | |
245 break; | |
246 case 4: printf("vo_svga: vid_mode: %d, %dx%d 32bpp\n",list->modenum,list->modeinfo.width,list->modeinfo.height); | |
247 break; | |
248 } | |
249 } | |
285 | 250 switch (bpp) { |
483 | 251 case 32: if (list->modeinfo.bytesperpixel == 4) |
485 | 252 if ((list->modeinfo.width < buf_w) || (list->modeinfo.height < buf_h)) { |
253 vid_mode = list->modenum; | |
254 buf_w = list->modeinfo.width; | |
255 buf_h = list->modeinfo.height; | |
976 | 256 res_widescr = (((buf_w*1.0)/buf_h) > (4.0/3)) ? 1 : 0; |
485 | 257 } |
258 break; | |
483 | 259 case 24: if (list->modeinfo.bytesperpixel == 3) |
485 | 260 if ((list->modeinfo.width < buf_w) || (list->modeinfo.height < buf_h)) { |
261 vid_mode = list->modenum; | |
262 buf_w = list->modeinfo.width; | |
263 buf_h = list->modeinfo.height; | |
976 | 264 res_widescr = (((buf_w*1.0)/buf_h) > (4.0/3)) ? 1 : 0; |
485 | 265 } |
266 break; | |
483 | 267 case 16: if (list->modeinfo.colors == 65536) |
485 | 268 if ((list->modeinfo.width < buf_w) || (list->modeinfo.height < buf_h)) { |
269 vid_mode = list->modenum; | |
270 buf_w = list->modeinfo.width; | |
271 buf_h = list->modeinfo.height; | |
976 | 272 res_widescr = (((buf_w*1.0)/buf_h) > (4.0/3)) ? 1 : 0; |
485 | 273 } |
274 break; | |
483 | 275 case 15: if (list->modeinfo.colors == 32768) |
485 | 276 if ((list->modeinfo.width < buf_w) || (list->modeinfo.height < buf_h)) { |
277 vid_mode = list->modenum; | |
278 buf_w = list->modeinfo.width; | |
279 buf_h = list->modeinfo.height; | |
976 | 280 res_widescr = (((buf_w*1.0)/buf_h) > (4.0/3)) ? 1 : 0; |
485 | 281 } |
282 break; | |
285 | 283 } |
483 | 284 } |
285 list = list->next; | |
407 | 286 } |
485 | 287 |
504 | 288 if (verbose) |
289 printf("vo_svga: vid_mode: %d\n",vid_mode); | |
407 | 290 vga_setlinearaddressing(); |
485 | 291 if (vga_setmode(vid_mode) == -1) { |
286 | 292 printf("vo_svga: vga_setmode(%d) failed.\n",vid_mode); |
483 | 293 uninit(); |
285 | 294 return(1); // error |
485 | 295 } |
296 if (gl_setcontextvga(vid_mode)) { | |
286 | 297 printf("vo_svga: gl_setcontextvga(%d) failed.\n",vid_mode); |
483 | 298 uninit(); |
285 | 299 return(1); // error |
286 | 300 } |
285 | 301 screen = gl_allocatecontext(); |
302 gl_getcontext(screen); | |
485 | 303 if (gl_setcontextvgavirtual(vid_mode)) { |
286 | 304 printf("vo_svga: gl_setcontextvgavirtual(%d) failed.\n",vid_mode); |
483 | 305 uninit(); |
285 | 306 return(1); // error |
286 | 307 } |
285 | 308 virt = gl_allocatecontext(); |
309 gl_getcontext(virt); | |
310 gl_setcontext(virt); | |
311 gl_clearscreen(0); | |
312 | |
485 | 313 if (bpp_conv) { |
483 | 314 bppbuf = malloc(maxw * maxh * BYTESPERPIXEL); |
485 | 315 if (bppbuf == NULL) { |
316 printf("vo_svga: bppbuf -> Not enough memory for buffering!\n"); | |
317 uninit(); | |
318 return (1); | |
319 } | |
483 | 320 } |
321 | |
285 | 322 orig_w = width; |
323 orig_h = height; | |
976 | 324 if ((fullscreen & 0x04) && (WIDTH != orig_w) && (HEIGHT != orig_h)) { |
325 if (!vid_widescr || !res_widescr) { | |
292 | 326 maxh = HEIGHT; |
327 scaling = maxh / (orig_h * 1.0); | |
328 maxw = (uint32_t) (orig_w * scaling); | |
329 scalebuf = malloc(maxw * maxh * BYTESPERPIXEL); | |
483 | 330 if (scalebuf == NULL) { |
485 | 331 printf("vo_svga: scalebuf -> Not enough memory for buffering!\n"); |
407 | 332 uninit(); |
333 return (1); | |
334 } | |
292 | 335 } else { |
336 maxw = WIDTH; | |
337 scaling = maxw / (orig_w * 1.0); | |
338 maxh = (uint32_t) (orig_h * scaling); | |
339 scalebuf = malloc(maxw * maxh * BYTESPERPIXEL); | |
483 | 340 if (scalebuf == NULL) { |
485 | 341 printf("vo_svga: scalebuf -> Not enough memory for buffering!\n"); |
407 | 342 uninit(); |
343 return (1); | |
344 } | |
292 | 345 } |
285 | 346 } else { |
347 maxw = orig_w; | |
348 maxh = orig_h; | |
349 } | |
350 x_pos = (WIDTH - maxw) / 2; | |
351 y_pos = (HEIGHT - maxh) / 2; | |
352 | |
353 if (pformat == IMGFMT_YV12) { | |
354 yuv2rgb_init(bpp, MODE_RGB); | |
355 yuvbuf = malloc(maxw * maxh * BYTESPERPIXEL); | |
483 | 356 if (yuvbuf == NULL) { |
485 | 357 printf("vo_svga: yuvbuf -> Not enough memory for buffering!\n"); |
407 | 358 uninit(); |
359 return (1); | |
360 } | |
285 | 361 } |
377 | 362 |
504 | 363 printf("vo_svga: SVGAlib resolution: %dx%d %dbpp - ", WIDTH, HEIGHT, bpp); |
293 | 364 if (maxw != orig_w || maxh != orig_h) printf("Video scaled to: %dx%d\n",maxw,maxh); |
285 | 365 else printf("No video scaling\n"); |
366 | |
367 return (0); | |
368 } | |
369 | |
370 static uint32_t query_format(uint32_t format) { | |
485 | 371 uint32_t res = 0; |
407 | 372 |
483 | 373 if (!checked) { |
374 if (checksupportedmodes()) // Looking for available video modes | |
375 return(0); | |
376 } | |
485 | 377 |
378 // if (vo_dbpp) => There is NO conversion!!! | |
379 if (vo_dbpp) { | |
712 | 380 if (format == IMGFMT_YV12) return (1); |
485 | 381 switch (vo_dbpp) { |
488 | 382 case 32: if ((format == IMGFMT_RGB32) || (format == IMGFMT_BGR32)) |
485 | 383 return ((bpp_avail & BPP_32) ? 1 : 0); |
384 break; | |
488 | 385 case 24: if ((format == IMGFMT_RGB24) || (format == IMGFMT_BGR24)) |
485 | 386 return ((bpp_avail & BPP_24) ? 1 : 0); |
387 break; | |
488 | 388 case 16: if ((format == IMGFMT_RGB16) || (format == IMGFMT_BGR16)) |
485 | 389 return ((bpp_avail & BPP_16) ? 1 : 0); |
390 break; | |
488 | 391 case 15: if ((format == IMGFMT_RGB15) || (format == IMGFMT_BGR15)) |
485 | 392 return ((bpp_avail & BPP_15) ? 1 : 0); |
393 break; | |
407 | 394 } |
488 | 395 } else { |
485 | 396 switch (format) { |
397 case IMGFMT_RGB32: | |
488 | 398 case IMGFMT_BGR32: return ((bpp_avail & BPP_32) ? 1 : 0); break; |
485 | 399 case IMGFMT_RGB24: |
488 | 400 case IMGFMT_BGR24: { |
485 | 401 res = (bpp_avail & BPP_24) ? 1 : 0; |
402 if (!res) | |
403 res = (bpp_avail & BPP_32) ? 1 : 0; | |
404 return (res); | |
405 } break; | |
406 case IMGFMT_RGB16: | |
488 | 407 case IMGFMT_BGR16: return ((bpp_avail & BPP_16) ? 1 : 0); break; |
485 | 408 case IMGFMT_RGB15: |
488 | 409 case IMGFMT_BGR15: { |
485 | 410 res = (bpp_avail & BPP_15) ? 1 : 0; |
411 if (!res) | |
412 res = (bpp_avail & BPP_16) ? 1 : 0; | |
413 return (res); | |
414 } break; | |
415 case IMGFMT_YV12: return (1); break; | |
285 | 416 } |
488 | 417 } |
285 | 418 return (0); |
419 } | |
420 | |
421 static const vo_info_t* get_info(void) { | |
422 return (&vo_info); | |
423 } | |
424 | |
425 static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src, | |
426 unsigned char *srca, int stride) { | |
327 | 427 switch (bpp) { |
428 case 32: | |
429 vo_draw_alpha_rgb32(w, h, src, srca, stride, virt->vbuf+4*(y0*WIDTH+x0), 4*WIDTH); | |
430 break; | |
431 case 24: | |
432 vo_draw_alpha_rgb24(w, h, src, srca, stride, virt->vbuf+3*(y0*WIDTH+x0), 3*WIDTH); | |
433 break; | |
434 case 16: | |
435 vo_draw_alpha_rgb16(w, h, src, srca, stride, virt->vbuf+2*(y0*WIDTH+x0), 2*WIDTH); | |
436 break; | |
437 case 15: | |
438 vo_draw_alpha_rgb15(w, h, src, srca, stride, virt->vbuf+2*(y0*WIDTH+x0), 2*WIDTH); | |
439 break; | |
440 } | |
285 | 441 } |
442 | |
443 static uint32_t draw_frame(uint8_t *src[]) { | |
444 if (pformat == IMGFMT_YV12) { | |
445 yuv2rgb(yuvbuf, src[0], src[1], src[2], orig_w, orig_h, orig_w * BYTESPERPIXEL, orig_w, orig_w / 2); | |
446 src[0] = yuvbuf; | |
447 } | |
483 | 448 if (scalebuf != NULL) { |
285 | 449 gl_scalebox(orig_w, orig_h, src[0], maxw, maxh, scalebuf); |
450 src[0] = scalebuf; | |
451 } | |
407 | 452 if (bpp_conv) { |
453 switch(bpp) { | |
485 | 454 case 32: { |
620 | 455 uint8_t *source = src[0]; |
456 uint8_t *dest = bppbuf; | |
457 register uint32_t i = 0; | |
502 | 458 |
620 | 459 while (i < (maxw * maxh * 4)) { |
460 dest[i] = source[i]; | |
461 dest[i+1] = source[i+1]; | |
462 dest[i+2] = source[i+2]; | |
463 dest[i+3] = 0; | |
464 i += 4; | |
407 | 465 } |
485 | 466 } break; |
467 case 16: { | |
2556 | 468 rgb15to16(src[0],bppbuf,maxw * maxh * 2); |
485 | 469 } break; |
407 | 470 } |
471 src[0] = bppbuf; | |
472 } | |
285 | 473 gl_putbox(x_pos, y_pos, maxw, maxh, src[0]); |
617 | 474 |
475 return (0); | |
285 | 476 } |
477 | |
478 static uint32_t draw_slice(uint8_t *image[], int stride[], | |
479 int w, int h, int x, int y) { | |
480 uint8_t *src = yuvbuf; | |
377 | 481 uint32_t sw, sh; |
482 | |
875 | 483 yuv2rgb(yuvbuf, image[0], image[1], image[2], w, h, orig_w * BYTESPERPIXEL, stride[0], stride[1]); |
377 | 484 sw = (uint32_t) (w * scaling); |
485 sh = (uint32_t) (h * scaling); | |
483 | 486 if (scalebuf != NULL) { |
377 | 487 gl_scalebox(w, h, yuvbuf, sw, sh, scalebuf); |
285 | 488 src = scalebuf; |
489 } | |
377 | 490 gl_putbox((int)(x * scaling) + x_pos, (int)(y * scaling) + y_pos, sw, sh, src); |
617 | 491 |
492 return (0); | |
285 | 493 } |
494 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1339
diff
changeset
|
495 static void draw_osd(void) |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1339
diff
changeset
|
496 { |
292 | 497 if (y_pos) { |
498 gl_fillbox(0, 0, WIDTH, y_pos, 0); | |
499 gl_fillbox(0, HEIGHT - y_pos, WIDTH, y_pos, 0); | |
1512
d3364cc1f792
small changes to erase only needed place (rectangles doesn't overlap)
atlka
parents:
1501
diff
changeset
|
500 if (x_pos) { |
d3364cc1f792
small changes to erase only needed place (rectangles doesn't overlap)
atlka
parents:
1501
diff
changeset
|
501 int hmy=HEIGHT - (y_pos<<1); |
d3364cc1f792
small changes to erase only needed place (rectangles doesn't overlap)
atlka
parents:
1501
diff
changeset
|
502 gl_fillbox(0, y_pos, x_pos, hmy, 0); |
d3364cc1f792
small changes to erase only needed place (rectangles doesn't overlap)
atlka
parents:
1501
diff
changeset
|
503 gl_fillbox(WIDTH - x_pos, y_pos, x_pos, hmy, 0); |
d3364cc1f792
small changes to erase only needed place (rectangles doesn't overlap)
atlka
parents:
1501
diff
changeset
|
504 } |
d3364cc1f792
small changes to erase only needed place (rectangles doesn't overlap)
atlka
parents:
1501
diff
changeset
|
505 } else if (x_pos) { |
d3364cc1f792
small changes to erase only needed place (rectangles doesn't overlap)
atlka
parents:
1501
diff
changeset
|
506 gl_fillbox(0, y_pos, x_pos, HEIGHT, 0); |
d3364cc1f792
small changes to erase only needed place (rectangles doesn't overlap)
atlka
parents:
1501
diff
changeset
|
507 gl_fillbox(WIDTH - x_pos, y_pos, x_pos, HEIGHT, 0); |
989 | 508 } |
509 | |
486 | 510 vo_draw_text(WIDTH, HEIGHT, draw_alpha); |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1339
diff
changeset
|
511 } |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1339
diff
changeset
|
512 |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1339
diff
changeset
|
513 static void flip_page(void) { |
285 | 514 gl_copyscreen(screen); |
515 } | |
516 | |
517 static void check_events(void) { | |
518 } | |
519 | |
520 static void uninit(void) { | |
483 | 521 vga_modelist_t *list = modelist; |
522 | |
285 | 523 gl_freecontext(screen); |
524 gl_freecontext(virt); | |
525 vga_setmode(TEXT); | |
483 | 526 if (bppbuf != NULL) |
407 | 527 free(bppbuf); |
483 | 528 if (scalebuf != NULL) |
285 | 529 free(scalebuf); |
483 | 530 if (yuvbuf != NULL) |
285 | 531 free(yuvbuf); |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1339
diff
changeset
|
532 while (modelist != NULL) { |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1339
diff
changeset
|
533 list=modelist; |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1339
diff
changeset
|
534 modelist=modelist->next; |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1339
diff
changeset
|
535 free(list); |
483 | 536 } |
285 | 537 } |