how to get effect of solid and wireframe at the same time
while the FillMode only allow one mode
like this from blender
i draw like this
public static VertexPositionColor[] triVertices = new VertexPositionColor[0];
//
if ( triVertices.Length > 0)
{
GraphicsDevice.DrawUserPrimitives(PrimitiveType.TriangleList, triVertices, 0, triVertices.Length / 3);
}