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); }
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); }
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); }