From 9dfce3da86419ae477a97113bea381c7f4be104d Mon Sep 17 00:00:00 2001 From: Steve Waddicor Date: Fri, 1 Aug 2025 23:06:04 +0100 Subject: [PATCH] Convert leading spaces to tabs --- .../darwin/Foundation/NSBitmapImageRep.odin | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/core/sys/darwin/Foundation/NSBitmapImageRep.odin b/core/sys/darwin/Foundation/NSBitmapImageRep.odin index 2fcdf6530..059a75e43 100644 --- a/core/sys/darwin/Foundation/NSBitmapImageRep.odin +++ b/core/sys/darwin/Foundation/NSBitmapImageRep.odin @@ -7,44 +7,44 @@ BitmapImageRep :: struct { using _: Object } @(objc_type=BitmapImageRep, objc_name="alloc", objc_is_class_method=true) BitmapImageRep_alloc :: proc "c" () -> ^BitmapImageRep { - return msgSend(^BitmapImageRep, BitmapImageRep, "alloc") + return msgSend(^BitmapImageRep, BitmapImageRep, "alloc") } @(objc_type=BitmapImageRep, objc_name="initWithBitmapDataPlanes") BitmapImageRep_initWithBitmapDataPlanes :: proc "c" ( - self: ^BitmapImageRep, - bitmapDataPlanes: ^^u8, - pixelsWide: Integer, - pixelsHigh: Integer, - bitsPerSample: Integer, - samplesPerPixel: Integer, - hasAlpha: bool, - isPlanar: bool, - colorSpaceName: ^String, - bytesPerRow: Integer, - bitsPerPixel: Integer) -> ^BitmapImageRep { + self: ^BitmapImageRep, + bitmapDataPlanes: ^^u8, + pixelsWide: Integer, + pixelsHigh: Integer, + bitsPerSample: Integer, + samplesPerPixel: Integer, + hasAlpha: bool, + isPlanar: bool, + colorSpaceName: ^String, + bytesPerRow: Integer, + bitsPerPixel: Integer) -> ^BitmapImageRep { return msgSend(^BitmapImageRep, - self, - "initWithBitmapDataPlanes:pixelsWide:pixelsHigh:bitsPerSample:samplesPerPixel:hasAlpha:isPlanar:colorSpaceName:bytesPerRow:bitsPerPixel:", - bitmapDataPlanes, - pixelsWide, - pixelsHigh, - bitsPerSample, - samplesPerPixel, - hasAlpha, - isPlanar, - colorSpaceName, - bytesPerRow, - bitsPerPixel) + self, + "initWithBitmapDataPlanes:pixelsWide:pixelsHigh:bitsPerSample:samplesPerPixel:hasAlpha:isPlanar:colorSpaceName:bytesPerRow:bitsPerPixel:", + bitmapDataPlanes, + pixelsWide, + pixelsHigh, + bitsPerSample, + samplesPerPixel, + hasAlpha, + isPlanar, + colorSpaceName, + bytesPerRow, + bitsPerPixel) } @(objc_type=BitmapImageRep, objc_name="bitmapData") BitmapImageRep_bitmapData :: proc "c" (self: ^BitmapImageRep) -> rawptr { - return msgSend(rawptr, self, "bitmapData") + return msgSend(rawptr, self, "bitmapData") } @(objc_type=BitmapImageRep, objc_name="CGImage") BitmapImageRep_CGImage :: proc "c" (self: ^BitmapImageRep) -> rawptr { - return msgSend(rawptr, self, "CGImage") + return msgSend(rawptr, self, "CGImage") }