this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Missing constants in IOSurface

+9 -1
src/IOSurface/CMakeLists.txt
src/IOSurface/include/IOSurface/IOSurface.h
+9 -1
src/IOSurface/src/IOSurface.m
··· 21 21 #include <stdio.h> 22 22 #import <IOSurface/IOSurface.h> 23 23 24 + #include <CoreFoundation/CoreFoundation.h> 25 + 26 + const CFStringRef kIOSurfaceBytesPerElement = CFSTR("kIOSurfaceBytesPerElement"); 27 + const CFStringRef kIOSurfaceHeight = CFSTR("kIOSurfaceHeight"); 28 + const CFStringRef kIOSurfaceIsGlobal = CFSTR("kIOSurfaceIsGlobal"); 29 + const CFStringRef kIOSurfacePixelFormat = CFSTR("kIOSurfacePixelFormat"); 30 + const CFStringRef kIOSurfaceWidth = CFSTR("kIOSurfaceWidth"); 31 + 24 32 static int verbose = 0; 25 33 26 34 __attribute__((constructor)) ··· 40 48 41 49 @end 42 50 43 - sting(void) { 51 + void* IOSurfaceAllowsPixelSizeCasting(void) { 44 52 if (verbose) puts("STUB: IOSurfaceAllowsPixelSizeCasting called"); 45 53 return NULL; 46 54 }