diff --git a/FinalEngine.Rendering.OpenGL/OpenGLRenderDevice.cs b/FinalEngine.Rendering.OpenGL/OpenGLRenderDevice.cs index 2557d700..948916d3 100644 --- a/FinalEngine.Rendering.OpenGL/OpenGLRenderDevice.cs +++ b/FinalEngine.Rendering.OpenGL/OpenGLRenderDevice.cs @@ -100,7 +100,6 @@ public OpenGLRenderDevice(IOpenGLInvoker invoker) { PixelFormat.Rgb, TKPixelForamt.Rgb }, { PixelFormat.Rgba, TKPixelForamt.Rgba }, { PixelFormat.Depth, TKPixelForamt.DepthComponent }, - { PixelFormat.DepthAndStencil, TKPixelForamt.DepthStencil }, { SizedFormat.R8, SizedInternalFormat.R8 }, { SizedFormat.Rg8, SizedInternalFormat.Rg8 }, { SizedFormat.Rgb8, All.Rgb8 }, diff --git a/FinalEngine.Rendering/Textures/PixelFormat.cs b/FinalEngine.Rendering/Textures/PixelFormat.cs index 42acb60f..50ddd979 100644 --- a/FinalEngine.Rendering/Textures/PixelFormat.cs +++ b/FinalEngine.Rendering/Textures/PixelFormat.cs @@ -15,6 +15,4 @@ public enum PixelFormat Rgba, Depth, - - DepthAndStencil, }