summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/block_literal_protocol.m
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/block_literal_protocol.m')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/block_literal_protocol.m19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/block_literal_protocol.m b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/block_literal_protocol.m
deleted file mode 100644
index 02d1cfca..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/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