CSPspEmu.Core.Gpu.Run.GpuDisplayListRunner.PointMultAdd C# (CSharp) Method

PointMultAdd() private static method

private static PointMultAdd ( VertexInfo &dest, VertexInfo &src, float f ) : void
dest VertexInfo
src VertexInfo
f float
return void
		private static void PointMultAdd(ref VertexInfo dest, ref VertexInfo src, float f)
		{
			dest.Position += src.Position * f;
			dest.Texture += src.Texture * f;
			dest.Color += src.Color * f;
			dest.Normal += src.Normal * f;
		}
GpuDisplayListRunner