diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/50615-block_literal_protocol.m')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/50615-block_literal_protocol.m | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/50615-block_literal_protocol.m b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/50615-block_literal_protocol.m deleted file mode 100644 index 35879a0e..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/oc/50615-block_literal_protocol.m +++ /dev/null @@ -1,19 +0,0 @@ -#import <Foundation/Foundation.h> - -@interface TestClass : NSObject -@end - -@implementation TestClass - -- (void)drawSomething:(id<MTLCommandBuffer>)commandBuffer { - [renderPass performDrawBlock:^(id<MTLRenderCommandEncoder> renderCommandEncoder) { - screenBlitObject.texture = src; - - // Make sure the pipeline state pixelformat is the same as destination pixel format - [screenBlitObject updatePipelineState:dst.pixelFormat]; - - [screenBlitObject drawWithRenderCommandEncoder:renderCommandEncoder]; - } withTargetTexture:dst andCommandBuffer:commandBuffer]; -} - -@end |