3 namespace SiliconStudio.
Paradox.Graphics
22 public GraphicsDevice New()
24 return New(GraphicsProfile.Level10);
32 public GraphicsDevice New(GraphicsProfile graphicsProfile)
34 return New(null, graphicsProfile);
42 public GraphicsDevice New(GraphicsAdapter adapter)
44 return New(adapter, GraphicsProfile.Level10);
53 public GraphicsDevice New(GraphicsAdapter adapter, GraphicsProfile graphicsProfile)
55 return New(adapter ?? AdapterFactory.Default, graphicsProfile, null);
64 public GraphicsDevice New(GraphicsProfile graphicsProfile,
65 PresentationParameters presentationParameters)
67 return New(AdapterFactory.Default, graphicsProfile, presentationParameters);
77 public abstract GraphicsDevice New(GraphicsAdapter adapter, GraphicsProfile graphicsProfile,
78 PresentationParameters presentationParameters);