在 Cocoa/Mac OSX 10.6 中
OSType IOSurfaceGetPixelFormat(IOSurfaceRef 缓冲区)
返回类型 OSType
我在哪里可以找到有关此函数上下文的受支持 OSType 的一些文档/引用。
对于 IOSurfaceGetPixelFormat,我应该期待什么样的 OSType?你对这个函数的各种期望值有什么想法吗?
最佳答案
从 MacTypes.h
:
typedef FourCharCode OSType;
typedef UInt32 FourCharCode;
typedef unsigned long UInt32; //or unsigned int, depending on architecture
关于ios - Cocoa中如何识别和使用OSType,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1596293/