Ejemplo n.º 1
0
        public void CmdSetBlendConstants(MgColor4f blendConstants)
        {
            var color = new float[4];

            color[0] = blendConstants.R;
            color[1] = blendConstants.G;
            color[2] = blendConstants.B;
            color[3] = blendConstants.A;

            // TODO : figure a way to directly pass in
            Interops.vkCmdSetBlendConstants(this.Handle, color);
        }