mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Correct CaptureScope
This commit is contained in:
@@ -5552,12 +5552,12 @@ CaptureScope_beginScope :: #force_inline proc(self: ^CaptureScope) {
|
|||||||
msgSend(nil, self, "beginScope")
|
msgSend(nil, self, "beginScope")
|
||||||
}
|
}
|
||||||
@(objc_type=CaptureScope, objc_name="commandQueue")
|
@(objc_type=CaptureScope, objc_name="commandQueue")
|
||||||
CaptureScope_commandQueue :: #force_inline proc(self: ^CaptureScope) -> ^CaptureScope {
|
CaptureScope_commandQueue :: #force_inline proc(self: ^CaptureScope) -> ^CommandQueue {
|
||||||
return msgSend(^CaptureScope, self, "commandQueue")
|
return msgSend(^CommandQueue, self, "commandQueue")
|
||||||
}
|
}
|
||||||
@(objc_type=CaptureScope, objc_name="device")
|
@(objc_type=CaptureScope, objc_name="device")
|
||||||
CaptureScope_device :: #force_inline proc(self: ^CaptureScope) -> ^CaptureScope {
|
CaptureScope_device :: #force_inline proc(self: ^CaptureScope) -> ^Device {
|
||||||
return msgSend(^CaptureScope, self, "device")
|
return msgSend(^Device, self, "device")
|
||||||
}
|
}
|
||||||
@(objc_type=CaptureScope, objc_name="endScope")
|
@(objc_type=CaptureScope, objc_name="endScope")
|
||||||
CaptureScope_endScope :: #force_inline proc(self: ^CaptureScope) {
|
CaptureScope_endScope :: #force_inline proc(self: ^CaptureScope) {
|
||||||
|
|||||||
Reference in New Issue
Block a user