Inheritance: NewTOAPIA.GL.GLModel
Exemplo n.º 1
0
    static void Main()
    {
        VideoScene model = new VideoScene();

        GLGameApplication app = new GLGameApplication("Camera Diff", new System.Drawing.Rectangle(10, 10, 352 * 2 + 40, 288 * 2 + 40), true);
        app.Run(model);
    }
Exemplo n.º 2
0
    static void Main()
    {
        VideoScene model = new VideoScene();

        GLApplication app = new GLApplication("YCrCb Video", new System.Drawing.Rectangle(10, 10, 352*2+40, 288*2+40));
        app.Run(model);
    }
Exemplo n.º 3
0
    static void Main()
    {
        VideoScene model = new VideoScene();

        GLApplication app = new GLApplication("GL Video Preview", new System.Drawing.Rectangle(10, 10, 640, 480), true);
        app.Run(model);
    }