Update to new vertex input API
parent
0348b5a497
commit
34475c2b11
|
@ -51,11 +51,7 @@ namespace MoonWorks.Test
|
|||
vertShaderModule,
|
||||
fragShaderModule
|
||||
);
|
||||
drawPipelineCreateInfo.VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionTextureVertex>(),
|
||||
VertexAttribute.Create<PositionTextureVertex>("Position", 0),
|
||||
VertexAttribute.Create<PositionTextureVertex>("TexCoord", 1)
|
||||
);
|
||||
drawPipelineCreateInfo.VertexInputState = VertexInputState.CreateSingleBinding<PositionTextureVertex>();
|
||||
drawPipelineCreateInfo.FragmentShaderInfo.SamplerBindingCount = 1;
|
||||
|
||||
drawPipeline = new GraphicsPipeline(
|
||||
|
|
|
@ -52,11 +52,7 @@ namespace MoonWorks.Test
|
|||
vertShaderModule,
|
||||
fragShaderModule
|
||||
);
|
||||
drawPipelineCreateInfo.VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionTextureVertex>(),
|
||||
VertexAttribute.Create<PositionTextureVertex>("Position", 0),
|
||||
VertexAttribute.Create<PositionTextureVertex>("TexCoord", 1)
|
||||
);
|
||||
drawPipelineCreateInfo.VertexInputState = VertexInputState.CreateSingleBinding<PositionTextureVertex>();
|
||||
drawPipelineCreateInfo.FragmentShaderInfo.SamplerBindingCount = 1;
|
||||
|
||||
drawPipeline = new GraphicsPipeline(
|
||||
|
|
|
@ -165,11 +165,7 @@ namespace MoonWorks.Test
|
|||
),
|
||||
DepthStencilState = DepthStencilState.DepthReadWrite,
|
||||
VertexShaderInfo = GraphicsShaderInfo.Create<ViewProjectionUniforms>(cubeVertShaderModule, "main", 0),
|
||||
VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionColorVertex>(),
|
||||
VertexAttribute.Create<PositionColorVertex>("Position", 0),
|
||||
VertexAttribute.Create<PositionColorVertex>("Color", 1)
|
||||
),
|
||||
VertexInputState = VertexInputState.CreateSingleBinding<PositionColorVertex>(),
|
||||
PrimitiveType = PrimitiveType.TriangleList,
|
||||
FragmentShaderInfo = GraphicsShaderInfo.Create(cubeFragShaderModule, "main", 0),
|
||||
RasterizerState = RasterizerState.CW_CullBack,
|
||||
|
@ -193,10 +189,7 @@ namespace MoonWorks.Test
|
|||
),
|
||||
DepthStencilState = DepthStencilState.DepthReadWrite,
|
||||
VertexShaderInfo = GraphicsShaderInfo.Create<ViewProjectionUniforms>(skyboxVertShaderModule, "main", 0),
|
||||
VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionVertex>(),
|
||||
VertexAttribute.Create<PositionVertex>("Position", 0)
|
||||
),
|
||||
VertexInputState = VertexInputState.CreateSingleBinding<PositionVertex>(),
|
||||
PrimitiveType = PrimitiveType.TriangleList,
|
||||
FragmentShaderInfo = GraphicsShaderInfo.Create(skyboxFragShaderModule, "main", 1),
|
||||
RasterizerState = RasterizerState.CW_CullNone,
|
||||
|
@ -214,11 +207,7 @@ namespace MoonWorks.Test
|
|||
blitVertShaderModule,
|
||||
blitFragShaderModule
|
||||
);
|
||||
blitPipelineCreateInfo.VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionTextureVertex>(),
|
||||
VertexAttribute.Create<PositionTextureVertex>("Position", 0),
|
||||
VertexAttribute.Create<PositionTextureVertex>("TexCoord", 1)
|
||||
);
|
||||
blitPipelineCreateInfo.VertexInputState = VertexInputState.CreateSingleBinding<PositionTextureVertex>();
|
||||
blitPipelineCreateInfo.FragmentShaderInfo = GraphicsShaderInfo.Create<DepthUniforms>(blitFragShaderModule, "main", 1);
|
||||
blitPipeline = new GraphicsPipeline(GraphicsDevice, blitPipelineCreateInfo);
|
||||
}
|
||||
|
|
|
@ -31,11 +31,7 @@ namespace MoonWorks.Test
|
|||
vertShaderModule,
|
||||
fragShaderModule
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionColorVertex>(),
|
||||
VertexAttribute.Create<PositionColorVertex>("Position", 0),
|
||||
VertexAttribute.Create<PositionColorVertex>("Color", 1)
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = VertexInputState.CreateSingleBinding<PositionColorVertex>();
|
||||
|
||||
pipelineCreateInfo.RasterizerState = RasterizerState.CW_CullNone;
|
||||
CW_CullNonePipeline = new GraphicsPipeline(GraphicsDevice, pipelineCreateInfo);
|
||||
|
|
|
@ -23,11 +23,7 @@ namespace MoonWorks.Test
|
|||
vertShaderModule,
|
||||
fragShaderModule
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionColorVertex>(),
|
||||
VertexAttribute.Create<PositionColorVertex>("Position", 0),
|
||||
VertexAttribute.Create<PositionColorVertex>("Color", 1)
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = VertexInputState.CreateSingleBinding<PositionColorVertex>();
|
||||
graphicsPipeline = new GraphicsPipeline(GraphicsDevice, pipelineCreateInfo);
|
||||
|
||||
// Create and populate the vertex buffer
|
||||
|
|
|
@ -45,11 +45,7 @@ namespace MoonWorks.Test
|
|||
blitVertShaderModule,
|
||||
blitFragShaderModule
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionTextureVertex>(),
|
||||
VertexAttribute.Create<PositionTextureVertex>("Position", 0),
|
||||
VertexAttribute.Create<PositionTextureVertex>("TexCoord", 1)
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = VertexInputState.CreateSingleBinding<PositionTextureVertex>();
|
||||
pipelineCreateInfo.FragmentShaderInfo.SamplerBindingCount = 1;
|
||||
blitPipeline = new GraphicsPipeline(GraphicsDevice, pipelineCreateInfo);
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ using MoonWorks.Math.Float;
|
|||
namespace MoonWorks.Test
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct PositionVertex
|
||||
public struct PositionVertex : IVertexType
|
||||
{
|
||||
public Vector3 Position;
|
||||
|
||||
|
@ -14,6 +14,11 @@ namespace MoonWorks.Test
|
|||
Position = position;
|
||||
}
|
||||
|
||||
public static VertexElementFormat[] Formats { get; } = new VertexElementFormat[1]
|
||||
{
|
||||
VertexElementFormat.Vector3
|
||||
};
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return Position.ToString();
|
||||
|
@ -21,7 +26,7 @@ namespace MoonWorks.Test
|
|||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct PositionColorVertex
|
||||
public struct PositionColorVertex : IVertexType
|
||||
{
|
||||
public Vector3 Position;
|
||||
public Color Color;
|
||||
|
@ -32,6 +37,12 @@ namespace MoonWorks.Test
|
|||
Color = color;
|
||||
}
|
||||
|
||||
public static VertexElementFormat[] Formats { get; } = new VertexElementFormat[2]
|
||||
{
|
||||
VertexElementFormat.Vector3,
|
||||
VertexElementFormat.Color
|
||||
};
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return Position + " | " + Color;
|
||||
|
@ -39,7 +50,7 @@ namespace MoonWorks.Test
|
|||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct PositionTextureVertex
|
||||
public struct PositionTextureVertex : IVertexType
|
||||
{
|
||||
public Vector3 Position;
|
||||
public Vector2 TexCoord;
|
||||
|
@ -50,6 +61,12 @@ namespace MoonWorks.Test
|
|||
TexCoord = texCoord;
|
||||
}
|
||||
|
||||
public static VertexElementFormat[] Formats { get; } = new VertexElementFormat[2]
|
||||
{
|
||||
VertexElementFormat.Vector3,
|
||||
VertexElementFormat.Vector2
|
||||
};
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return Position + " | " + TexCoord;
|
||||
|
|
|
@ -50,11 +50,7 @@ namespace MoonWorks.Test
|
|||
fragShaderModule
|
||||
);
|
||||
pipelineCreateInfo.AttachmentInfo.ColorAttachmentDescriptions[0].BlendState = ColorAttachmentBlendState.AlphaBlend;
|
||||
pipelineCreateInfo.VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionTextureVertex>(),
|
||||
VertexAttribute.Create<PositionTextureVertex>("Position", 0),
|
||||
VertexAttribute.Create<PositionTextureVertex>("TexCoord", 1)
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = VertexInputState.CreateSingleBinding<PositionTextureVertex>();
|
||||
pipelineCreateInfo.VertexShaderInfo = GraphicsShaderInfo.Create<VertexUniforms>(vertShaderModule, "main", 0);
|
||||
pipelineCreateInfo.FragmentShaderInfo = GraphicsShaderInfo.Create<FragmentUniforms>(fragShaderModule, "main", 1);
|
||||
pipeline = new GraphicsPipeline(GraphicsDevice, pipelineCreateInfo);
|
||||
|
|
|
@ -38,11 +38,7 @@ namespace MoonWorks.Test
|
|||
vertShaderModule,
|
||||
fragShaderModule
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionTextureVertex>(),
|
||||
VertexAttribute.Create<PositionTextureVertex>("Position", 0),
|
||||
VertexAttribute.Create<PositionTextureVertex>("TexCoord", 1)
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = VertexInputState.CreateSingleBinding<PositionTextureVertex>();
|
||||
pipelineCreateInfo.FragmentShaderInfo.SamplerBindingCount = 1;
|
||||
pipeline = new GraphicsPipeline(GraphicsDevice, pipelineCreateInfo);
|
||||
|
||||
|
|
|
@ -21,11 +21,7 @@ namespace MoonWorks.Test
|
|||
vertShaderModule,
|
||||
fragShaderModule
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = new VertexInputState(
|
||||
VertexBinding.Create<PositionColorVertex>(),
|
||||
VertexAttribute.Create<PositionColorVertex>("Position", 0),
|
||||
VertexAttribute.Create<PositionColorVertex>("Color", 1)
|
||||
);
|
||||
pipelineCreateInfo.VertexInputState = VertexInputState.CreateSingleBinding<PositionColorVertex>();
|
||||
pipeline = new GraphicsPipeline(GraphicsDevice, pipelineCreateInfo);
|
||||
|
||||
// Create and populate the vertex buffer
|
||||
|
|
Loading…
Reference in New Issue