Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
VertexElementWithOffset.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 namespace SiliconStudio.Paradox.Graphics
4 {
5  public struct VertexElementWithOffset
6  {
8  public int Offset;
9  public int Size;
10 
11  public VertexElementWithOffset(VertexElement vertexElement, int offset, int size)
12  {
13  VertexElement = vertexElement;
14  Offset = offset;
15  Size = size;
16  }
17  }
18 }
VertexElementWithOffset(VertexElement vertexElement, int offset, int size)
_In_ size_t _In_ size_t size
Definition: DirectXTexP.h:175
A description of a single element for the input-assembler stage. This structure is related to Direct3...