00001 using System;
00002 using System.Collections.Generic;
00003 using System.Text;
00004
00005 namespace OpenTK.Platform.MacOS
00006 {
00007 using Graphics;
00008
00009 class MacOSGraphicsMode : IGraphicsMode
00010 {
00011 #region IGraphicsMode Members
00012
00013 public GraphicsMode SelectGraphicsMode(ColorFormat color, int depth, int stencil, int samples, ColorFormat accum, int buffers, bool stereo)
00014 {
00015 GraphicsMode gfx = new GraphicsMode((IntPtr)1, color, depth, stencil, samples,
00016 accum, buffers, stereo);
00017
00018 System.Diagnostics.Debug.Print("Created dummy graphics mode.");
00019
00020 return gfx;
00021 }
00022
00023 #endregion
00024 }
00025 }