3 #if SILICONSTUDIO_PARADOX_GRAPHICS_API_OPENGL
6 using System.Runtime.InteropServices;
9 #if SILICONSTUDIO_PARADOX_GRAPHICS_API_OPENGLES
10 using OpenTK.Graphics.ES30;
13 using OpenTK.Graphics.OpenGL;
17 namespace SiliconStudio.
Paradox.Graphics
24 protected internal TextureCube(GraphicsDevice device, TextureDescription description2D, DataBox[] dataBoxes = null) : base(device, description2D, TextureTarget.TextureCubeMap)
26 throw new NotImplementedException();
29 protected internal TextureCube(GraphicsDevice device, TextureCube texture) : base(device, texture)
31 throw new NotImplementedException();
34 public override Texture ToTexture(
ViewType viewType,
int arraySlice,
int mipMapSlice)
37 if (viewType !=
ViewType.Full || arraySlice != 0 || mipMapSlice != 0)
38 throw new NotImplementedException();
ViewType
Defines how a view is selected from a resource.
Same as Deferred mode, except sprites are sorted by texture prior to drawing. This can improve perfor...
PixelFormat
Defines various types of pixel formats.
The texture dimension is a CubeMap.