From 7c10993890b5622d01b73efac20e460f9a240332 Mon Sep 17 00:00:00 2001 From: Vaclav Elias Date: Tue, 12 Mar 2024 16:18:57 +0000 Subject: [PATCH] fix: File GraphicsResourceMap.cs without references removed (#2181) --- .../Stride.Graphics/GraphicsResourceMap.cs | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 sources/engine/Stride.Graphics/GraphicsResourceMap.cs diff --git a/sources/engine/Stride.Graphics/GraphicsResourceMap.cs b/sources/engine/Stride.Graphics/GraphicsResourceMap.cs deleted file mode 100644 index 05a88bae8..000000000 --- a/sources/engine/Stride.Graphics/GraphicsResourceMap.cs +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) .NET Foundation and Contributors (https://dotnetfoundation.org/ & https://stride3d.net) and Silicon Studio Corp. (https://www.siliconstudio.co.jp) -// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. -using System; - -namespace Stride.Graphics -{ - /// - /// Structured returned by . - /// - public struct GraphicsResourceMap - { - /// - /// Pointer to the data of the being mapped into the CPU memory. - /// - /// - /// If is set to low, data are aligned to 4 bytes else alignment is 16 bytes. - /// - public IntPtr DataPointer; - - /// - /// The row pitch, or width, or physical size (in bytes) of the data. - /// - public int RowPitch; - - /// - /// The depth pitch, or width, or physical size (in bytes)of the data. - /// - public int DepthPitch; - } -}