Lines Matching defs:sSetVideo

2249    GAL_VIDEOENABLE sSetVideo;
2251 INIT_GAL(&sSetVideo);
2252 sSetVideo.dwSubfunction = GALFN_SETVIDEOENABLE;
2253 sSetVideo.enable = enable;
2254 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2271 GAL_VIDEOFORMAT sSetVideo;
2273 INIT_GAL(&sSetVideo);
2274 sSetVideo.dwSubfunction = GALFN_SETVIDEOFORMAT;
2275 sSetVideo.format = format;
2276 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2294 GAL_VIDEOSIZE sSetVideo;
2296 INIT_GAL(&sSetVideo);
2297 sSetVideo.dwSubfunction = GALFN_SETVIDEOSIZE;
2298 sSetVideo.width = width;
2299 sSetVideo.height = height;
2300 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2317 GAL_VIDEOOFFSET sSetVideo;
2319 INIT_GAL(&sSetVideo);
2320 sSetVideo.dwSubfunction = GALFN_SETVIDEOOFFSET;
2321 sSetVideo.offset = offset;
2322 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2342 GAL_VIDEOWINDOW sSetVideo;
2344 INIT_GAL(&sSetVideo);
2345 sSetVideo.dwSubfunction = GALFN_SETVIDEOWINDOW;
2346 sSetVideo.x = x;
2347 sSetVideo.y = y;
2348 sSetVideo.w = w;
2349 sSetVideo.h = h;
2350 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2371 GAL_VIDEOSCALE sSetVideo;
2373 INIT_GAL(&sSetVideo);
2374 sSetVideo.dwSubfunction = GALFN_SETVIDEOSCALE;
2375 sSetVideo.srcw = srcw;
2376 sSetVideo.srch = srch;
2377 sSetVideo.dstw = dstw;
2378 sSetVideo.dsth = dsth;
2379 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2397 GAL_VIDEOFILTER sSetVideo;
2399 INIT_GAL(&sSetVideo);
2400 sSetVideo.dwSubfunction = GALFN_SETVIDEOFILTER;
2401 sSetVideo.xfilter = xfilter;
2402 sSetVideo.yfilter = yfilter;
2403 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2422 GAL_VIDEOCOLORKEY sSetVideo;
2424 INIT_GAL(&sSetVideo);
2425 sSetVideo.dwSubfunction = GALFN_SETVIDEOCOLORKEY;
2426 sSetVideo.key = key;
2427 sSetVideo.mask = mask;
2428 sSetVideo.bluescreen = bluescreen;
2429 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2446 GAL_VIDEODOWNSCALEENABLE sSetVideo;
2448 INIT_GAL(&sSetVideo);
2449 sSetVideo.dwSubfunction = GALFN_SETVIDEODOWNSCALEENABLE;
2450 sSetVideo.enable = enable;
2451 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2469 GAL_VIDEODOWNSCALECONFIG sSetVideo;
2471 INIT_GAL(&sSetVideo);
2472 sSetVideo.dwSubfunction = GALFN_SETVIDEODOWNSCALECONFIG;
2473 sSetVideo.type = type;
2474 sSetVideo.m = m;
2475 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2498 GAL_VIDEODOWNSCALECOEFF sSetVideo;
2500 INIT_GAL(&sSetVideo);
2501 sSetVideo.dwSubfunction = GALFN_SETVIDEODOWNSCALECOEFF;
2502 sSetVideo.coef1 = coef1;
2503 sSetVideo.coef2 = coef2;
2504 sSetVideo.coef3 = coef3;
2505 sSetVideo.coef4 = coef4;
2506 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2524 GAL_VIDEOSOURCE sSetVideo;
2526 INIT_GAL(&sSetVideo);
2527 sSetVideo.dwSubfunction = GALFN_SETVIDEOSOURCE;
2528 sSetVideo.source = source;
2529 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2548 GAL_SETVIDEOINTERLACED sSetVideo;
2550 INIT_GAL(&sSetVideo);
2551 sSetVideo.dwSubfunction = GALFN_SETVIDEOINTERLACED;
2552 sSetVideo.enable = enable;
2553 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2572 GAL_COLORSPACEYUV sSetVideo;
2574 INIT_GAL(&sSetVideo);
2575 sSetVideo.dwSubfunction = GALFN_SETVIDEOCOLORSPACE;
2576 sSetVideo.colorspace = colorspace;
2577 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2603 GAL_VIDEOCURSOR sSetVideo;
2605 INIT_GAL(&sSetVideo);
2606 sSetVideo.dwSubfunction = GALFN_SETVIDEOCURSOR;
2607 sSetVideo.key = key;
2608 sSetVideo.mask = mask;
2609 sSetVideo.select_color2 = select_color2;
2610 sSetVideo.color1 = color1;
2611 sSetVideo.color2 = color2;
2612 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2632 GAL_VIDEOREQUEST sSetVideo;
2634 INIT_GAL(&sSetVideo);
2635 sSetVideo.dwSubfunction = GALFN_SETVIDEOREQUEST;
2636 sSetVideo.x = x;
2637 sSetVideo.y = y;
2638 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2657 GAL_ALPHAENABLE sSetVideo;
2659 INIT_GAL(&sSetVideo);
2660 sSetVideo.dwSubfunction = GALFN_SETALPHAENABLE;
2661 sSetVideo.enable = enable;
2662 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2709 GAL_ALPHAWINDOW sSetVideo;
2711 INIT_GAL(&sSetVideo);
2712 sSetVideo.dwSubfunction = GALFN_SETALPHAWINDOW;
2713 sSetVideo.x = x;
2714 sSetVideo.y = y;
2715 sSetVideo.width = width;
2716 sSetVideo.height = height;
2717 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2768 GAL_ALPHAVALUE sSetVideo;
2770 INIT_GAL(&sSetVideo);
2771 sSetVideo.dwSubfunction = GALFN_SETALPHAVALUE;
2772 sSetVideo.alpha = alpha;
2773 sSetVideo.delta = delta;
2774 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2820 GAL_ALPHAPRIORITY sSetVideo;
2822 INIT_GAL(&sSetVideo);
2823 sSetVideo.dwSubfunction = GALFN_SETALPHAPRIORITY;
2824 sSetVideo.priority = priority;
2825 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2867 GAL_ALPHACOLOR sSetVideo;
2869 INIT_GAL(&sSetVideo);
2870 sSetVideo.dwSubfunction = GALFN_SETALPHACOLOR;
2871 sSetVideo.color = color;
2872 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2915 GAL_ALPHAREGION sSetVideo;
2917 INIT_GAL(&sSetVideo);
2918 sSetVideo.dwSubfunction = GALFN_SETALPHAREGION;
2919 sSetVideo.region = region;
2920 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2937 GAL_VIDEOOUTSIDEALPHA sSetVideo;
2939 INIT_GAL(&sSetVideo);
2940 sSetVideo.dwSubfunction = GALFN_SETVIDEOOUTSIDEALPHA;
2941 sSetVideo.enable = enable;
2942 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))
2959 GAL_VIDEOPALETTE sSetVideo;
2961 INIT_GAL(&sSetVideo);
2962 sSetVideo.dwSubfunction = GALFN_SETVIDEOPALETTE;
2965 sSetVideo.identity = 1;
2967 sSetVideo.identity = 0;
2968 memcpy(sSetVideo.palette, palette, 256 * sizeof(*palette));
2971 if (ioctl(ifbdev_handle, FBIOGAL_API, &sSetVideo))