本文整理匯總了C#中SharpDX.Color.ToBgra方法的典型用法代碼示例。如果您正苦於以下問題:C# Color.ToBgra方法的具體用法?C# Color.ToBgra怎麽用?C# Color.ToBgra使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SharpDX.Color
的用法示例。
在下文中一共展示了Color.ToBgra方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: StartRender
protected virtual bool StartRender(RenderContext renderContext, Color borderColor, Vector4 frameData)
{
if (_effect == null || _lastTexture == null)
return false;
// Apply effect parameters
if (_extraParameters != null)
foreach (KeyValuePair<string, object> pair in _extraParameters)
_effect.Parameters[pair.Key] = pair.Value;
// Set border colour for area outside of texture boundaries
GraphicsDevice.Device.SetSamplerState(0, SamplerState.BorderColor, borderColor.ToBgra());
// Render
_effect.StartRender(_lastTexture, renderContext.Transform);
return true;
}
示例2: SetMarker
public static void SetMarker(Color color, string name, params object[] parameters)
{
PixHelper.D3DPERF_SetMarker(color.ToBgra(), string.Format(name, parameters));
}
示例3: BeginEvent
public static int BeginEvent(Color color, string name, params object[] parameters)
{
return PixHelper.D3DPERF_BeginEvent(color.ToBgra(), string.Format(name, parameters));
}