INTERNAL_CALL_ClearRenderTarget() приватный Метод

private INTERNAL_CALL_ClearRenderTarget ( CommandBuffer self, bool clearDepth, bool clearColor, System.Color &backgroundColor, float depth ) : void
self CommandBuffer
clearDepth bool
clearColor bool
backgroundColor System.Color
depth float
Результат void
Пример #1
0
        public void ClearRenderTarget(bool clearDepth, bool clearColor, Color backgroundColor)
        {
            float depth = 1f;

            CommandBuffer.INTERNAL_CALL_ClearRenderTarget(this, clearDepth, clearColor, ref backgroundColor, depth);
        }
Пример #2
0
 public void ClearRenderTarget(bool clearDepth, bool clearColor, Color backgroundColor, [DefaultValue("1.0f")] float depth)
 {
     CommandBuffer.INTERNAL_CALL_ClearRenderTarget(this, clearDepth, clearColor, ref backgroundColor, depth);
 }