├── Oculus Rift DK2 Template.qtz ├── Oculus Rift DK2.plugin └── Contents │ ├── MacOS │ └── Oculus Rift DK2 │ └── Info.plist ├── _src ├── Oculus Rift DK2.xcodeproj │ ├── xcuserdata │ │ └── tarng.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── xcschememanagement.plist │ │ │ └── Oculus Rift DK2.xcscheme │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── Oculus Rift DK2.xccheckout │ └── project.pbxproj └── Oculus Rift DK2 │ ├── Info.plist │ ├── Oculus_Rift_DK2PlugIn.h │ └── Oculus_Rift_DK2PlugIn.mm └── README.md /Oculus Rift DK2 Template.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarngerine/oculus-dk2-quartz-composer/HEAD/Oculus Rift DK2 Template.qtz -------------------------------------------------------------------------------- /Oculus Rift DK2.plugin/Contents/MacOS/Oculus Rift DK2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarngerine/oculus-dk2-quartz-composer/HEAD/Oculus Rift DK2.plugin/Contents/MacOS/Oculus Rift DK2 -------------------------------------------------------------------------------- /_src/Oculus Rift DK2.xcodeproj/xcuserdata/tarng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /_src/Oculus Rift DK2.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /_src/Oculus Rift DK2.xcodeproj/xcuserdata/tarng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Oculus Rift DK2.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | B119CAFC1AF1D964004DE75D 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /_src/Oculus Rift DK2/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | JT.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | NSHumanReadableCopyright 24 | Copyright © 2015 Julius Tarng. All rights reserved. 25 | QCPlugInClasses 26 | 27 | Oculus_Rift_DK2PlugIn 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /_src/Oculus Rift DK2/Oculus_Rift_DK2PlugIn.h: -------------------------------------------------------------------------------- 1 | // 2 | // Oculus_Rift_DK2PlugIn.h 3 | // Oculus Rift DK2 4 | // 5 | // Created by Julius Tarng on 4/29/15. 6 | // Copyright (c) 2015 Julius Tarng. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "OVR.h" 11 | 12 | using namespace OVR; 13 | 14 | @interface Oculus_Rift_DK2PlugIn : QCPlugIn 15 | { 16 | ovrHmd hmd; 17 | ovrTrackingState trackingState; 18 | double resetOrientationX; 19 | double resetOrientationY; 20 | double resetOrientationZ; 21 | } 22 | 23 | 24 | @property (atomic, readwrite, copy) NSString* displayDeviceName; 25 | //@property (atomic, readwrite, assign) double distortionK0; 26 | 27 | // Declare here the properties to be used as input and output ports for the plug-in e.g. 28 | //@property double inputFoo; 29 | //@property (copy) NSString* outputBar; 30 | 31 | @property BOOL outputDeviceConnected; 32 | @property double outputHeadOrientationX; 33 | @property double outputHeadOrientationY; 34 | @property double outputHeadOrientationZ; 35 | @property BOOL inputResetOrientation; 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Oculus Rift DK2 Plug-in for Quartz Composer 2 | Quartz Composer plugin for Oculus DK2 basic orientation support. 3 | 4 | For optimal UI design speed, use with [Origami — a design prototyping tool from Facebook built on top of Quartz Composer](http://facebook.github.io/origami/). (Template provided requires patches from Origami). 5 | 6 | # Installation 7 | [Download Zip](https://github.com/tarngerine/oculus-dk2-quartz-composer/archive/master.zip) and add `Oculus Rift DK2.plugin` to your `~/Library/Graphics/Quartz Composer Plug-Ins/` folder 8 | 9 | # Setup 10 | Use with two `3D Transformation` patches: 11 | 12 | ![](https://s3.amazonaws.com/f.cl.ly/items/3n12082b1Z0B0d1m2x02/Image%202015-06-24%20at%2010.37.04%20AM.png) 13 | 14 | Roll Camera with `Rotation Z` 15 | 16 | ![](https://s3.amazonaws.com/f.cl.ly/items/1H263s3u2L0h2Q1s3h0m/Image%202015-06-24%20at%2010.38.13%20AM.png) 17 | 18 | Pitch/Yaw Camera with `Rotation X/Y` 19 | 20 | Once your DK2 is plugged in, use Mirror Mode on your monitor with the DK2 as primary, so the viewer is 1080p (the resolution of DK2), and full screen the viewer. 21 | -------------------------------------------------------------------------------- /Oculus Rift DK2.plugin/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 14E46 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Oculus Rift DK2 11 | CFBundleIdentifier 12 | JT.Oculus-Rift-DK2 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Oculus Rift DK2 17 | CFBundlePackageType 18 | BNDL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 6E35b 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 14D125 33 | DTSDKName 34 | macosx10.10 35 | DTXcode 36 | 0640 37 | DTXcodeBuild 38 | 6E35b 39 | NSHumanReadableCopyright 40 | Copyright © 2015 Julius Tarng. All rights reserved. 41 | QCPlugInClasses 42 | 43 | Oculus_Rift_DK2PlugIn 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /_src/Oculus Rift DK2.xcodeproj/project.xcworkspace/xcshareddata/Oculus Rift DK2.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | FAF62264-89DE-4CD1-BA14-52E7BB8F87E6 9 | IDESourceControlProjectName 10 | Oculus Rift DK2 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | A22F61171BB443535785477C3AB66766F5D16BE8 14 | github.com:tarngerine/oculus-dk2-quartz-composer.git 15 | 16 | IDESourceControlProjectPath 17 | _src/Oculus Rift DK2.xcodeproj 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | A22F61171BB443535785477C3AB66766F5D16BE8 21 | ../../.. 22 | 23 | IDESourceControlProjectURL 24 | github.com:tarngerine/oculus-dk2-quartz-composer.git 25 | IDESourceControlProjectVersion 26 | 111 27 | IDESourceControlProjectWCCIdentifier 28 | A22F61171BB443535785477C3AB66766F5D16BE8 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | A22F61171BB443535785477C3AB66766F5D16BE8 36 | IDESourceControlWCCName 37 | Oculus%20Rift%20DK2 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /_src/Oculus Rift DK2.xcodeproj/xcuserdata/tarng.xcuserdatad/xcschemes/Oculus Rift DK2.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 45 | 46 | 47 | 53 | 54 | 55 | 56 | 57 | 58 | 64 | 65 | 71 | 72 | 73 | 74 | 76 | 77 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /_src/Oculus Rift DK2/Oculus_Rift_DK2PlugIn.mm: -------------------------------------------------------------------------------- 1 | // 2 | // Oculus_Rift_DK2PlugIn.m 3 | // Oculus Rift DK2 4 | // 5 | // Created by Julius Tarng on 4/29/15. 6 | // Copyright (c) 2015 Julius Tarng. All rights reserved. 7 | // 8 | 9 | // It's highly recommended to use CGL macros instead of changing the current context for plug-ins that perform OpenGL rendering 10 | #import 11 | 12 | #import "Oculus_Rift_DK2PlugIn.h" 13 | 14 | #define kQCPlugIn_Name @"Oculus Rift DK2" 15 | #define kQCPlugIn_Description @"Basic head orientation (in degrees) information from an attached DK2.\n\nPair with two 3D Transform patches inside each other, with Rotation Z on the outer, and Rotation X/Y on the inner." 16 | 17 | @implementation Oculus_Rift_DK2PlugIn 18 | 19 | // Here you need to declare the input / output properties as dynamic as Quartz Composer will handle their implementation 20 | //@dynamic inputFoo, outputBar; 21 | 22 | @dynamic outputDeviceConnected; 23 | @dynamic outputHeadOrientationX; 24 | @dynamic outputHeadOrientationY; 25 | @dynamic outputHeadOrientationZ; 26 | @dynamic inputResetOrientation; 27 | 28 | + (NSDictionary *)attributes 29 | { 30 | // Return a dictionary of attributes describing the plug-in (QCPlugInAttributeNameKey, QCPlugInAttributeDescriptionKey...). 31 | return @{QCPlugInAttributeNameKey:kQCPlugIn_Name, QCPlugInAttributeDescriptionKey:kQCPlugIn_Description}; 32 | } 33 | 34 | + (NSDictionary *)attributesForPropertyPortWithKey:(NSString *)key 35 | { 36 | // Specify the optional attributes for property based ports (QCPortAttributeNameKey, QCPortAttributeDefaultValueKey...). 37 | 38 | if([key isEqualToString:@"outputDeviceConnected"]) 39 | return @{QCPortAttributeNameKey: @"Connected"}; 40 | 41 | if([key isEqualToString:@"outputHeadOrientationX"]) 42 | return @{QCPortAttributeNameKey: @"Rotation X"}; 43 | 44 | if([key isEqualToString:@"outputHeadOrientationY"]) 45 | return @{QCPortAttributeNameKey: @"Rotation Y"}; 46 | 47 | if([key isEqualToString:@"outputHeadOrientationZ"]) 48 | return @{QCPortAttributeNameKey: @"Rotation Z"}; 49 | 50 | if([key isEqualToString:@"inputResetOrientation"]) 51 | return @{QCPortAttributeNameKey: @"Reset"}; 52 | 53 | return nil; 54 | } 55 | 56 | + (QCPlugInExecutionMode)executionMode 57 | { 58 | // Return the execution mode of the plug-in: kQCPlugInExecutionModeProvider, kQCPlugInExecutionModeProcessor, or kQCPlugInExecutionModeConsumer. 59 | return kQCPlugInExecutionModeProvider; 60 | } 61 | 62 | + (QCPlugInTimeMode)timeMode 63 | { 64 | // Return the time dependency mode of the plug-in: kQCPlugInTimeModeNone, kQCPlugInTimeModeIdle or kQCPlugInTimeModeTimeBase. 65 | return kQCPlugInTimeModeIdle; 66 | } 67 | 68 | - (instancetype)init 69 | { 70 | self = [super init]; 71 | if (self) { 72 | // Allocate any permanent resource required by the plug-in. 73 | ovr_Initialize(); 74 | hmd = ovrHmd_Create(0); 75 | resetOrientationX = 0; 76 | resetOrientationY = 0; 77 | resetOrientationZ = 0; 78 | 79 | if(!ovrHmd_ConfigureTracking(hmd, ovrTrackingCap_Orientation | 80 | ovrTrackingCap_MagYawCorrection | 81 | ovrTrackingCap_Position, 0)) 82 | { 83 | NSLog(@"Error configuring tracking"); 84 | } 85 | } 86 | 87 | return self; 88 | } 89 | 90 | -(void)dealloc 91 | { 92 | if(hmd) { ovrHmd_Destroy(hmd); } 93 | ovr_Shutdown(); 94 | } 95 | 96 | @end 97 | 98 | @implementation Oculus_Rift_DK2PlugIn (Execution) 99 | 100 | - (BOOL)startExecution:(id )context 101 | { 102 | // Called by Quartz Composer when rendering of the composition starts: perform any required setup for the plug-in. 103 | // Return NO in case of fatal failure (this will prevent rendering of the composition to start). 104 | 105 | return YES; 106 | } 107 | 108 | - (void)enableExecution:(id )context 109 | { 110 | // Called by Quartz Composer when the plug-in instance starts being used by Quartz Composer. 111 | } 112 | 113 | - (BOOL)execute:(id )context atTime:(NSTimeInterval)time withArguments:(NSDictionary *)arguments 114 | { 115 | /* 116 | Called by Quartz Composer whenever the plug-in instance needs to execute. 117 | Only read from the plug-in inputs and produce a result (by writing to the plug-in outputs or rendering to the destination OpenGL context) within that method and nowhere else. 118 | Return NO in case of failure during the execution (this will prevent rendering of the current frame to complete). 119 | 120 | The OpenGL context for rendering can be accessed and defined for CGL macros using: 121 | CGLContextObj cgl_ctx = [context CGLContextObj]; 122 | */ 123 | 124 | if(ovrHmd_Detect() > 0){ 125 | self.outputDeviceConnected = YES; 126 | 127 | trackingState = ovrHmd_GetTrackingState(hmd, ovr_GetTimeInSeconds()); 128 | 129 | if (trackingState.StatusFlags & (ovrStatus_OrientationTracked | ovrStatus_PositionTracked)) { 130 | if (self.inputResetOrientation && 131 | self.outputHeadOrientationX && 132 | self.outputHeadOrientationY && 133 | self.outputHeadOrientationZ) { 134 | resetOrientationX = self.outputHeadOrientationX; 135 | resetOrientationY = self.outputHeadOrientationY; 136 | resetOrientationZ = self.outputHeadOrientationZ; 137 | } 138 | 139 | Posef pose = trackingState.HeadPose.ThePose; 140 | float x; 141 | float y; 142 | float z; 143 | pose.Rotation.GetEulerAngles(&y, &x, &z); 144 | 145 | self.outputHeadOrientationX = resetOrientationX - RadToDegree(x); 146 | self.outputHeadOrientationY = resetOrientationY - RadToDegree(y); 147 | self.outputHeadOrientationZ = resetOrientationZ - RadToDegree(z); 148 | } 149 | } else { 150 | self.outputDeviceConnected = NO; 151 | } 152 | return YES; 153 | } 154 | 155 | - (void)disableExecution:(id )context 156 | { 157 | // Called by Quartz Composer when the plug-in instance stops being used by Quartz Composer. 158 | } 159 | 160 | - (void)stopExecution:(id )context 161 | { 162 | // Called by Quartz Composer when rendering of the composition stops: perform any required cleanup for the plug-in. 163 | } 164 | 165 | @end 166 | -------------------------------------------------------------------------------- /_src/Oculus Rift DK2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | B119CB041AF1D964004DE75D /* Oculus_Rift_DK2PlugIn.mm in Sources */ = {isa = PBXBuildFile; fileRef = B119CB031AF1D964004DE75D /* Oculus_Rift_DK2PlugIn.mm */; settings = {COMPILER_FLAGS = "-fno-rtti"; }; }; 11 | B119CB0D1AF1D9F5004DE75D /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B119CB0C1AF1D9F5004DE75D /* IOKit.framework */; }; 12 | B119CB0F1AF1D9F9004DE75D /* Quartz.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B119CB0E1AF1D9F9004DE75D /* Quartz.framework */; }; 13 | B119CB111AF1DA05004DE75D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B119CB101AF1DA05004DE75D /* Cocoa.framework */; }; 14 | B119CE7D1AF1DEFE004DE75D /* libovr.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B119CB1D1AF1DC66004DE75D /* libovr.a */; }; 15 | B119CE801AF1E426004DE75D /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B119CE7F1AF1E426004DE75D /* OpenGL.framework */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXContainerItemProxy section */ 19 | B119CE7B1AF1DC68004DE75D /* PBXContainerItemProxy */ = { 20 | isa = PBXContainerItemProxy; 21 | containerPortal = B119CDE11AF1DC68004DE75D /* LibOVR.xcodeproj */; 22 | proxyType = 2; 23 | remoteGlobalIDString = E82D4CD31906FE640070CB3F; 24 | remoteInfo = LibOVR; 25 | }; 26 | /* End PBXContainerItemProxy section */ 27 | 28 | /* Begin PBXFileReference section */ 29 | B119CAFD1AF1D964004DE75D /* Oculus Rift DK2.plugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Oculus Rift DK2.plugin"; sourceTree = BUILT_PRODUCTS_DIR; }; 30 | B119CB011AF1D964004DE75D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 31 | B119CB021AF1D964004DE75D /* Oculus_Rift_DK2PlugIn.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Oculus_Rift_DK2PlugIn.h; sourceTree = ""; }; 32 | B119CB031AF1D964004DE75D /* Oculus_Rift_DK2PlugIn.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = Oculus_Rift_DK2PlugIn.mm; sourceTree = ""; }; 33 | B119CB0C1AF1D9F5004DE75D /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; }; 34 | B119CB0E1AF1D9F9004DE75D /* Quartz.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Quartz.framework; path = System/Library/Frameworks/Quartz.framework; sourceTree = SDKROOT; }; 35 | B119CB101AF1DA05004DE75D /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; }; 36 | B119CB171AF1DC66004DE75D /* OVR.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR.h; sourceTree = ""; }; 37 | B119CB181AF1DC66004DE75D /* OVR_Kernel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Kernel.h; sourceTree = ""; }; 38 | B119CB191AF1DC66004DE75D /* OVR_Version.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Version.h; sourceTree = ""; }; 39 | B119CB1D1AF1DC66004DE75D /* libovr.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libovr.a; sourceTree = ""; }; 40 | B119CB1F1AF1DC66004DE75D /* dgph */ = {isa = PBXFileReference; lastKnownFileType = file; path = dgph; sourceTree = ""; }; 41 | B119CB201AF1DC66004DE75D /* libovr-all-non-framework-target-headers.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = "libovr-all-non-framework-target-headers.hmap"; sourceTree = ""; }; 42 | B119CB211AF1DC66004DE75D /* libovr-all-target-headers.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = "libovr-all-target-headers.hmap"; sourceTree = ""; }; 43 | B119CB221AF1DC66004DE75D /* libovr-generated-files.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = "libovr-generated-files.hmap"; sourceTree = ""; }; 44 | B119CB231AF1DC66004DE75D /* libovr-own-target-headers.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = "libovr-own-target-headers.hmap"; sourceTree = ""; }; 45 | B119CB241AF1DC66004DE75D /* libovr-project-headers.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = "libovr-project-headers.hmap"; sourceTree = ""; }; 46 | B119CB251AF1DC66004DE75D /* libovr.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = libovr.hmap; sourceTree = ""; }; 47 | B119CB281AF1DC66004DE75D /* CAPI_DistortionRenderer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_DistortionRenderer.d; sourceTree = ""; }; 48 | B119CB291AF1DC66004DE75D /* CAPI_DistortionRenderer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_DistortionRenderer.dia; sourceTree = ""; }; 49 | B119CB2A1AF1DC66004DE75D /* CAPI_DistortionRenderer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_DistortionRenderer.o; sourceTree = ""; }; 50 | B119CB2B1AF1DC66004DE75D /* CAPI_FrameTimeManager.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_FrameTimeManager.d; sourceTree = ""; }; 51 | B119CB2C1AF1DC66004DE75D /* CAPI_FrameTimeManager.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_FrameTimeManager.dia; sourceTree = ""; }; 52 | B119CB2D1AF1DC66004DE75D /* CAPI_FrameTimeManager.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_FrameTimeManager.o; sourceTree = ""; }; 53 | B119CB2E1AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_DistortionRenderer.d; sourceTree = ""; }; 54 | B119CB2F1AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_DistortionRenderer.dia; sourceTree = ""; }; 55 | B119CB301AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_DistortionRenderer.o; sourceTree = ""; }; 56 | B119CB311AF1DC66004DE75D /* CAPI_GL_HSWDisplay.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_HSWDisplay.d; sourceTree = ""; }; 57 | B119CB321AF1DC66004DE75D /* CAPI_GL_HSWDisplay.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_HSWDisplay.dia; sourceTree = ""; }; 58 | B119CB331AF1DC66004DE75D /* CAPI_GL_HSWDisplay.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_HSWDisplay.o; sourceTree = ""; }; 59 | B119CB341AF1DC66004DE75D /* CAPI_GL_Util.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_Util.d; sourceTree = ""; }; 60 | B119CB351AF1DC66004DE75D /* CAPI_GL_Util.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_Util.dia; sourceTree = ""; }; 61 | B119CB361AF1DC66004DE75D /* CAPI_GL_Util.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_Util.o; sourceTree = ""; }; 62 | B119CB371AF1DC66004DE75D /* CAPI_GLE.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GLE.d; sourceTree = ""; }; 63 | B119CB381AF1DC66004DE75D /* CAPI_GLE.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GLE.dia; sourceTree = ""; }; 64 | B119CB391AF1DC66004DE75D /* CAPI_GLE.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GLE.o; sourceTree = ""; }; 65 | B119CB3A1AF1DC66004DE75D /* CAPI_HMDRenderState.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HMDRenderState.d; sourceTree = ""; }; 66 | B119CB3B1AF1DC66004DE75D /* CAPI_HMDRenderState.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HMDRenderState.dia; sourceTree = ""; }; 67 | B119CB3C1AF1DC66004DE75D /* CAPI_HMDRenderState.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HMDRenderState.o; sourceTree = ""; }; 68 | B119CB3D1AF1DC66004DE75D /* CAPI_HMDState.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HMDState.d; sourceTree = ""; }; 69 | B119CB3E1AF1DC66004DE75D /* CAPI_HMDState.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HMDState.dia; sourceTree = ""; }; 70 | B119CB3F1AF1DC66004DE75D /* CAPI_HMDState.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HMDState.o; sourceTree = ""; }; 71 | B119CB401AF1DC66004DE75D /* CAPI_HSWDisplay.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HSWDisplay.d; sourceTree = ""; }; 72 | B119CB411AF1DC66004DE75D /* CAPI_HSWDisplay.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HSWDisplay.dia; sourceTree = ""; }; 73 | B119CB421AF1DC66004DE75D /* CAPI_HSWDisplay.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HSWDisplay.o; sourceTree = ""; }; 74 | B119CB431AF1DC66004DE75D /* CAPI_LatencyStatistics.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_LatencyStatistics.d; sourceTree = ""; }; 75 | B119CB441AF1DC66004DE75D /* CAPI_LatencyStatistics.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_LatencyStatistics.dia; sourceTree = ""; }; 76 | B119CB451AF1DC66004DE75D /* CAPI_LatencyStatistics.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_LatencyStatistics.o; sourceTree = ""; }; 77 | B119CB461AF1DC66004DE75D /* libovr.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libovr.a; sourceTree = ""; }; 78 | B119CB471AF1DC66004DE75D /* libovr.LinkFileList */ = {isa = PBXFileReference; lastKnownFileType = text; path = libovr.LinkFileList; sourceTree = ""; }; 79 | B119CB481AF1DC66004DE75D /* OVR_Alg.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Alg.d; sourceTree = ""; }; 80 | B119CB491AF1DC66004DE75D /* OVR_Alg.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Alg.dia; sourceTree = ""; }; 81 | B119CB4A1AF1DC66004DE75D /* OVR_Alg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Alg.o; sourceTree = ""; }; 82 | B119CB4B1AF1DC66004DE75D /* OVR_Allocator.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Allocator.d; sourceTree = ""; }; 83 | B119CB4C1AF1DC66004DE75D /* OVR_Allocator.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Allocator.dia; sourceTree = ""; }; 84 | B119CB4D1AF1DC66004DE75D /* OVR_Allocator.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Allocator.o; sourceTree = ""; }; 85 | B119CB4E1AF1DC66004DE75D /* OVR_Atomic.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Atomic.d; sourceTree = ""; }; 86 | B119CB4F1AF1DC66004DE75D /* OVR_Atomic.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Atomic.dia; sourceTree = ""; }; 87 | B119CB501AF1DC66004DE75D /* OVR_Atomic.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Atomic.o; sourceTree = ""; }; 88 | B119CB511AF1DC66004DE75D /* OVR_BitStream.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_BitStream.d; sourceTree = ""; }; 89 | B119CB521AF1DC66004DE75D /* OVR_BitStream.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_BitStream.dia; sourceTree = ""; }; 90 | B119CB531AF1DC66004DE75D /* OVR_BitStream.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_BitStream.o; sourceTree = ""; }; 91 | B119CB541AF1DC66004DE75D /* OVR_CAPI.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_CAPI.d; sourceTree = ""; }; 92 | B119CB551AF1DC66004DE75D /* OVR_CAPI.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_CAPI.dia; sourceTree = ""; }; 93 | B119CB561AF1DC66004DE75D /* OVR_CAPI.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_CAPI.o; sourceTree = ""; }; 94 | B119CB571AF1DC66004DE75D /* OVR_CRC32.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_CRC32.d; sourceTree = ""; }; 95 | B119CB581AF1DC66004DE75D /* OVR_CRC32.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_CRC32.dia; sourceTree = ""; }; 96 | B119CB591AF1DC66004DE75D /* OVR_CRC32.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_CRC32.o; sourceTree = ""; }; 97 | B119CB5A1AF1DC66004DE75D /* OVR_DebugHelp.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_DebugHelp.d; sourceTree = ""; }; 98 | B119CB5B1AF1DC66004DE75D /* OVR_DebugHelp.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_DebugHelp.dia; sourceTree = ""; }; 99 | B119CB5C1AF1DC66004DE75D /* OVR_DebugHelp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_DebugHelp.o; sourceTree = ""; }; 100 | B119CB5D1AF1DC66004DE75D /* OVR_File.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_File.d; sourceTree = ""; }; 101 | B119CB5E1AF1DC66004DE75D /* OVR_File.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_File.dia; sourceTree = ""; }; 102 | B119CB5F1AF1DC66004DE75D /* OVR_File.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_File.o; sourceTree = ""; }; 103 | B119CB601AF1DC66004DE75D /* OVR_FileFILE.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_FileFILE.d; sourceTree = ""; }; 104 | B119CB611AF1DC66004DE75D /* OVR_FileFILE.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_FileFILE.dia; sourceTree = ""; }; 105 | B119CB621AF1DC66004DE75D /* OVR_FileFILE.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_FileFILE.o; sourceTree = ""; }; 106 | B119CB631AF1DC66004DE75D /* OVR_JSON.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_JSON.d; sourceTree = ""; }; 107 | B119CB641AF1DC66004DE75D /* OVR_JSON.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_JSON.dia; sourceTree = ""; }; 108 | B119CB651AF1DC66004DE75D /* OVR_JSON.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_JSON.o; sourceTree = ""; }; 109 | B119CB661AF1DC66004DE75D /* OVR_Lockless.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Lockless.d; sourceTree = ""; }; 110 | B119CB671AF1DC66004DE75D /* OVR_Lockless.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Lockless.dia; sourceTree = ""; }; 111 | B119CB681AF1DC66004DE75D /* OVR_Lockless.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Lockless.o; sourceTree = ""; }; 112 | B119CB691AF1DC66004DE75D /* OVR_Log.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Log.d; sourceTree = ""; }; 113 | B119CB6A1AF1DC66004DE75D /* OVR_Log.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Log.dia; sourceTree = ""; }; 114 | B119CB6B1AF1DC66004DE75D /* OVR_Log.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Log.o; sourceTree = ""; }; 115 | B119CB6C1AF1DC66004DE75D /* OVR_mach_exc_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_mach_exc_OSX.d; sourceTree = ""; }; 116 | B119CB6D1AF1DC66004DE75D /* OVR_mach_exc_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_mach_exc_OSX.dia; sourceTree = ""; }; 117 | B119CB6E1AF1DC66004DE75D /* OVR_mach_exc_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_mach_exc_OSX.o; sourceTree = ""; }; 118 | B119CB6F1AF1DC66004DE75D /* OVR_Math.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Math.d; sourceTree = ""; }; 119 | B119CB701AF1DC66004DE75D /* OVR_Math.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Math.dia; sourceTree = ""; }; 120 | B119CB711AF1DC66004DE75D /* OVR_Math.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Math.o; sourceTree = ""; }; 121 | B119CB721AF1DC66004DE75D /* OVR_NetworkPlugin.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_NetworkPlugin.d; sourceTree = ""; }; 122 | B119CB731AF1DC66004DE75D /* OVR_NetworkPlugin.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_NetworkPlugin.dia; sourceTree = ""; }; 123 | B119CB741AF1DC66004DE75D /* OVR_NetworkPlugin.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_NetworkPlugin.o; sourceTree = ""; }; 124 | B119CB751AF1DC66004DE75D /* OVR_OSX_Display.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_OSX_Display.d; sourceTree = ""; }; 125 | B119CB761AF1DC66004DE75D /* OVR_OSX_Display.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_OSX_Display.dia; sourceTree = ""; }; 126 | B119CB771AF1DC66004DE75D /* OVR_OSX_Display.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_OSX_Display.o; sourceTree = ""; }; 127 | B119CB781AF1DC66004DE75D /* OVR_PacketizedTCPSocket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_PacketizedTCPSocket.d; sourceTree = ""; }; 128 | B119CB791AF1DC66004DE75D /* OVR_PacketizedTCPSocket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_PacketizedTCPSocket.dia; sourceTree = ""; }; 129 | B119CB7A1AF1DC66004DE75D /* OVR_PacketizedTCPSocket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_PacketizedTCPSocket.o; sourceTree = ""; }; 130 | B119CB7B1AF1DC66004DE75D /* OVR_Profile.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Profile.d; sourceTree = ""; }; 131 | B119CB7C1AF1DC66004DE75D /* OVR_Profile.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Profile.dia; sourceTree = ""; }; 132 | B119CB7D1AF1DC66004DE75D /* OVR_Profile.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Profile.o; sourceTree = ""; }; 133 | B119CB7E1AF1DC66004DE75D /* OVR_RefCount.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_RefCount.d; sourceTree = ""; }; 134 | B119CB7F1AF1DC66004DE75D /* OVR_RefCount.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_RefCount.dia; sourceTree = ""; }; 135 | B119CB801AF1DC66004DE75D /* OVR_RefCount.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_RefCount.o; sourceTree = ""; }; 136 | B119CB811AF1DC66004DE75D /* OVR_RPC1.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_RPC1.d; sourceTree = ""; }; 137 | B119CB821AF1DC66004DE75D /* OVR_RPC1.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_RPC1.dia; sourceTree = ""; }; 138 | B119CB831AF1DC66004DE75D /* OVR_RPC1.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_RPC1.o; sourceTree = ""; }; 139 | B119CB841AF1DC66004DE75D /* OVR_SerialFormat.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SerialFormat.d; sourceTree = ""; }; 140 | B119CB851AF1DC66004DE75D /* OVR_SerialFormat.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SerialFormat.dia; sourceTree = ""; }; 141 | B119CB861AF1DC66004DE75D /* OVR_SerialFormat.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SerialFormat.o; sourceTree = ""; }; 142 | B119CB871AF1DC66004DE75D /* OVR_Session.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Session.d; sourceTree = ""; }; 143 | B119CB881AF1DC66004DE75D /* OVR_Session.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Session.dia; sourceTree = ""; }; 144 | B119CB891AF1DC66004DE75D /* OVR_Session.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Session.o; sourceTree = ""; }; 145 | B119CB8A1AF1DC66004DE75D /* OVR_SharedMemory.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SharedMemory.d; sourceTree = ""; }; 146 | B119CB8B1AF1DC66004DE75D /* OVR_SharedMemory.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SharedMemory.dia; sourceTree = ""; }; 147 | B119CB8C1AF1DC66004DE75D /* OVR_SharedMemory.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SharedMemory.o; sourceTree = ""; }; 148 | B119CB8D1AF1DC66004DE75D /* OVR_Socket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Socket.d; sourceTree = ""; }; 149 | B119CB8E1AF1DC66004DE75D /* OVR_Socket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Socket.dia; sourceTree = ""; }; 150 | B119CB8F1AF1DC66004DE75D /* OVR_Socket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Socket.o; sourceTree = ""; }; 151 | B119CB901AF1DC66004DE75D /* OVR_Std.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Std.d; sourceTree = ""; }; 152 | B119CB911AF1DC66004DE75D /* OVR_Std.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Std.dia; sourceTree = ""; }; 153 | B119CB921AF1DC66004DE75D /* OVR_Std.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Std.o; sourceTree = ""; }; 154 | B119CB931AF1DC66004DE75D /* OVR_Stereo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Stereo.d; sourceTree = ""; }; 155 | B119CB941AF1DC66004DE75D /* OVR_Stereo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Stereo.dia; sourceTree = ""; }; 156 | B119CB951AF1DC66004DE75D /* OVR_Stereo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Stereo.o; sourceTree = ""; }; 157 | B119CB961AF1DC66004DE75D /* OVR_String.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String.d; sourceTree = ""; }; 158 | B119CB971AF1DC66004DE75D /* OVR_String.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String.dia; sourceTree = ""; }; 159 | B119CB981AF1DC66004DE75D /* OVR_String.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String.o; sourceTree = ""; }; 160 | B119CB991AF1DC66004DE75D /* OVR_String_FormatUtil.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String_FormatUtil.d; sourceTree = ""; }; 161 | B119CB9A1AF1DC66004DE75D /* OVR_String_FormatUtil.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String_FormatUtil.dia; sourceTree = ""; }; 162 | B119CB9B1AF1DC66004DE75D /* OVR_String_FormatUtil.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String_FormatUtil.o; sourceTree = ""; }; 163 | B119CB9C1AF1DC66004DE75D /* OVR_String_PathUtil.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String_PathUtil.d; sourceTree = ""; }; 164 | B119CB9D1AF1DC66004DE75D /* OVR_String_PathUtil.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String_PathUtil.dia; sourceTree = ""; }; 165 | B119CB9E1AF1DC66004DE75D /* OVR_String_PathUtil.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String_PathUtil.o; sourceTree = ""; }; 166 | B119CB9F1AF1DC66004DE75D /* OVR_SysFile.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SysFile.d; sourceTree = ""; }; 167 | B119CBA01AF1DC66004DE75D /* OVR_SysFile.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SysFile.dia; sourceTree = ""; }; 168 | B119CBA11AF1DC66004DE75D /* OVR_SysFile.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SysFile.o; sourceTree = ""; }; 169 | B119CBA21AF1DC66004DE75D /* OVR_System.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_System.d; sourceTree = ""; }; 170 | B119CBA31AF1DC66004DE75D /* OVR_System.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_System.dia; sourceTree = ""; }; 171 | B119CBA41AF1DC66004DE75D /* OVR_System.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_System.o; sourceTree = ""; }; 172 | B119CBA51AF1DC66004DE75D /* OVR_ThreadCommandQueue.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_ThreadCommandQueue.d; sourceTree = ""; }; 173 | B119CBA61AF1DC66004DE75D /* OVR_ThreadCommandQueue.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_ThreadCommandQueue.dia; sourceTree = ""; }; 174 | B119CBA71AF1DC66004DE75D /* OVR_ThreadCommandQueue.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_ThreadCommandQueue.o; sourceTree = ""; }; 175 | B119CBA81AF1DC66004DE75D /* OVR_ThreadsPthread.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_ThreadsPthread.d; sourceTree = ""; }; 176 | B119CBA91AF1DC66004DE75D /* OVR_ThreadsPthread.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_ThreadsPthread.dia; sourceTree = ""; }; 177 | B119CBAA1AF1DC66004DE75D /* OVR_ThreadsPthread.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_ThreadsPthread.o; sourceTree = ""; }; 178 | B119CBAB1AF1DC66004DE75D /* OVR_Timer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Timer.d; sourceTree = ""; }; 179 | B119CBAC1AF1DC66004DE75D /* OVR_Timer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Timer.dia; sourceTree = ""; }; 180 | B119CBAD1AF1DC66004DE75D /* OVR_Timer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Timer.o; sourceTree = ""; }; 181 | B119CBAE1AF1DC66004DE75D /* OVR_Unix_Socket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Unix_Socket.d; sourceTree = ""; }; 182 | B119CBAF1AF1DC66004DE75D /* OVR_Unix_Socket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Unix_Socket.dia; sourceTree = ""; }; 183 | B119CBB01AF1DC66004DE75D /* OVR_Unix_Socket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Unix_Socket.o; sourceTree = ""; }; 184 | B119CBB11AF1DC66004DE75D /* OVR_UTF8Util.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_UTF8Util.d; sourceTree = ""; }; 185 | B119CBB21AF1DC66004DE75D /* OVR_UTF8Util.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_UTF8Util.dia; sourceTree = ""; }; 186 | B119CBB31AF1DC66004DE75D /* OVR_UTF8Util.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_UTF8Util.o; sourceTree = ""; }; 187 | B119CBB41AF1DC66004DE75D /* Service_NetClient.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Service_NetClient.d; sourceTree = ""; }; 188 | B119CBB51AF1DC66004DE75D /* Service_NetClient.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Service_NetClient.dia; sourceTree = ""; }; 189 | B119CBB61AF1DC66004DE75D /* Service_NetClient.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Service_NetClient.o; sourceTree = ""; }; 190 | B119CBB71AF1DC66004DE75D /* Service_NetSessionCommon.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Service_NetSessionCommon.d; sourceTree = ""; }; 191 | B119CBB81AF1DC66004DE75D /* Service_NetSessionCommon.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Service_NetSessionCommon.dia; sourceTree = ""; }; 192 | B119CBB91AF1DC66004DE75D /* Service_NetSessionCommon.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Service_NetSessionCommon.o; sourceTree = ""; }; 193 | B119CBBA1AF1DC66004DE75D /* Tracking_SensorStateReader.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Tracking_SensorStateReader.d; sourceTree = ""; }; 194 | B119CBBB1AF1DC66004DE75D /* Tracking_SensorStateReader.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Tracking_SensorStateReader.dia; sourceTree = ""; }; 195 | B119CBBC1AF1DC66004DE75D /* Tracking_SensorStateReader.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Tracking_SensorStateReader.o; sourceTree = ""; }; 196 | B119CBBD1AF1DC66004DE75D /* Util_Interface.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_Interface.d; sourceTree = ""; }; 197 | B119CBBE1AF1DC66004DE75D /* Util_Interface.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_Interface.dia; sourceTree = ""; }; 198 | B119CBBF1AF1DC66004DE75D /* Util_Interface.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_Interface.o; sourceTree = ""; }; 199 | B119CBC01AF1DC66004DE75D /* Util_LatencyTest2Reader.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_LatencyTest2Reader.d; sourceTree = ""; }; 200 | B119CBC11AF1DC66004DE75D /* Util_LatencyTest2Reader.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_LatencyTest2Reader.dia; sourceTree = ""; }; 201 | B119CBC21AF1DC66004DE75D /* Util_LatencyTest2Reader.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_LatencyTest2Reader.o; sourceTree = ""; }; 202 | B119CBC31AF1DC66004DE75D /* Util_Render_Stereo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_Render_Stereo.d; sourceTree = ""; }; 203 | B119CBC41AF1DC66004DE75D /* Util_Render_Stereo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_Render_Stereo.dia; sourceTree = ""; }; 204 | B119CBC51AF1DC66004DE75D /* Util_Render_Stereo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_Render_Stereo.o; sourceTree = ""; }; 205 | B119CBC61AF1DC66004DE75D /* Util_SystemGUI.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemGUI.d; sourceTree = ""; }; 206 | B119CBC71AF1DC66004DE75D /* Util_SystemGUI.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemGUI.dia; sourceTree = ""; }; 207 | B119CBC81AF1DC66004DE75D /* Util_SystemGUI.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemGUI.o; sourceTree = ""; }; 208 | B119CBC91AF1DC66004DE75D /* Util_SystemGUI_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemGUI_OSX.d; sourceTree = ""; }; 209 | B119CBCA1AF1DC66004DE75D /* Util_SystemGUI_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemGUI_OSX.dia; sourceTree = ""; }; 210 | B119CBCB1AF1DC66004DE75D /* Util_SystemGUI_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemGUI_OSX.o; sourceTree = ""; }; 211 | B119CBCC1AF1DC66004DE75D /* Util_SystemInfo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemInfo.d; sourceTree = ""; }; 212 | B119CBCD1AF1DC66004DE75D /* Util_SystemInfo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemInfo.dia; sourceTree = ""; }; 213 | B119CBCE1AF1DC66004DE75D /* Util_SystemInfo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemInfo.o; sourceTree = ""; }; 214 | B119CBCF1AF1DC66004DE75D /* Util_SystemInfo_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemInfo_OSX.d; sourceTree = ""; }; 215 | B119CBD01AF1DC66004DE75D /* Util_SystemInfo_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemInfo_OSX.dia; sourceTree = ""; }; 216 | B119CBD11AF1DC66004DE75D /* Util_SystemInfo_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemInfo_OSX.o; sourceTree = ""; }; 217 | B119CBD31AF1DC66004DE75D /* CAPI_DistortionRenderer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_DistortionRenderer.d; sourceTree = ""; }; 218 | B119CBD41AF1DC66004DE75D /* CAPI_DistortionRenderer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_DistortionRenderer.dia; sourceTree = ""; }; 219 | B119CBD51AF1DC66004DE75D /* CAPI_DistortionRenderer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_DistortionRenderer.o; sourceTree = ""; }; 220 | B119CBD61AF1DC66004DE75D /* CAPI_FrameTimeManager.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_FrameTimeManager.d; sourceTree = ""; }; 221 | B119CBD71AF1DC66004DE75D /* CAPI_FrameTimeManager.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_FrameTimeManager.dia; sourceTree = ""; }; 222 | B119CBD81AF1DC66004DE75D /* CAPI_FrameTimeManager.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_FrameTimeManager.o; sourceTree = ""; }; 223 | B119CBD91AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_DistortionRenderer.d; sourceTree = ""; }; 224 | B119CBDA1AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_DistortionRenderer.dia; sourceTree = ""; }; 225 | B119CBDB1AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_DistortionRenderer.o; sourceTree = ""; }; 226 | B119CBDC1AF1DC66004DE75D /* CAPI_GL_HSWDisplay.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_HSWDisplay.d; sourceTree = ""; }; 227 | B119CBDD1AF1DC66004DE75D /* CAPI_GL_HSWDisplay.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_HSWDisplay.dia; sourceTree = ""; }; 228 | B119CBDE1AF1DC66004DE75D /* CAPI_GL_HSWDisplay.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_HSWDisplay.o; sourceTree = ""; }; 229 | B119CBDF1AF1DC66004DE75D /* CAPI_GL_Util.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_Util.d; sourceTree = ""; }; 230 | B119CBE01AF1DC66004DE75D /* CAPI_GL_Util.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_Util.dia; sourceTree = ""; }; 231 | B119CBE11AF1DC66004DE75D /* CAPI_GL_Util.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_Util.o; sourceTree = ""; }; 232 | B119CBE21AF1DC66004DE75D /* CAPI_GLE.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GLE.d; sourceTree = ""; }; 233 | B119CBE31AF1DC66004DE75D /* CAPI_GLE.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GLE.dia; sourceTree = ""; }; 234 | B119CBE41AF1DC66004DE75D /* CAPI_GLE.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GLE.o; sourceTree = ""; }; 235 | B119CBE51AF1DC67004DE75D /* CAPI_HMDRenderState.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HMDRenderState.d; sourceTree = ""; }; 236 | B119CBE61AF1DC67004DE75D /* CAPI_HMDRenderState.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HMDRenderState.dia; sourceTree = ""; }; 237 | B119CBE71AF1DC67004DE75D /* CAPI_HMDRenderState.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HMDRenderState.o; sourceTree = ""; }; 238 | B119CBE81AF1DC67004DE75D /* CAPI_HMDState.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HMDState.d; sourceTree = ""; }; 239 | B119CBE91AF1DC67004DE75D /* CAPI_HMDState.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HMDState.dia; sourceTree = ""; }; 240 | B119CBEA1AF1DC67004DE75D /* CAPI_HMDState.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HMDState.o; sourceTree = ""; }; 241 | B119CBEB1AF1DC67004DE75D /* CAPI_HSWDisplay.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HSWDisplay.d; sourceTree = ""; }; 242 | B119CBEC1AF1DC67004DE75D /* CAPI_HSWDisplay.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HSWDisplay.dia; sourceTree = ""; }; 243 | B119CBED1AF1DC67004DE75D /* CAPI_HSWDisplay.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HSWDisplay.o; sourceTree = ""; }; 244 | B119CBEE1AF1DC67004DE75D /* CAPI_LatencyStatistics.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_LatencyStatistics.d; sourceTree = ""; }; 245 | B119CBEF1AF1DC67004DE75D /* CAPI_LatencyStatistics.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_LatencyStatistics.dia; sourceTree = ""; }; 246 | B119CBF01AF1DC67004DE75D /* CAPI_LatencyStatistics.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_LatencyStatistics.o; sourceTree = ""; }; 247 | B119CBF11AF1DC67004DE75D /* libovr.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libovr.a; sourceTree = ""; }; 248 | B119CBF21AF1DC67004DE75D /* libovr.LinkFileList */ = {isa = PBXFileReference; lastKnownFileType = text; path = libovr.LinkFileList; sourceTree = ""; }; 249 | B119CBF31AF1DC67004DE75D /* OVR_Alg.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Alg.d; sourceTree = ""; }; 250 | B119CBF41AF1DC67004DE75D /* OVR_Alg.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Alg.dia; sourceTree = ""; }; 251 | B119CBF51AF1DC67004DE75D /* OVR_Alg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Alg.o; sourceTree = ""; }; 252 | B119CBF61AF1DC67004DE75D /* OVR_Allocator.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Allocator.d; sourceTree = ""; }; 253 | B119CBF71AF1DC67004DE75D /* OVR_Allocator.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Allocator.dia; sourceTree = ""; }; 254 | B119CBF81AF1DC67004DE75D /* OVR_Allocator.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Allocator.o; sourceTree = ""; }; 255 | B119CBF91AF1DC67004DE75D /* OVR_Atomic.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Atomic.d; sourceTree = ""; }; 256 | B119CBFA1AF1DC67004DE75D /* OVR_Atomic.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Atomic.dia; sourceTree = ""; }; 257 | B119CBFB1AF1DC67004DE75D /* OVR_Atomic.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Atomic.o; sourceTree = ""; }; 258 | B119CBFC1AF1DC67004DE75D /* OVR_BitStream.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_BitStream.d; sourceTree = ""; }; 259 | B119CBFD1AF1DC67004DE75D /* OVR_BitStream.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_BitStream.dia; sourceTree = ""; }; 260 | B119CBFE1AF1DC67004DE75D /* OVR_BitStream.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_BitStream.o; sourceTree = ""; }; 261 | B119CBFF1AF1DC67004DE75D /* OVR_CAPI.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_CAPI.d; sourceTree = ""; }; 262 | B119CC001AF1DC67004DE75D /* OVR_CAPI.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_CAPI.dia; sourceTree = ""; }; 263 | B119CC011AF1DC67004DE75D /* OVR_CAPI.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_CAPI.o; sourceTree = ""; }; 264 | B119CC021AF1DC67004DE75D /* OVR_CRC32.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_CRC32.d; sourceTree = ""; }; 265 | B119CC031AF1DC67004DE75D /* OVR_CRC32.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_CRC32.dia; sourceTree = ""; }; 266 | B119CC041AF1DC67004DE75D /* OVR_CRC32.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_CRC32.o; sourceTree = ""; }; 267 | B119CC051AF1DC67004DE75D /* OVR_DebugHelp.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_DebugHelp.d; sourceTree = ""; }; 268 | B119CC061AF1DC67004DE75D /* OVR_DebugHelp.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_DebugHelp.dia; sourceTree = ""; }; 269 | B119CC071AF1DC67004DE75D /* OVR_DebugHelp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_DebugHelp.o; sourceTree = ""; }; 270 | B119CC081AF1DC67004DE75D /* OVR_File.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_File.d; sourceTree = ""; }; 271 | B119CC091AF1DC67004DE75D /* OVR_File.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_File.dia; sourceTree = ""; }; 272 | B119CC0A1AF1DC67004DE75D /* OVR_File.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_File.o; sourceTree = ""; }; 273 | B119CC0B1AF1DC67004DE75D /* OVR_FileFILE.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_FileFILE.d; sourceTree = ""; }; 274 | B119CC0C1AF1DC67004DE75D /* OVR_FileFILE.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_FileFILE.dia; sourceTree = ""; }; 275 | B119CC0D1AF1DC67004DE75D /* OVR_FileFILE.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_FileFILE.o; sourceTree = ""; }; 276 | B119CC0E1AF1DC67004DE75D /* OVR_JSON.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_JSON.d; sourceTree = ""; }; 277 | B119CC0F1AF1DC67004DE75D /* OVR_JSON.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_JSON.dia; sourceTree = ""; }; 278 | B119CC101AF1DC67004DE75D /* OVR_JSON.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_JSON.o; sourceTree = ""; }; 279 | B119CC111AF1DC67004DE75D /* OVR_Lockless.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Lockless.d; sourceTree = ""; }; 280 | B119CC121AF1DC67004DE75D /* OVR_Lockless.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Lockless.dia; sourceTree = ""; }; 281 | B119CC131AF1DC67004DE75D /* OVR_Lockless.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Lockless.o; sourceTree = ""; }; 282 | B119CC141AF1DC67004DE75D /* OVR_Log.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Log.d; sourceTree = ""; }; 283 | B119CC151AF1DC67004DE75D /* OVR_Log.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Log.dia; sourceTree = ""; }; 284 | B119CC161AF1DC67004DE75D /* OVR_Log.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Log.o; sourceTree = ""; }; 285 | B119CC171AF1DC67004DE75D /* OVR_mach_exc_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_mach_exc_OSX.d; sourceTree = ""; }; 286 | B119CC181AF1DC67004DE75D /* OVR_mach_exc_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_mach_exc_OSX.dia; sourceTree = ""; }; 287 | B119CC191AF1DC67004DE75D /* OVR_mach_exc_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_mach_exc_OSX.o; sourceTree = ""; }; 288 | B119CC1A1AF1DC67004DE75D /* OVR_Math.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Math.d; sourceTree = ""; }; 289 | B119CC1B1AF1DC67004DE75D /* OVR_Math.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Math.dia; sourceTree = ""; }; 290 | B119CC1C1AF1DC67004DE75D /* OVR_Math.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Math.o; sourceTree = ""; }; 291 | B119CC1D1AF1DC67004DE75D /* OVR_NetworkPlugin.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_NetworkPlugin.d; sourceTree = ""; }; 292 | B119CC1E1AF1DC67004DE75D /* OVR_NetworkPlugin.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_NetworkPlugin.dia; sourceTree = ""; }; 293 | B119CC1F1AF1DC67004DE75D /* OVR_NetworkPlugin.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_NetworkPlugin.o; sourceTree = ""; }; 294 | B119CC201AF1DC67004DE75D /* OVR_OSX_Display.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_OSX_Display.d; sourceTree = ""; }; 295 | B119CC211AF1DC67004DE75D /* OVR_OSX_Display.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_OSX_Display.dia; sourceTree = ""; }; 296 | B119CC221AF1DC67004DE75D /* OVR_OSX_Display.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_OSX_Display.o; sourceTree = ""; }; 297 | B119CC231AF1DC67004DE75D /* OVR_PacketizedTCPSocket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_PacketizedTCPSocket.d; sourceTree = ""; }; 298 | B119CC241AF1DC67004DE75D /* OVR_PacketizedTCPSocket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_PacketizedTCPSocket.dia; sourceTree = ""; }; 299 | B119CC251AF1DC67004DE75D /* OVR_PacketizedTCPSocket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_PacketizedTCPSocket.o; sourceTree = ""; }; 300 | B119CC261AF1DC67004DE75D /* OVR_Profile.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Profile.d; sourceTree = ""; }; 301 | B119CC271AF1DC67004DE75D /* OVR_Profile.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Profile.dia; sourceTree = ""; }; 302 | B119CC281AF1DC67004DE75D /* OVR_Profile.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Profile.o; sourceTree = ""; }; 303 | B119CC291AF1DC67004DE75D /* OVR_RefCount.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_RefCount.d; sourceTree = ""; }; 304 | B119CC2A1AF1DC67004DE75D /* OVR_RefCount.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_RefCount.dia; sourceTree = ""; }; 305 | B119CC2B1AF1DC67004DE75D /* OVR_RefCount.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_RefCount.o; sourceTree = ""; }; 306 | B119CC2C1AF1DC67004DE75D /* OVR_RPC1.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_RPC1.d; sourceTree = ""; }; 307 | B119CC2D1AF1DC67004DE75D /* OVR_RPC1.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_RPC1.dia; sourceTree = ""; }; 308 | B119CC2E1AF1DC67004DE75D /* OVR_RPC1.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_RPC1.o; sourceTree = ""; }; 309 | B119CC2F1AF1DC67004DE75D /* OVR_SerialFormat.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SerialFormat.d; sourceTree = ""; }; 310 | B119CC301AF1DC67004DE75D /* OVR_SerialFormat.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SerialFormat.dia; sourceTree = ""; }; 311 | B119CC311AF1DC67004DE75D /* OVR_SerialFormat.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SerialFormat.o; sourceTree = ""; }; 312 | B119CC321AF1DC67004DE75D /* OVR_Session.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Session.d; sourceTree = ""; }; 313 | B119CC331AF1DC67004DE75D /* OVR_Session.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Session.dia; sourceTree = ""; }; 314 | B119CC341AF1DC67004DE75D /* OVR_Session.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Session.o; sourceTree = ""; }; 315 | B119CC351AF1DC67004DE75D /* OVR_SharedMemory.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SharedMemory.d; sourceTree = ""; }; 316 | B119CC361AF1DC67004DE75D /* OVR_SharedMemory.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SharedMemory.dia; sourceTree = ""; }; 317 | B119CC371AF1DC67004DE75D /* OVR_SharedMemory.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SharedMemory.o; sourceTree = ""; }; 318 | B119CC381AF1DC67004DE75D /* OVR_Socket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Socket.d; sourceTree = ""; }; 319 | B119CC391AF1DC67004DE75D /* OVR_Socket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Socket.dia; sourceTree = ""; }; 320 | B119CC3A1AF1DC67004DE75D /* OVR_Socket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Socket.o; sourceTree = ""; }; 321 | B119CC3B1AF1DC67004DE75D /* OVR_Std.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Std.d; sourceTree = ""; }; 322 | B119CC3C1AF1DC67004DE75D /* OVR_Std.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Std.dia; sourceTree = ""; }; 323 | B119CC3D1AF1DC67004DE75D /* OVR_Std.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Std.o; sourceTree = ""; }; 324 | B119CC3E1AF1DC67004DE75D /* OVR_Stereo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Stereo.d; sourceTree = ""; }; 325 | B119CC3F1AF1DC67004DE75D /* OVR_Stereo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Stereo.dia; sourceTree = ""; }; 326 | B119CC401AF1DC67004DE75D /* OVR_Stereo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Stereo.o; sourceTree = ""; }; 327 | B119CC411AF1DC67004DE75D /* OVR_String.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String.d; sourceTree = ""; }; 328 | B119CC421AF1DC67004DE75D /* OVR_String.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String.dia; sourceTree = ""; }; 329 | B119CC431AF1DC67004DE75D /* OVR_String.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String.o; sourceTree = ""; }; 330 | B119CC441AF1DC67004DE75D /* OVR_String_FormatUtil.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String_FormatUtil.d; sourceTree = ""; }; 331 | B119CC451AF1DC67004DE75D /* OVR_String_FormatUtil.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String_FormatUtil.dia; sourceTree = ""; }; 332 | B119CC461AF1DC67004DE75D /* OVR_String_FormatUtil.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String_FormatUtil.o; sourceTree = ""; }; 333 | B119CC471AF1DC67004DE75D /* OVR_String_PathUtil.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String_PathUtil.d; sourceTree = ""; }; 334 | B119CC481AF1DC67004DE75D /* OVR_String_PathUtil.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String_PathUtil.dia; sourceTree = ""; }; 335 | B119CC491AF1DC67004DE75D /* OVR_String_PathUtil.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String_PathUtil.o; sourceTree = ""; }; 336 | B119CC4A1AF1DC67004DE75D /* OVR_SysFile.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SysFile.d; sourceTree = ""; }; 337 | B119CC4B1AF1DC67004DE75D /* OVR_SysFile.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SysFile.dia; sourceTree = ""; }; 338 | B119CC4C1AF1DC67004DE75D /* OVR_SysFile.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SysFile.o; sourceTree = ""; }; 339 | B119CC4D1AF1DC67004DE75D /* OVR_System.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_System.d; sourceTree = ""; }; 340 | B119CC4E1AF1DC67004DE75D /* OVR_System.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_System.dia; sourceTree = ""; }; 341 | B119CC4F1AF1DC67004DE75D /* OVR_System.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_System.o; sourceTree = ""; }; 342 | B119CC501AF1DC67004DE75D /* OVR_ThreadCommandQueue.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_ThreadCommandQueue.d; sourceTree = ""; }; 343 | B119CC511AF1DC67004DE75D /* OVR_ThreadCommandQueue.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_ThreadCommandQueue.dia; sourceTree = ""; }; 344 | B119CC521AF1DC67004DE75D /* OVR_ThreadCommandQueue.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_ThreadCommandQueue.o; sourceTree = ""; }; 345 | B119CC531AF1DC67004DE75D /* OVR_ThreadsPthread.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_ThreadsPthread.d; sourceTree = ""; }; 346 | B119CC541AF1DC67004DE75D /* OVR_ThreadsPthread.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_ThreadsPthread.dia; sourceTree = ""; }; 347 | B119CC551AF1DC67004DE75D /* OVR_ThreadsPthread.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_ThreadsPthread.o; sourceTree = ""; }; 348 | B119CC561AF1DC67004DE75D /* OVR_Timer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Timer.d; sourceTree = ""; }; 349 | B119CC571AF1DC67004DE75D /* OVR_Timer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Timer.dia; sourceTree = ""; }; 350 | B119CC581AF1DC67004DE75D /* OVR_Timer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Timer.o; sourceTree = ""; }; 351 | B119CC591AF1DC67004DE75D /* OVR_Unix_Socket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Unix_Socket.d; sourceTree = ""; }; 352 | B119CC5A1AF1DC67004DE75D /* OVR_Unix_Socket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Unix_Socket.dia; sourceTree = ""; }; 353 | B119CC5B1AF1DC67004DE75D /* OVR_Unix_Socket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Unix_Socket.o; sourceTree = ""; }; 354 | B119CC5C1AF1DC67004DE75D /* OVR_UTF8Util.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_UTF8Util.d; sourceTree = ""; }; 355 | B119CC5D1AF1DC67004DE75D /* OVR_UTF8Util.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_UTF8Util.dia; sourceTree = ""; }; 356 | B119CC5E1AF1DC67004DE75D /* OVR_UTF8Util.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_UTF8Util.o; sourceTree = ""; }; 357 | B119CC5F1AF1DC67004DE75D /* Service_NetClient.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Service_NetClient.d; sourceTree = ""; }; 358 | B119CC601AF1DC67004DE75D /* Service_NetClient.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Service_NetClient.dia; sourceTree = ""; }; 359 | B119CC611AF1DC67004DE75D /* Service_NetClient.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Service_NetClient.o; sourceTree = ""; }; 360 | B119CC621AF1DC67004DE75D /* Service_NetSessionCommon.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Service_NetSessionCommon.d; sourceTree = ""; }; 361 | B119CC631AF1DC67004DE75D /* Service_NetSessionCommon.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Service_NetSessionCommon.dia; sourceTree = ""; }; 362 | B119CC641AF1DC67004DE75D /* Service_NetSessionCommon.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Service_NetSessionCommon.o; sourceTree = ""; }; 363 | B119CC651AF1DC67004DE75D /* Tracking_SensorStateReader.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Tracking_SensorStateReader.d; sourceTree = ""; }; 364 | B119CC661AF1DC67004DE75D /* Tracking_SensorStateReader.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Tracking_SensorStateReader.dia; sourceTree = ""; }; 365 | B119CC671AF1DC67004DE75D /* Tracking_SensorStateReader.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Tracking_SensorStateReader.o; sourceTree = ""; }; 366 | B119CC681AF1DC67004DE75D /* Util_Interface.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_Interface.d; sourceTree = ""; }; 367 | B119CC691AF1DC67004DE75D /* Util_Interface.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_Interface.dia; sourceTree = ""; }; 368 | B119CC6A1AF1DC67004DE75D /* Util_Interface.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_Interface.o; sourceTree = ""; }; 369 | B119CC6B1AF1DC67004DE75D /* Util_LatencyTest2Reader.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_LatencyTest2Reader.d; sourceTree = ""; }; 370 | B119CC6C1AF1DC67004DE75D /* Util_LatencyTest2Reader.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_LatencyTest2Reader.dia; sourceTree = ""; }; 371 | B119CC6D1AF1DC67004DE75D /* Util_LatencyTest2Reader.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_LatencyTest2Reader.o; sourceTree = ""; }; 372 | B119CC6E1AF1DC67004DE75D /* Util_Render_Stereo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_Render_Stereo.d; sourceTree = ""; }; 373 | B119CC6F1AF1DC67004DE75D /* Util_Render_Stereo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_Render_Stereo.dia; sourceTree = ""; }; 374 | B119CC701AF1DC67004DE75D /* Util_Render_Stereo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_Render_Stereo.o; sourceTree = ""; }; 375 | B119CC711AF1DC67004DE75D /* Util_SystemGUI.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemGUI.d; sourceTree = ""; }; 376 | B119CC721AF1DC67004DE75D /* Util_SystemGUI.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemGUI.dia; sourceTree = ""; }; 377 | B119CC731AF1DC67004DE75D /* Util_SystemGUI.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemGUI.o; sourceTree = ""; }; 378 | B119CC741AF1DC67004DE75D /* Util_SystemGUI_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemGUI_OSX.d; sourceTree = ""; }; 379 | B119CC751AF1DC67004DE75D /* Util_SystemGUI_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemGUI_OSX.dia; sourceTree = ""; }; 380 | B119CC761AF1DC67004DE75D /* Util_SystemGUI_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemGUI_OSX.o; sourceTree = ""; }; 381 | B119CC771AF1DC67004DE75D /* Util_SystemInfo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemInfo.d; sourceTree = ""; }; 382 | B119CC781AF1DC67004DE75D /* Util_SystemInfo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemInfo.dia; sourceTree = ""; }; 383 | B119CC791AF1DC67004DE75D /* Util_SystemInfo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemInfo.o; sourceTree = ""; }; 384 | B119CC7A1AF1DC67004DE75D /* Util_SystemInfo_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemInfo_OSX.d; sourceTree = ""; }; 385 | B119CC7B1AF1DC67004DE75D /* Util_SystemInfo_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemInfo_OSX.dia; sourceTree = ""; }; 386 | B119CC7C1AF1DC67004DE75D /* Util_SystemInfo_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemInfo_OSX.o; sourceTree = ""; }; 387 | B119CC7E1AF1DC67004DE75D /* libovr.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libovr.a; sourceTree = ""; }; 388 | B119CC801AF1DC67004DE75D /* dgph */ = {isa = PBXFileReference; lastKnownFileType = file; path = dgph; sourceTree = ""; }; 389 | B119CC811AF1DC67004DE75D /* libovr-all-non-framework-target-headers.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = "libovr-all-non-framework-target-headers.hmap"; sourceTree = ""; }; 390 | B119CC821AF1DC67004DE75D /* libovr-all-target-headers.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = "libovr-all-target-headers.hmap"; sourceTree = ""; }; 391 | B119CC831AF1DC67004DE75D /* libovr-generated-files.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = "libovr-generated-files.hmap"; sourceTree = ""; }; 392 | B119CC841AF1DC67004DE75D /* libovr-own-target-headers.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = "libovr-own-target-headers.hmap"; sourceTree = ""; }; 393 | B119CC851AF1DC67004DE75D /* libovr-project-headers.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = "libovr-project-headers.hmap"; sourceTree = ""; }; 394 | B119CC861AF1DC67004DE75D /* libovr.hmap */ = {isa = PBXFileReference; lastKnownFileType = file; path = libovr.hmap; sourceTree = ""; }; 395 | B119CC891AF1DC67004DE75D /* CAPI_DistortionRenderer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_DistortionRenderer.d; sourceTree = ""; }; 396 | B119CC8A1AF1DC67004DE75D /* CAPI_DistortionRenderer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_DistortionRenderer.dia; sourceTree = ""; }; 397 | B119CC8B1AF1DC67004DE75D /* CAPI_DistortionRenderer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_DistortionRenderer.o; sourceTree = ""; }; 398 | B119CC8C1AF1DC67004DE75D /* CAPI_FrameTimeManager.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_FrameTimeManager.d; sourceTree = ""; }; 399 | B119CC8D1AF1DC67004DE75D /* CAPI_FrameTimeManager.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_FrameTimeManager.dia; sourceTree = ""; }; 400 | B119CC8E1AF1DC67004DE75D /* CAPI_FrameTimeManager.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_FrameTimeManager.o; sourceTree = ""; }; 401 | B119CC8F1AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_DistortionRenderer.d; sourceTree = ""; }; 402 | B119CC901AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_DistortionRenderer.dia; sourceTree = ""; }; 403 | B119CC911AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_DistortionRenderer.o; sourceTree = ""; }; 404 | B119CC921AF1DC67004DE75D /* CAPI_GL_HSWDisplay.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_HSWDisplay.d; sourceTree = ""; }; 405 | B119CC931AF1DC67004DE75D /* CAPI_GL_HSWDisplay.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_HSWDisplay.dia; sourceTree = ""; }; 406 | B119CC941AF1DC67004DE75D /* CAPI_GL_HSWDisplay.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_HSWDisplay.o; sourceTree = ""; }; 407 | B119CC951AF1DC67004DE75D /* CAPI_GL_Util.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_Util.d; sourceTree = ""; }; 408 | B119CC961AF1DC67004DE75D /* CAPI_GL_Util.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_Util.dia; sourceTree = ""; }; 409 | B119CC971AF1DC67004DE75D /* CAPI_GL_Util.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_Util.o; sourceTree = ""; }; 410 | B119CC981AF1DC67004DE75D /* CAPI_GLE.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GLE.d; sourceTree = ""; }; 411 | B119CC991AF1DC67004DE75D /* CAPI_GLE.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GLE.dia; sourceTree = ""; }; 412 | B119CC9A1AF1DC67004DE75D /* CAPI_GLE.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GLE.o; sourceTree = ""; }; 413 | B119CC9B1AF1DC67004DE75D /* CAPI_HMDRenderState.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HMDRenderState.d; sourceTree = ""; }; 414 | B119CC9C1AF1DC67004DE75D /* CAPI_HMDRenderState.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HMDRenderState.dia; sourceTree = ""; }; 415 | B119CC9D1AF1DC67004DE75D /* CAPI_HMDRenderState.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HMDRenderState.o; sourceTree = ""; }; 416 | B119CC9E1AF1DC67004DE75D /* CAPI_HMDState.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HMDState.d; sourceTree = ""; }; 417 | B119CC9F1AF1DC67004DE75D /* CAPI_HMDState.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HMDState.dia; sourceTree = ""; }; 418 | B119CCA01AF1DC67004DE75D /* CAPI_HMDState.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HMDState.o; sourceTree = ""; }; 419 | B119CCA11AF1DC67004DE75D /* CAPI_HSWDisplay.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HSWDisplay.d; sourceTree = ""; }; 420 | B119CCA21AF1DC67004DE75D /* CAPI_HSWDisplay.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HSWDisplay.dia; sourceTree = ""; }; 421 | B119CCA31AF1DC67004DE75D /* CAPI_HSWDisplay.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HSWDisplay.o; sourceTree = ""; }; 422 | B119CCA41AF1DC67004DE75D /* CAPI_LatencyStatistics.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_LatencyStatistics.d; sourceTree = ""; }; 423 | B119CCA51AF1DC67004DE75D /* CAPI_LatencyStatistics.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_LatencyStatistics.dia; sourceTree = ""; }; 424 | B119CCA61AF1DC67004DE75D /* CAPI_LatencyStatistics.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_LatencyStatistics.o; sourceTree = ""; }; 425 | B119CCA71AF1DC67004DE75D /* libovr.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libovr.a; sourceTree = ""; }; 426 | B119CCA81AF1DC67004DE75D /* libovr.LinkFileList */ = {isa = PBXFileReference; lastKnownFileType = text; path = libovr.LinkFileList; sourceTree = ""; }; 427 | B119CCA91AF1DC67004DE75D /* OVR_Alg.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Alg.d; sourceTree = ""; }; 428 | B119CCAA1AF1DC67004DE75D /* OVR_Alg.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Alg.dia; sourceTree = ""; }; 429 | B119CCAB1AF1DC67004DE75D /* OVR_Alg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Alg.o; sourceTree = ""; }; 430 | B119CCAC1AF1DC67004DE75D /* OVR_Allocator.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Allocator.d; sourceTree = ""; }; 431 | B119CCAD1AF1DC67004DE75D /* OVR_Allocator.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Allocator.dia; sourceTree = ""; }; 432 | B119CCAE1AF1DC67004DE75D /* OVR_Allocator.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Allocator.o; sourceTree = ""; }; 433 | B119CCAF1AF1DC67004DE75D /* OVR_Atomic.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Atomic.d; sourceTree = ""; }; 434 | B119CCB01AF1DC67004DE75D /* OVR_Atomic.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Atomic.dia; sourceTree = ""; }; 435 | B119CCB11AF1DC67004DE75D /* OVR_Atomic.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Atomic.o; sourceTree = ""; }; 436 | B119CCB21AF1DC67004DE75D /* OVR_BitStream.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_BitStream.d; sourceTree = ""; }; 437 | B119CCB31AF1DC67004DE75D /* OVR_BitStream.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_BitStream.dia; sourceTree = ""; }; 438 | B119CCB41AF1DC67004DE75D /* OVR_BitStream.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_BitStream.o; sourceTree = ""; }; 439 | B119CCB51AF1DC67004DE75D /* OVR_CAPI.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_CAPI.d; sourceTree = ""; }; 440 | B119CCB61AF1DC67004DE75D /* OVR_CAPI.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_CAPI.dia; sourceTree = ""; }; 441 | B119CCB71AF1DC67004DE75D /* OVR_CAPI.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_CAPI.o; sourceTree = ""; }; 442 | B119CCB81AF1DC67004DE75D /* OVR_CRC32.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_CRC32.d; sourceTree = ""; }; 443 | B119CCB91AF1DC67004DE75D /* OVR_CRC32.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_CRC32.dia; sourceTree = ""; }; 444 | B119CCBA1AF1DC67004DE75D /* OVR_CRC32.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_CRC32.o; sourceTree = ""; }; 445 | B119CCBB1AF1DC67004DE75D /* OVR_DebugHelp.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_DebugHelp.d; sourceTree = ""; }; 446 | B119CCBC1AF1DC67004DE75D /* OVR_DebugHelp.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_DebugHelp.dia; sourceTree = ""; }; 447 | B119CCBD1AF1DC67004DE75D /* OVR_DebugHelp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_DebugHelp.o; sourceTree = ""; }; 448 | B119CCBE1AF1DC67004DE75D /* OVR_File.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_File.d; sourceTree = ""; }; 449 | B119CCBF1AF1DC67004DE75D /* OVR_File.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_File.dia; sourceTree = ""; }; 450 | B119CCC01AF1DC67004DE75D /* OVR_File.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_File.o; sourceTree = ""; }; 451 | B119CCC11AF1DC67004DE75D /* OVR_FileFILE.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_FileFILE.d; sourceTree = ""; }; 452 | B119CCC21AF1DC67004DE75D /* OVR_FileFILE.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_FileFILE.dia; sourceTree = ""; }; 453 | B119CCC31AF1DC67004DE75D /* OVR_FileFILE.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_FileFILE.o; sourceTree = ""; }; 454 | B119CCC41AF1DC67004DE75D /* OVR_JSON.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_JSON.d; sourceTree = ""; }; 455 | B119CCC51AF1DC67004DE75D /* OVR_JSON.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_JSON.dia; sourceTree = ""; }; 456 | B119CCC61AF1DC67004DE75D /* OVR_JSON.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_JSON.o; sourceTree = ""; }; 457 | B119CCC71AF1DC67004DE75D /* OVR_Lockless.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Lockless.d; sourceTree = ""; }; 458 | B119CCC81AF1DC67004DE75D /* OVR_Lockless.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Lockless.dia; sourceTree = ""; }; 459 | B119CCC91AF1DC67004DE75D /* OVR_Lockless.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Lockless.o; sourceTree = ""; }; 460 | B119CCCA1AF1DC67004DE75D /* OVR_Log.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Log.d; sourceTree = ""; }; 461 | B119CCCB1AF1DC67004DE75D /* OVR_Log.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Log.dia; sourceTree = ""; }; 462 | B119CCCC1AF1DC67004DE75D /* OVR_Log.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Log.o; sourceTree = ""; }; 463 | B119CCCD1AF1DC67004DE75D /* OVR_mach_exc_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_mach_exc_OSX.d; sourceTree = ""; }; 464 | B119CCCE1AF1DC67004DE75D /* OVR_mach_exc_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_mach_exc_OSX.dia; sourceTree = ""; }; 465 | B119CCCF1AF1DC67004DE75D /* OVR_mach_exc_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_mach_exc_OSX.o; sourceTree = ""; }; 466 | B119CCD01AF1DC67004DE75D /* OVR_Math.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Math.d; sourceTree = ""; }; 467 | B119CCD11AF1DC67004DE75D /* OVR_Math.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Math.dia; sourceTree = ""; }; 468 | B119CCD21AF1DC67004DE75D /* OVR_Math.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Math.o; sourceTree = ""; }; 469 | B119CCD31AF1DC67004DE75D /* OVR_NetworkPlugin.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_NetworkPlugin.d; sourceTree = ""; }; 470 | B119CCD41AF1DC67004DE75D /* OVR_NetworkPlugin.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_NetworkPlugin.dia; sourceTree = ""; }; 471 | B119CCD51AF1DC67004DE75D /* OVR_NetworkPlugin.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_NetworkPlugin.o; sourceTree = ""; }; 472 | B119CCD61AF1DC67004DE75D /* OVR_OSX_Display.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_OSX_Display.d; sourceTree = ""; }; 473 | B119CCD71AF1DC67004DE75D /* OVR_OSX_Display.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_OSX_Display.dia; sourceTree = ""; }; 474 | B119CCD81AF1DC67004DE75D /* OVR_OSX_Display.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_OSX_Display.o; sourceTree = ""; }; 475 | B119CCD91AF1DC67004DE75D /* OVR_PacketizedTCPSocket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_PacketizedTCPSocket.d; sourceTree = ""; }; 476 | B119CCDA1AF1DC67004DE75D /* OVR_PacketizedTCPSocket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_PacketizedTCPSocket.dia; sourceTree = ""; }; 477 | B119CCDB1AF1DC67004DE75D /* OVR_PacketizedTCPSocket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_PacketizedTCPSocket.o; sourceTree = ""; }; 478 | B119CCDC1AF1DC67004DE75D /* OVR_Profile.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Profile.d; sourceTree = ""; }; 479 | B119CCDD1AF1DC67004DE75D /* OVR_Profile.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Profile.dia; sourceTree = ""; }; 480 | B119CCDE1AF1DC67004DE75D /* OVR_Profile.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Profile.o; sourceTree = ""; }; 481 | B119CCDF1AF1DC67004DE75D /* OVR_RefCount.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_RefCount.d; sourceTree = ""; }; 482 | B119CCE01AF1DC67004DE75D /* OVR_RefCount.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_RefCount.dia; sourceTree = ""; }; 483 | B119CCE11AF1DC67004DE75D /* OVR_RefCount.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_RefCount.o; sourceTree = ""; }; 484 | B119CCE21AF1DC67004DE75D /* OVR_RPC1.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_RPC1.d; sourceTree = ""; }; 485 | B119CCE31AF1DC67004DE75D /* OVR_RPC1.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_RPC1.dia; sourceTree = ""; }; 486 | B119CCE41AF1DC67004DE75D /* OVR_RPC1.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_RPC1.o; sourceTree = ""; }; 487 | B119CCE51AF1DC67004DE75D /* OVR_SerialFormat.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SerialFormat.d; sourceTree = ""; }; 488 | B119CCE61AF1DC67004DE75D /* OVR_SerialFormat.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SerialFormat.dia; sourceTree = ""; }; 489 | B119CCE71AF1DC67004DE75D /* OVR_SerialFormat.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SerialFormat.o; sourceTree = ""; }; 490 | B119CCE81AF1DC67004DE75D /* OVR_Session.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Session.d; sourceTree = ""; }; 491 | B119CCE91AF1DC67004DE75D /* OVR_Session.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Session.dia; sourceTree = ""; }; 492 | B119CCEA1AF1DC67004DE75D /* OVR_Session.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Session.o; sourceTree = ""; }; 493 | B119CCEB1AF1DC67004DE75D /* OVR_SharedMemory.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SharedMemory.d; sourceTree = ""; }; 494 | B119CCEC1AF1DC67004DE75D /* OVR_SharedMemory.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SharedMemory.dia; sourceTree = ""; }; 495 | B119CCED1AF1DC67004DE75D /* OVR_SharedMemory.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SharedMemory.o; sourceTree = ""; }; 496 | B119CCEE1AF1DC67004DE75D /* OVR_Socket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Socket.d; sourceTree = ""; }; 497 | B119CCEF1AF1DC67004DE75D /* OVR_Socket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Socket.dia; sourceTree = ""; }; 498 | B119CCF01AF1DC67004DE75D /* OVR_Socket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Socket.o; sourceTree = ""; }; 499 | B119CCF11AF1DC67004DE75D /* OVR_Std.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Std.d; sourceTree = ""; }; 500 | B119CCF21AF1DC67004DE75D /* OVR_Std.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Std.dia; sourceTree = ""; }; 501 | B119CCF31AF1DC67004DE75D /* OVR_Std.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Std.o; sourceTree = ""; }; 502 | B119CCF41AF1DC67004DE75D /* OVR_Stereo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Stereo.d; sourceTree = ""; }; 503 | B119CCF51AF1DC67004DE75D /* OVR_Stereo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Stereo.dia; sourceTree = ""; }; 504 | B119CCF61AF1DC67004DE75D /* OVR_Stereo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Stereo.o; sourceTree = ""; }; 505 | B119CCF71AF1DC67004DE75D /* OVR_String.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String.d; sourceTree = ""; }; 506 | B119CCF81AF1DC67004DE75D /* OVR_String.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String.dia; sourceTree = ""; }; 507 | B119CCF91AF1DC67004DE75D /* OVR_String.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String.o; sourceTree = ""; }; 508 | B119CCFA1AF1DC67004DE75D /* OVR_String_FormatUtil.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String_FormatUtil.d; sourceTree = ""; }; 509 | B119CCFB1AF1DC67004DE75D /* OVR_String_FormatUtil.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String_FormatUtil.dia; sourceTree = ""; }; 510 | B119CCFC1AF1DC67004DE75D /* OVR_String_FormatUtil.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String_FormatUtil.o; sourceTree = ""; }; 511 | B119CCFD1AF1DC67004DE75D /* OVR_String_PathUtil.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String_PathUtil.d; sourceTree = ""; }; 512 | B119CCFE1AF1DC67004DE75D /* OVR_String_PathUtil.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String_PathUtil.dia; sourceTree = ""; }; 513 | B119CCFF1AF1DC67004DE75D /* OVR_String_PathUtil.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String_PathUtil.o; sourceTree = ""; }; 514 | B119CD001AF1DC67004DE75D /* OVR_SysFile.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SysFile.d; sourceTree = ""; }; 515 | B119CD011AF1DC67004DE75D /* OVR_SysFile.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SysFile.dia; sourceTree = ""; }; 516 | B119CD021AF1DC67004DE75D /* OVR_SysFile.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SysFile.o; sourceTree = ""; }; 517 | B119CD031AF1DC67004DE75D /* OVR_System.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_System.d; sourceTree = ""; }; 518 | B119CD041AF1DC67004DE75D /* OVR_System.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_System.dia; sourceTree = ""; }; 519 | B119CD051AF1DC67004DE75D /* OVR_System.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_System.o; sourceTree = ""; }; 520 | B119CD061AF1DC67004DE75D /* OVR_ThreadCommandQueue.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_ThreadCommandQueue.d; sourceTree = ""; }; 521 | B119CD071AF1DC67004DE75D /* OVR_ThreadCommandQueue.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_ThreadCommandQueue.dia; sourceTree = ""; }; 522 | B119CD081AF1DC67004DE75D /* OVR_ThreadCommandQueue.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_ThreadCommandQueue.o; sourceTree = ""; }; 523 | B119CD091AF1DC67004DE75D /* OVR_ThreadsPthread.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_ThreadsPthread.d; sourceTree = ""; }; 524 | B119CD0A1AF1DC67004DE75D /* OVR_ThreadsPthread.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_ThreadsPthread.dia; sourceTree = ""; }; 525 | B119CD0B1AF1DC67004DE75D /* OVR_ThreadsPthread.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_ThreadsPthread.o; sourceTree = ""; }; 526 | B119CD0C1AF1DC67004DE75D /* OVR_Timer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Timer.d; sourceTree = ""; }; 527 | B119CD0D1AF1DC67004DE75D /* OVR_Timer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Timer.dia; sourceTree = ""; }; 528 | B119CD0E1AF1DC67004DE75D /* OVR_Timer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Timer.o; sourceTree = ""; }; 529 | B119CD0F1AF1DC67004DE75D /* OVR_Unix_Socket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Unix_Socket.d; sourceTree = ""; }; 530 | B119CD101AF1DC67004DE75D /* OVR_Unix_Socket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Unix_Socket.dia; sourceTree = ""; }; 531 | B119CD111AF1DC67004DE75D /* OVR_Unix_Socket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Unix_Socket.o; sourceTree = ""; }; 532 | B119CD121AF1DC67004DE75D /* OVR_UTF8Util.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_UTF8Util.d; sourceTree = ""; }; 533 | B119CD131AF1DC67004DE75D /* OVR_UTF8Util.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_UTF8Util.dia; sourceTree = ""; }; 534 | B119CD141AF1DC67004DE75D /* OVR_UTF8Util.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_UTF8Util.o; sourceTree = ""; }; 535 | B119CD151AF1DC67004DE75D /* Service_NetClient.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Service_NetClient.d; sourceTree = ""; }; 536 | B119CD161AF1DC67004DE75D /* Service_NetClient.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Service_NetClient.dia; sourceTree = ""; }; 537 | B119CD171AF1DC67004DE75D /* Service_NetClient.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Service_NetClient.o; sourceTree = ""; }; 538 | B119CD181AF1DC67004DE75D /* Service_NetSessionCommon.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Service_NetSessionCommon.d; sourceTree = ""; }; 539 | B119CD191AF1DC67004DE75D /* Service_NetSessionCommon.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Service_NetSessionCommon.dia; sourceTree = ""; }; 540 | B119CD1A1AF1DC67004DE75D /* Service_NetSessionCommon.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Service_NetSessionCommon.o; sourceTree = ""; }; 541 | B119CD1B1AF1DC67004DE75D /* Tracking_SensorStateReader.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Tracking_SensorStateReader.d; sourceTree = ""; }; 542 | B119CD1C1AF1DC67004DE75D /* Tracking_SensorStateReader.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Tracking_SensorStateReader.dia; sourceTree = ""; }; 543 | B119CD1D1AF1DC67004DE75D /* Tracking_SensorStateReader.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Tracking_SensorStateReader.o; sourceTree = ""; }; 544 | B119CD1E1AF1DC67004DE75D /* Util_Interface.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_Interface.d; sourceTree = ""; }; 545 | B119CD1F1AF1DC67004DE75D /* Util_Interface.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_Interface.dia; sourceTree = ""; }; 546 | B119CD201AF1DC67004DE75D /* Util_Interface.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_Interface.o; sourceTree = ""; }; 547 | B119CD211AF1DC67004DE75D /* Util_LatencyTest2Reader.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_LatencyTest2Reader.d; sourceTree = ""; }; 548 | B119CD221AF1DC67004DE75D /* Util_LatencyTest2Reader.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_LatencyTest2Reader.dia; sourceTree = ""; }; 549 | B119CD231AF1DC67004DE75D /* Util_LatencyTest2Reader.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_LatencyTest2Reader.o; sourceTree = ""; }; 550 | B119CD241AF1DC67004DE75D /* Util_Render_Stereo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_Render_Stereo.d; sourceTree = ""; }; 551 | B119CD251AF1DC67004DE75D /* Util_Render_Stereo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_Render_Stereo.dia; sourceTree = ""; }; 552 | B119CD261AF1DC67004DE75D /* Util_Render_Stereo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_Render_Stereo.o; sourceTree = ""; }; 553 | B119CD271AF1DC67004DE75D /* Util_SystemGUI.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemGUI.d; sourceTree = ""; }; 554 | B119CD281AF1DC67004DE75D /* Util_SystemGUI.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemGUI.dia; sourceTree = ""; }; 555 | B119CD291AF1DC67004DE75D /* Util_SystemGUI.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemGUI.o; sourceTree = ""; }; 556 | B119CD2A1AF1DC67004DE75D /* Util_SystemGUI_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemGUI_OSX.d; sourceTree = ""; }; 557 | B119CD2B1AF1DC67004DE75D /* Util_SystemGUI_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemGUI_OSX.dia; sourceTree = ""; }; 558 | B119CD2C1AF1DC67004DE75D /* Util_SystemGUI_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemGUI_OSX.o; sourceTree = ""; }; 559 | B119CD2D1AF1DC67004DE75D /* Util_SystemInfo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemInfo.d; sourceTree = ""; }; 560 | B119CD2E1AF1DC67004DE75D /* Util_SystemInfo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemInfo.dia; sourceTree = ""; }; 561 | B119CD2F1AF1DC67004DE75D /* Util_SystemInfo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemInfo.o; sourceTree = ""; }; 562 | B119CD301AF1DC67004DE75D /* Util_SystemInfo_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemInfo_OSX.d; sourceTree = ""; }; 563 | B119CD311AF1DC67004DE75D /* Util_SystemInfo_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemInfo_OSX.dia; sourceTree = ""; }; 564 | B119CD321AF1DC67004DE75D /* Util_SystemInfo_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemInfo_OSX.o; sourceTree = ""; }; 565 | B119CD341AF1DC67004DE75D /* CAPI_DistortionRenderer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_DistortionRenderer.d; sourceTree = ""; }; 566 | B119CD351AF1DC67004DE75D /* CAPI_DistortionRenderer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_DistortionRenderer.dia; sourceTree = ""; }; 567 | B119CD361AF1DC67004DE75D /* CAPI_DistortionRenderer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_DistortionRenderer.o; sourceTree = ""; }; 568 | B119CD371AF1DC67004DE75D /* CAPI_FrameTimeManager.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_FrameTimeManager.d; sourceTree = ""; }; 569 | B119CD381AF1DC67004DE75D /* CAPI_FrameTimeManager.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_FrameTimeManager.dia; sourceTree = ""; }; 570 | B119CD391AF1DC67004DE75D /* CAPI_FrameTimeManager.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_FrameTimeManager.o; sourceTree = ""; }; 571 | B119CD3A1AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_DistortionRenderer.d; sourceTree = ""; }; 572 | B119CD3B1AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_DistortionRenderer.dia; sourceTree = ""; }; 573 | B119CD3C1AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_DistortionRenderer.o; sourceTree = ""; }; 574 | B119CD3D1AF1DC67004DE75D /* CAPI_GL_HSWDisplay.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_HSWDisplay.d; sourceTree = ""; }; 575 | B119CD3E1AF1DC67004DE75D /* CAPI_GL_HSWDisplay.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_HSWDisplay.dia; sourceTree = ""; }; 576 | B119CD3F1AF1DC67004DE75D /* CAPI_GL_HSWDisplay.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_HSWDisplay.o; sourceTree = ""; }; 577 | B119CD401AF1DC67004DE75D /* CAPI_GL_Util.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GL_Util.d; sourceTree = ""; }; 578 | B119CD411AF1DC67004DE75D /* CAPI_GL_Util.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GL_Util.dia; sourceTree = ""; }; 579 | B119CD421AF1DC67004DE75D /* CAPI_GL_Util.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GL_Util.o; sourceTree = ""; }; 580 | B119CD431AF1DC67004DE75D /* CAPI_GLE.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_GLE.d; sourceTree = ""; }; 581 | B119CD441AF1DC67004DE75D /* CAPI_GLE.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_GLE.dia; sourceTree = ""; }; 582 | B119CD451AF1DC67004DE75D /* CAPI_GLE.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_GLE.o; sourceTree = ""; }; 583 | B119CD461AF1DC67004DE75D /* CAPI_HMDRenderState.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HMDRenderState.d; sourceTree = ""; }; 584 | B119CD471AF1DC67004DE75D /* CAPI_HMDRenderState.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HMDRenderState.dia; sourceTree = ""; }; 585 | B119CD481AF1DC67004DE75D /* CAPI_HMDRenderState.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HMDRenderState.o; sourceTree = ""; }; 586 | B119CD491AF1DC67004DE75D /* CAPI_HMDState.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HMDState.d; sourceTree = ""; }; 587 | B119CD4A1AF1DC67004DE75D /* CAPI_HMDState.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HMDState.dia; sourceTree = ""; }; 588 | B119CD4B1AF1DC67004DE75D /* CAPI_HMDState.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HMDState.o; sourceTree = ""; }; 589 | B119CD4C1AF1DC67004DE75D /* CAPI_HSWDisplay.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_HSWDisplay.d; sourceTree = ""; }; 590 | B119CD4D1AF1DC67004DE75D /* CAPI_HSWDisplay.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_HSWDisplay.dia; sourceTree = ""; }; 591 | B119CD4E1AF1DC67004DE75D /* CAPI_HSWDisplay.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_HSWDisplay.o; sourceTree = ""; }; 592 | B119CD4F1AF1DC67004DE75D /* CAPI_LatencyStatistics.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = CAPI_LatencyStatistics.d; sourceTree = ""; }; 593 | B119CD501AF1DC67004DE75D /* CAPI_LatencyStatistics.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = CAPI_LatencyStatistics.dia; sourceTree = ""; }; 594 | B119CD511AF1DC67004DE75D /* CAPI_LatencyStatistics.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = CAPI_LatencyStatistics.o; sourceTree = ""; }; 595 | B119CD521AF1DC67004DE75D /* libovr.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libovr.a; sourceTree = ""; }; 596 | B119CD531AF1DC67004DE75D /* libovr.LinkFileList */ = {isa = PBXFileReference; lastKnownFileType = text; path = libovr.LinkFileList; sourceTree = ""; }; 597 | B119CD541AF1DC67004DE75D /* OVR_Alg.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Alg.d; sourceTree = ""; }; 598 | B119CD551AF1DC67004DE75D /* OVR_Alg.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Alg.dia; sourceTree = ""; }; 599 | B119CD561AF1DC67004DE75D /* OVR_Alg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Alg.o; sourceTree = ""; }; 600 | B119CD571AF1DC67004DE75D /* OVR_Allocator.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Allocator.d; sourceTree = ""; }; 601 | B119CD581AF1DC67004DE75D /* OVR_Allocator.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Allocator.dia; sourceTree = ""; }; 602 | B119CD591AF1DC67004DE75D /* OVR_Allocator.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Allocator.o; sourceTree = ""; }; 603 | B119CD5A1AF1DC67004DE75D /* OVR_Atomic.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Atomic.d; sourceTree = ""; }; 604 | B119CD5B1AF1DC67004DE75D /* OVR_Atomic.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Atomic.dia; sourceTree = ""; }; 605 | B119CD5C1AF1DC67004DE75D /* OVR_Atomic.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Atomic.o; sourceTree = ""; }; 606 | B119CD5D1AF1DC67004DE75D /* OVR_BitStream.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_BitStream.d; sourceTree = ""; }; 607 | B119CD5E1AF1DC67004DE75D /* OVR_BitStream.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_BitStream.dia; sourceTree = ""; }; 608 | B119CD5F1AF1DC67004DE75D /* OVR_BitStream.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_BitStream.o; sourceTree = ""; }; 609 | B119CD601AF1DC67004DE75D /* OVR_CAPI.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_CAPI.d; sourceTree = ""; }; 610 | B119CD611AF1DC67004DE75D /* OVR_CAPI.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_CAPI.dia; sourceTree = ""; }; 611 | B119CD621AF1DC67004DE75D /* OVR_CAPI.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_CAPI.o; sourceTree = ""; }; 612 | B119CD631AF1DC67004DE75D /* OVR_CRC32.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_CRC32.d; sourceTree = ""; }; 613 | B119CD641AF1DC67004DE75D /* OVR_CRC32.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_CRC32.dia; sourceTree = ""; }; 614 | B119CD651AF1DC67004DE75D /* OVR_CRC32.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_CRC32.o; sourceTree = ""; }; 615 | B119CD661AF1DC67004DE75D /* OVR_DebugHelp.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_DebugHelp.d; sourceTree = ""; }; 616 | B119CD671AF1DC67004DE75D /* OVR_DebugHelp.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_DebugHelp.dia; sourceTree = ""; }; 617 | B119CD681AF1DC67004DE75D /* OVR_DebugHelp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_DebugHelp.o; sourceTree = ""; }; 618 | B119CD691AF1DC67004DE75D /* OVR_File.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_File.d; sourceTree = ""; }; 619 | B119CD6A1AF1DC67004DE75D /* OVR_File.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_File.dia; sourceTree = ""; }; 620 | B119CD6B1AF1DC67004DE75D /* OVR_File.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_File.o; sourceTree = ""; }; 621 | B119CD6C1AF1DC67004DE75D /* OVR_FileFILE.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_FileFILE.d; sourceTree = ""; }; 622 | B119CD6D1AF1DC67004DE75D /* OVR_FileFILE.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_FileFILE.dia; sourceTree = ""; }; 623 | B119CD6E1AF1DC67004DE75D /* OVR_FileFILE.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_FileFILE.o; sourceTree = ""; }; 624 | B119CD6F1AF1DC67004DE75D /* OVR_JSON.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_JSON.d; sourceTree = ""; }; 625 | B119CD701AF1DC67004DE75D /* OVR_JSON.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_JSON.dia; sourceTree = ""; }; 626 | B119CD711AF1DC67004DE75D /* OVR_JSON.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_JSON.o; sourceTree = ""; }; 627 | B119CD721AF1DC67004DE75D /* OVR_Lockless.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Lockless.d; sourceTree = ""; }; 628 | B119CD731AF1DC67004DE75D /* OVR_Lockless.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Lockless.dia; sourceTree = ""; }; 629 | B119CD741AF1DC67004DE75D /* OVR_Lockless.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Lockless.o; sourceTree = ""; }; 630 | B119CD751AF1DC67004DE75D /* OVR_Log.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Log.d; sourceTree = ""; }; 631 | B119CD761AF1DC67004DE75D /* OVR_Log.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Log.dia; sourceTree = ""; }; 632 | B119CD771AF1DC67004DE75D /* OVR_Log.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Log.o; sourceTree = ""; }; 633 | B119CD781AF1DC67004DE75D /* OVR_mach_exc_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_mach_exc_OSX.d; sourceTree = ""; }; 634 | B119CD791AF1DC67004DE75D /* OVR_mach_exc_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_mach_exc_OSX.dia; sourceTree = ""; }; 635 | B119CD7A1AF1DC67004DE75D /* OVR_mach_exc_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_mach_exc_OSX.o; sourceTree = ""; }; 636 | B119CD7B1AF1DC67004DE75D /* OVR_Math.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Math.d; sourceTree = ""; }; 637 | B119CD7C1AF1DC67004DE75D /* OVR_Math.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Math.dia; sourceTree = ""; }; 638 | B119CD7D1AF1DC67004DE75D /* OVR_Math.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Math.o; sourceTree = ""; }; 639 | B119CD7E1AF1DC67004DE75D /* OVR_NetworkPlugin.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_NetworkPlugin.d; sourceTree = ""; }; 640 | B119CD7F1AF1DC67004DE75D /* OVR_NetworkPlugin.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_NetworkPlugin.dia; sourceTree = ""; }; 641 | B119CD801AF1DC67004DE75D /* OVR_NetworkPlugin.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_NetworkPlugin.o; sourceTree = ""; }; 642 | B119CD811AF1DC67004DE75D /* OVR_OSX_Display.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_OSX_Display.d; sourceTree = ""; }; 643 | B119CD821AF1DC67004DE75D /* OVR_OSX_Display.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_OSX_Display.dia; sourceTree = ""; }; 644 | B119CD831AF1DC67004DE75D /* OVR_OSX_Display.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_OSX_Display.o; sourceTree = ""; }; 645 | B119CD841AF1DC68004DE75D /* OVR_PacketizedTCPSocket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_PacketizedTCPSocket.d; sourceTree = ""; }; 646 | B119CD851AF1DC68004DE75D /* OVR_PacketizedTCPSocket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_PacketizedTCPSocket.dia; sourceTree = ""; }; 647 | B119CD861AF1DC68004DE75D /* OVR_PacketizedTCPSocket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_PacketizedTCPSocket.o; sourceTree = ""; }; 648 | B119CD871AF1DC68004DE75D /* OVR_Profile.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Profile.d; sourceTree = ""; }; 649 | B119CD881AF1DC68004DE75D /* OVR_Profile.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Profile.dia; sourceTree = ""; }; 650 | B119CD891AF1DC68004DE75D /* OVR_Profile.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Profile.o; sourceTree = ""; }; 651 | B119CD8A1AF1DC68004DE75D /* OVR_RefCount.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_RefCount.d; sourceTree = ""; }; 652 | B119CD8B1AF1DC68004DE75D /* OVR_RefCount.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_RefCount.dia; sourceTree = ""; }; 653 | B119CD8C1AF1DC68004DE75D /* OVR_RefCount.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_RefCount.o; sourceTree = ""; }; 654 | B119CD8D1AF1DC68004DE75D /* OVR_RPC1.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_RPC1.d; sourceTree = ""; }; 655 | B119CD8E1AF1DC68004DE75D /* OVR_RPC1.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_RPC1.dia; sourceTree = ""; }; 656 | B119CD8F1AF1DC68004DE75D /* OVR_RPC1.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_RPC1.o; sourceTree = ""; }; 657 | B119CD901AF1DC68004DE75D /* OVR_SerialFormat.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SerialFormat.d; sourceTree = ""; }; 658 | B119CD911AF1DC68004DE75D /* OVR_SerialFormat.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SerialFormat.dia; sourceTree = ""; }; 659 | B119CD921AF1DC68004DE75D /* OVR_SerialFormat.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SerialFormat.o; sourceTree = ""; }; 660 | B119CD931AF1DC68004DE75D /* OVR_Session.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Session.d; sourceTree = ""; }; 661 | B119CD941AF1DC68004DE75D /* OVR_Session.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Session.dia; sourceTree = ""; }; 662 | B119CD951AF1DC68004DE75D /* OVR_Session.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Session.o; sourceTree = ""; }; 663 | B119CD961AF1DC68004DE75D /* OVR_SharedMemory.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SharedMemory.d; sourceTree = ""; }; 664 | B119CD971AF1DC68004DE75D /* OVR_SharedMemory.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SharedMemory.dia; sourceTree = ""; }; 665 | B119CD981AF1DC68004DE75D /* OVR_SharedMemory.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SharedMemory.o; sourceTree = ""; }; 666 | B119CD991AF1DC68004DE75D /* OVR_Socket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Socket.d; sourceTree = ""; }; 667 | B119CD9A1AF1DC68004DE75D /* OVR_Socket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Socket.dia; sourceTree = ""; }; 668 | B119CD9B1AF1DC68004DE75D /* OVR_Socket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Socket.o; sourceTree = ""; }; 669 | B119CD9C1AF1DC68004DE75D /* OVR_Std.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Std.d; sourceTree = ""; }; 670 | B119CD9D1AF1DC68004DE75D /* OVR_Std.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Std.dia; sourceTree = ""; }; 671 | B119CD9E1AF1DC68004DE75D /* OVR_Std.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Std.o; sourceTree = ""; }; 672 | B119CD9F1AF1DC68004DE75D /* OVR_Stereo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Stereo.d; sourceTree = ""; }; 673 | B119CDA01AF1DC68004DE75D /* OVR_Stereo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Stereo.dia; sourceTree = ""; }; 674 | B119CDA11AF1DC68004DE75D /* OVR_Stereo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Stereo.o; sourceTree = ""; }; 675 | B119CDA21AF1DC68004DE75D /* OVR_String.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String.d; sourceTree = ""; }; 676 | B119CDA31AF1DC68004DE75D /* OVR_String.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String.dia; sourceTree = ""; }; 677 | B119CDA41AF1DC68004DE75D /* OVR_String.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String.o; sourceTree = ""; }; 678 | B119CDA51AF1DC68004DE75D /* OVR_String_FormatUtil.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String_FormatUtil.d; sourceTree = ""; }; 679 | B119CDA61AF1DC68004DE75D /* OVR_String_FormatUtil.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String_FormatUtil.dia; sourceTree = ""; }; 680 | B119CDA71AF1DC68004DE75D /* OVR_String_FormatUtil.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String_FormatUtil.o; sourceTree = ""; }; 681 | B119CDA81AF1DC68004DE75D /* OVR_String_PathUtil.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_String_PathUtil.d; sourceTree = ""; }; 682 | B119CDA91AF1DC68004DE75D /* OVR_String_PathUtil.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_String_PathUtil.dia; sourceTree = ""; }; 683 | B119CDAA1AF1DC68004DE75D /* OVR_String_PathUtil.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_String_PathUtil.o; sourceTree = ""; }; 684 | B119CDAB1AF1DC68004DE75D /* OVR_SysFile.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_SysFile.d; sourceTree = ""; }; 685 | B119CDAC1AF1DC68004DE75D /* OVR_SysFile.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_SysFile.dia; sourceTree = ""; }; 686 | B119CDAD1AF1DC68004DE75D /* OVR_SysFile.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_SysFile.o; sourceTree = ""; }; 687 | B119CDAE1AF1DC68004DE75D /* OVR_System.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_System.d; sourceTree = ""; }; 688 | B119CDAF1AF1DC68004DE75D /* OVR_System.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_System.dia; sourceTree = ""; }; 689 | B119CDB01AF1DC68004DE75D /* OVR_System.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_System.o; sourceTree = ""; }; 690 | B119CDB11AF1DC68004DE75D /* OVR_ThreadCommandQueue.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_ThreadCommandQueue.d; sourceTree = ""; }; 691 | B119CDB21AF1DC68004DE75D /* OVR_ThreadCommandQueue.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_ThreadCommandQueue.dia; sourceTree = ""; }; 692 | B119CDB31AF1DC68004DE75D /* OVR_ThreadCommandQueue.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_ThreadCommandQueue.o; sourceTree = ""; }; 693 | B119CDB41AF1DC68004DE75D /* OVR_ThreadsPthread.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_ThreadsPthread.d; sourceTree = ""; }; 694 | B119CDB51AF1DC68004DE75D /* OVR_ThreadsPthread.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_ThreadsPthread.dia; sourceTree = ""; }; 695 | B119CDB61AF1DC68004DE75D /* OVR_ThreadsPthread.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_ThreadsPthread.o; sourceTree = ""; }; 696 | B119CDB71AF1DC68004DE75D /* OVR_Timer.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Timer.d; sourceTree = ""; }; 697 | B119CDB81AF1DC68004DE75D /* OVR_Timer.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Timer.dia; sourceTree = ""; }; 698 | B119CDB91AF1DC68004DE75D /* OVR_Timer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Timer.o; sourceTree = ""; }; 699 | B119CDBA1AF1DC68004DE75D /* OVR_Unix_Socket.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_Unix_Socket.d; sourceTree = ""; }; 700 | B119CDBB1AF1DC68004DE75D /* OVR_Unix_Socket.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_Unix_Socket.dia; sourceTree = ""; }; 701 | B119CDBC1AF1DC68004DE75D /* OVR_Unix_Socket.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_Unix_Socket.o; sourceTree = ""; }; 702 | B119CDBD1AF1DC68004DE75D /* OVR_UTF8Util.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = OVR_UTF8Util.d; sourceTree = ""; }; 703 | B119CDBE1AF1DC68004DE75D /* OVR_UTF8Util.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = OVR_UTF8Util.dia; sourceTree = ""; }; 704 | B119CDBF1AF1DC68004DE75D /* OVR_UTF8Util.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = OVR_UTF8Util.o; sourceTree = ""; }; 705 | B119CDC01AF1DC68004DE75D /* Service_NetClient.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Service_NetClient.d; sourceTree = ""; }; 706 | B119CDC11AF1DC68004DE75D /* Service_NetClient.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Service_NetClient.dia; sourceTree = ""; }; 707 | B119CDC21AF1DC68004DE75D /* Service_NetClient.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Service_NetClient.o; sourceTree = ""; }; 708 | B119CDC31AF1DC68004DE75D /* Service_NetSessionCommon.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Service_NetSessionCommon.d; sourceTree = ""; }; 709 | B119CDC41AF1DC68004DE75D /* Service_NetSessionCommon.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Service_NetSessionCommon.dia; sourceTree = ""; }; 710 | B119CDC51AF1DC68004DE75D /* Service_NetSessionCommon.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Service_NetSessionCommon.o; sourceTree = ""; }; 711 | B119CDC61AF1DC68004DE75D /* Tracking_SensorStateReader.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Tracking_SensorStateReader.d; sourceTree = ""; }; 712 | B119CDC71AF1DC68004DE75D /* Tracking_SensorStateReader.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Tracking_SensorStateReader.dia; sourceTree = ""; }; 713 | B119CDC81AF1DC68004DE75D /* Tracking_SensorStateReader.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Tracking_SensorStateReader.o; sourceTree = ""; }; 714 | B119CDC91AF1DC68004DE75D /* Util_Interface.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_Interface.d; sourceTree = ""; }; 715 | B119CDCA1AF1DC68004DE75D /* Util_Interface.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_Interface.dia; sourceTree = ""; }; 716 | B119CDCB1AF1DC68004DE75D /* Util_Interface.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_Interface.o; sourceTree = ""; }; 717 | B119CDCC1AF1DC68004DE75D /* Util_LatencyTest2Reader.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_LatencyTest2Reader.d; sourceTree = ""; }; 718 | B119CDCD1AF1DC68004DE75D /* Util_LatencyTest2Reader.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_LatencyTest2Reader.dia; sourceTree = ""; }; 719 | B119CDCE1AF1DC68004DE75D /* Util_LatencyTest2Reader.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_LatencyTest2Reader.o; sourceTree = ""; }; 720 | B119CDCF1AF1DC68004DE75D /* Util_Render_Stereo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_Render_Stereo.d; sourceTree = ""; }; 721 | B119CDD01AF1DC68004DE75D /* Util_Render_Stereo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_Render_Stereo.dia; sourceTree = ""; }; 722 | B119CDD11AF1DC68004DE75D /* Util_Render_Stereo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_Render_Stereo.o; sourceTree = ""; }; 723 | B119CDD21AF1DC68004DE75D /* Util_SystemGUI.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemGUI.d; sourceTree = ""; }; 724 | B119CDD31AF1DC68004DE75D /* Util_SystemGUI.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemGUI.dia; sourceTree = ""; }; 725 | B119CDD41AF1DC68004DE75D /* Util_SystemGUI.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemGUI.o; sourceTree = ""; }; 726 | B119CDD51AF1DC68004DE75D /* Util_SystemGUI_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemGUI_OSX.d; sourceTree = ""; }; 727 | B119CDD61AF1DC68004DE75D /* Util_SystemGUI_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemGUI_OSX.dia; sourceTree = ""; }; 728 | B119CDD71AF1DC68004DE75D /* Util_SystemGUI_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemGUI_OSX.o; sourceTree = ""; }; 729 | B119CDD81AF1DC68004DE75D /* Util_SystemInfo.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemInfo.d; sourceTree = ""; }; 730 | B119CDD91AF1DC68004DE75D /* Util_SystemInfo.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemInfo.dia; sourceTree = ""; }; 731 | B119CDDA1AF1DC68004DE75D /* Util_SystemInfo.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemInfo.o; sourceTree = ""; }; 732 | B119CDDB1AF1DC68004DE75D /* Util_SystemInfo_OSX.d */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.dtrace; path = Util_SystemInfo_OSX.d; sourceTree = ""; }; 733 | B119CDDC1AF1DC68004DE75D /* Util_SystemInfo_OSX.dia */ = {isa = PBXFileReference; lastKnownFileType = file; path = Util_SystemInfo_OSX.dia; sourceTree = ""; }; 734 | B119CDDD1AF1DC68004DE75D /* Util_SystemInfo_OSX.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = Util_SystemInfo_OSX.o; sourceTree = ""; }; 735 | B119CDE11AF1DC68004DE75D /* LibOVR.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = LibOVR.xcodeproj; sourceTree = ""; }; 736 | B119CDE61AF1DC68004DE75D /* CAPI_DistortionRenderer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CAPI_DistortionRenderer.cpp; sourceTree = ""; }; 737 | B119CDE71AF1DC68004DE75D /* CAPI_DistortionRenderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_DistortionRenderer.h; sourceTree = ""; }; 738 | B119CDE81AF1DC68004DE75D /* CAPI_FrameTimeManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CAPI_FrameTimeManager.cpp; sourceTree = ""; }; 739 | B119CDE91AF1DC68004DE75D /* CAPI_FrameTimeManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_FrameTimeManager.h; sourceTree = ""; }; 740 | B119CDEA1AF1DC68004DE75D /* CAPI_HMDRenderState.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CAPI_HMDRenderState.cpp; sourceTree = ""; }; 741 | B119CDEB1AF1DC68004DE75D /* CAPI_HMDRenderState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_HMDRenderState.h; sourceTree = ""; }; 742 | B119CDEC1AF1DC68004DE75D /* CAPI_HMDState.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CAPI_HMDState.cpp; sourceTree = ""; }; 743 | B119CDED1AF1DC68004DE75D /* CAPI_HMDState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_HMDState.h; sourceTree = ""; }; 744 | B119CDEE1AF1DC68004DE75D /* CAPI_HSWDisplay.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CAPI_HSWDisplay.cpp; sourceTree = ""; }; 745 | B119CDEF1AF1DC68004DE75D /* CAPI_HSWDisplay.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_HSWDisplay.h; sourceTree = ""; }; 746 | B119CDF01AF1DC68004DE75D /* CAPI_LatencyStatistics.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CAPI_LatencyStatistics.cpp; sourceTree = ""; }; 747 | B119CDF11AF1DC68004DE75D /* CAPI_LatencyStatistics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_LatencyStatistics.h; sourceTree = ""; }; 748 | B119CDF31AF1DC68004DE75D /* CAPI_GL_DistortionRenderer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CAPI_GL_DistortionRenderer.cpp; sourceTree = ""; }; 749 | B119CDF41AF1DC68004DE75D /* CAPI_GL_DistortionRenderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_GL_DistortionRenderer.h; sourceTree = ""; }; 750 | B119CDF51AF1DC68004DE75D /* CAPI_GL_DistortionShaders.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_GL_DistortionShaders.h; sourceTree = ""; }; 751 | B119CDF61AF1DC68004DE75D /* CAPI_GL_HSWDisplay.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CAPI_GL_HSWDisplay.cpp; sourceTree = ""; }; 752 | B119CDF71AF1DC68004DE75D /* CAPI_GL_HSWDisplay.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_GL_HSWDisplay.h; sourceTree = ""; }; 753 | B119CDF81AF1DC68004DE75D /* CAPI_GL_Util.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CAPI_GL_Util.cpp; sourceTree = ""; }; 754 | B119CDF91AF1DC68004DE75D /* CAPI_GL_Util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_GL_Util.h; sourceTree = ""; }; 755 | B119CDFA1AF1DC68004DE75D /* CAPI_GLE.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CAPI_GLE.cpp; sourceTree = ""; }; 756 | B119CDFB1AF1DC68004DE75D /* CAPI_GLE.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_GLE.h; sourceTree = ""; }; 757 | B119CDFC1AF1DC68004DE75D /* CAPI_GLE_GL.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CAPI_GLE_GL.h; sourceTree = ""; }; 758 | B119CDFE1AF1DC68004DE75D /* healthAndSafety.tga.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = healthAndSafety.tga.h; sourceTree = ""; }; 759 | B119CE001AF1DC68004DE75D /* OVR_Display.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Display.cpp; sourceTree = ""; }; 760 | B119CE011AF1DC68004DE75D /* OVR_Display.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Display.h; sourceTree = ""; }; 761 | B119CE021AF1DC68004DE75D /* OVR_OSX_Display.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_OSX_Display.cpp; sourceTree = ""; }; 762 | B119CE031AF1DC68004DE75D /* OVR_OSX_Display.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_OSX_Display.h; sourceTree = ""; }; 763 | B119CE041AF1DC68004DE75D /* OVR_OSX_FocusObserver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_OSX_FocusObserver.h; sourceTree = ""; }; 764 | B119CE051AF1DC68004DE75D /* OVR_OSX_FocusObserver.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = OVR_OSX_FocusObserver.mm; sourceTree = ""; }; 765 | B119CE061AF1DC68004DE75D /* OVR_OSX_FocusReader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_OSX_FocusReader.h; sourceTree = ""; }; 766 | B119CE071AF1DC68004DE75D /* OVR_OSX_FocusReader.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = OVR_OSX_FocusReader.mm; sourceTree = ""; }; 767 | B119CE091AF1DC68004DE75D /* OVR_Alg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Alg.cpp; sourceTree = ""; }; 768 | B119CE0A1AF1DC68004DE75D /* OVR_Alg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Alg.h; sourceTree = ""; }; 769 | B119CE0B1AF1DC68004DE75D /* OVR_Allocator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Allocator.cpp; sourceTree = ""; }; 770 | B119CE0C1AF1DC68004DE75D /* OVR_Allocator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Allocator.h; sourceTree = ""; }; 771 | B119CE0D1AF1DC68004DE75D /* OVR_Array.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Array.h; sourceTree = ""; }; 772 | B119CE0E1AF1DC68004DE75D /* OVR_Atomic.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Atomic.cpp; sourceTree = ""; }; 773 | B119CE0F1AF1DC68004DE75D /* OVR_Atomic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Atomic.h; sourceTree = ""; }; 774 | B119CE101AF1DC68004DE75D /* OVR_Color.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Color.h; sourceTree = ""; }; 775 | B119CE111AF1DC68004DE75D /* OVR_Compiler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Compiler.h; sourceTree = ""; }; 776 | B119CE121AF1DC68004DE75D /* OVR_ContainerAllocator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_ContainerAllocator.h; sourceTree = ""; }; 777 | B119CE131AF1DC68004DE75D /* OVR_CRC32.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_CRC32.cpp; sourceTree = ""; }; 778 | B119CE141AF1DC68004DE75D /* OVR_CRC32.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_CRC32.h; sourceTree = ""; }; 779 | B119CE151AF1DC68004DE75D /* OVR_DebugHelp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_DebugHelp.cpp; sourceTree = ""; }; 780 | B119CE161AF1DC68004DE75D /* OVR_DebugHelp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_DebugHelp.h; sourceTree = ""; }; 781 | B119CE171AF1DC68004DE75D /* OVR_Delegates.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Delegates.h; sourceTree = ""; }; 782 | B119CE181AF1DC68004DE75D /* OVR_Deque.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Deque.h; sourceTree = ""; }; 783 | B119CE191AF1DC68004DE75D /* OVR_File.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_File.cpp; sourceTree = ""; }; 784 | B119CE1A1AF1DC68004DE75D /* OVR_File.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_File.h; sourceTree = ""; }; 785 | B119CE1B1AF1DC68004DE75D /* OVR_FileFILE.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_FileFILE.cpp; sourceTree = ""; }; 786 | B119CE1C1AF1DC68004DE75D /* OVR_Hash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Hash.h; sourceTree = ""; }; 787 | B119CE1D1AF1DC68004DE75D /* OVR_KeyCodes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_KeyCodes.h; sourceTree = ""; }; 788 | B119CE1E1AF1DC68004DE75D /* OVR_List.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_List.h; sourceTree = ""; }; 789 | B119CE1F1AF1DC68004DE75D /* OVR_Lockless.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Lockless.cpp; sourceTree = ""; }; 790 | B119CE201AF1DC68004DE75D /* OVR_Lockless.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Lockless.h; sourceTree = ""; }; 791 | B119CE211AF1DC68004DE75D /* OVR_Log.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Log.cpp; sourceTree = ""; }; 792 | B119CE221AF1DC68004DE75D /* OVR_Log.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Log.h; sourceTree = ""; }; 793 | B119CE231AF1DC68004DE75D /* OVR_mach_exc_OSX.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OVR_mach_exc_OSX.c; sourceTree = ""; }; 794 | B119CE241AF1DC68004DE75D /* OVR_mach_exc_OSX.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_mach_exc_OSX.h; sourceTree = ""; }; 795 | B119CE251AF1DC68004DE75D /* OVR_Math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Math.cpp; sourceTree = ""; }; 796 | B119CE261AF1DC68004DE75D /* OVR_Math.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Math.h; sourceTree = ""; }; 797 | B119CE271AF1DC68004DE75D /* OVR_Nullptr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Nullptr.h; sourceTree = ""; }; 798 | B119CE281AF1DC68004DE75D /* OVR_Observer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Observer.h; sourceTree = ""; }; 799 | B119CE291AF1DC68004DE75D /* OVR_RefCount.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_RefCount.cpp; sourceTree = ""; }; 800 | B119CE2A1AF1DC68004DE75D /* OVR_RefCount.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_RefCount.h; sourceTree = ""; }; 801 | B119CE2B1AF1DC68004DE75D /* OVR_SharedMemory.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_SharedMemory.cpp; sourceTree = ""; }; 802 | B119CE2C1AF1DC68004DE75D /* OVR_SharedMemory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_SharedMemory.h; sourceTree = ""; }; 803 | B119CE2D1AF1DC68004DE75D /* OVR_Std.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Std.cpp; sourceTree = ""; }; 804 | B119CE2E1AF1DC68004DE75D /* OVR_Std.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Std.h; sourceTree = ""; }; 805 | B119CE2F1AF1DC68004DE75D /* OVR_String.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_String.cpp; sourceTree = ""; }; 806 | B119CE301AF1DC68004DE75D /* OVR_String.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_String.h; sourceTree = ""; }; 807 | B119CE311AF1DC68004DE75D /* OVR_String_FormatUtil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_String_FormatUtil.cpp; sourceTree = ""; }; 808 | B119CE321AF1DC68004DE75D /* OVR_String_PathUtil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_String_PathUtil.cpp; sourceTree = ""; }; 809 | B119CE331AF1DC68004DE75D /* OVR_StringHash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_StringHash.h; sourceTree = ""; }; 810 | B119CE341AF1DC68004DE75D /* OVR_SysFile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_SysFile.cpp; sourceTree = ""; }; 811 | B119CE351AF1DC68004DE75D /* OVR_SysFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_SysFile.h; sourceTree = ""; }; 812 | B119CE361AF1DC68004DE75D /* OVR_System.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_System.cpp; sourceTree = ""; }; 813 | B119CE371AF1DC68004DE75D /* OVR_System.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_System.h; sourceTree = ""; }; 814 | B119CE381AF1DC68004DE75D /* OVR_ThreadCommandQueue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_ThreadCommandQueue.cpp; sourceTree = ""; }; 815 | B119CE391AF1DC68004DE75D /* OVR_ThreadCommandQueue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_ThreadCommandQueue.h; sourceTree = ""; }; 816 | B119CE3A1AF1DC68004DE75D /* OVR_Threads.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Threads.h; sourceTree = ""; }; 817 | B119CE3B1AF1DC68004DE75D /* OVR_ThreadsPthread.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_ThreadsPthread.cpp; sourceTree = ""; }; 818 | B119CE3C1AF1DC68004DE75D /* OVR_Timer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Timer.cpp; sourceTree = ""; }; 819 | B119CE3D1AF1DC68004DE75D /* OVR_Timer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Timer.h; sourceTree = ""; }; 820 | B119CE3E1AF1DC68004DE75D /* OVR_Types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Types.h; sourceTree = ""; }; 821 | B119CE3F1AF1DC68004DE75D /* OVR_UTF8Util.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_UTF8Util.cpp; sourceTree = ""; }; 822 | B119CE401AF1DC68004DE75D /* OVR_UTF8Util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_UTF8Util.h; sourceTree = ""; }; 823 | B119CE421AF1DC68004DE75D /* OVR_BitStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_BitStream.cpp; sourceTree = ""; }; 824 | B119CE431AF1DC68004DE75D /* OVR_BitStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_BitStream.h; sourceTree = ""; }; 825 | B119CE441AF1DC68004DE75D /* OVR_MessageIDTypes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_MessageIDTypes.h; sourceTree = ""; }; 826 | B119CE451AF1DC68004DE75D /* OVR_NetworkPlugin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_NetworkPlugin.cpp; sourceTree = ""; }; 827 | B119CE461AF1DC68004DE75D /* OVR_NetworkPlugin.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_NetworkPlugin.h; sourceTree = ""; }; 828 | B119CE471AF1DC68004DE75D /* OVR_NetworkTypes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_NetworkTypes.h; sourceTree = ""; }; 829 | B119CE481AF1DC68004DE75D /* OVR_PacketizedTCPSocket.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_PacketizedTCPSocket.cpp; sourceTree = ""; }; 830 | B119CE491AF1DC68004DE75D /* OVR_PacketizedTCPSocket.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_PacketizedTCPSocket.h; sourceTree = ""; }; 831 | B119CE4A1AF1DC68004DE75D /* OVR_RPC1.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_RPC1.cpp; sourceTree = ""; }; 832 | B119CE4B1AF1DC68004DE75D /* OVR_RPC1.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_RPC1.h; sourceTree = ""; }; 833 | B119CE4C1AF1DC68004DE75D /* OVR_Session.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Session.cpp; sourceTree = ""; }; 834 | B119CE4D1AF1DC68004DE75D /* OVR_Session.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Session.h; sourceTree = ""; }; 835 | B119CE4E1AF1DC68004DE75D /* OVR_Socket.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Socket.cpp; sourceTree = ""; }; 836 | B119CE4F1AF1DC68004DE75D /* OVR_Socket.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Socket.h; sourceTree = ""; }; 837 | B119CE501AF1DC68004DE75D /* OVR_Unix_Socket.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Unix_Socket.cpp; sourceTree = ""; }; 838 | B119CE511AF1DC68004DE75D /* OVR_Unix_Socket.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Unix_Socket.h; sourceTree = ""; }; 839 | B119CE521AF1DC68004DE75D /* OVR_CAPI.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_CAPI.cpp; sourceTree = ""; }; 840 | B119CE531AF1DC68004DE75D /* OVR_CAPI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_CAPI.h; sourceTree = ""; }; 841 | B119CE541AF1DC68004DE75D /* OVR_CAPI_GL.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_CAPI_GL.h; sourceTree = ""; }; 842 | B119CE551AF1DC68004DE75D /* OVR_CAPI_Keys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_CAPI_Keys.h; sourceTree = ""; }; 843 | B119CE561AF1DC68004DE75D /* OVR_JSON.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_JSON.cpp; sourceTree = ""; }; 844 | B119CE571AF1DC68004DE75D /* OVR_JSON.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_JSON.h; sourceTree = ""; }; 845 | B119CE581AF1DC68004DE75D /* OVR_Profile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Profile.cpp; sourceTree = ""; }; 846 | B119CE591AF1DC68004DE75D /* OVR_Profile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Profile.h; sourceTree = ""; }; 847 | B119CE5A1AF1DC68004DE75D /* OVR_SerialFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_SerialFormat.cpp; sourceTree = ""; }; 848 | B119CE5B1AF1DC68004DE75D /* OVR_SerialFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_SerialFormat.h; sourceTree = ""; }; 849 | B119CE5C1AF1DC68004DE75D /* OVR_Stereo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = OVR_Stereo.cpp; sourceTree = ""; }; 850 | B119CE5D1AF1DC68004DE75D /* OVR_Stereo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_Stereo.h; sourceTree = ""; }; 851 | B119CE5F1AF1DC68004DE75D /* OVR_DeviceConstants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OVR_DeviceConstants.h; sourceTree = ""; }; 852 | B119CE611AF1DC68004DE75D /* Service_NetClient.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Service_NetClient.cpp; sourceTree = ""; }; 853 | B119CE621AF1DC68004DE75D /* Service_NetClient.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Service_NetClient.h; sourceTree = ""; }; 854 | B119CE631AF1DC68004DE75D /* Service_NetSessionCommon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Service_NetSessionCommon.cpp; sourceTree = ""; }; 855 | B119CE641AF1DC68004DE75D /* Service_NetSessionCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Service_NetSessionCommon.h; sourceTree = ""; }; 856 | B119CE661AF1DC68004DE75D /* Tracking_PoseState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tracking_PoseState.h; sourceTree = ""; }; 857 | B119CE671AF1DC68004DE75D /* Tracking_SensorState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tracking_SensorState.h; sourceTree = ""; }; 858 | B119CE681AF1DC68004DE75D /* Tracking_SensorStateReader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Tracking_SensorStateReader.cpp; sourceTree = ""; }; 859 | B119CE691AF1DC68004DE75D /* Tracking_SensorStateReader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tracking_SensorStateReader.h; sourceTree = ""; }; 860 | B119CE6B1AF1DC68004DE75D /* Util_ImageWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Util_ImageWindow.cpp; sourceTree = ""; }; 861 | B119CE6C1AF1DC68004DE75D /* Util_ImageWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Util_ImageWindow.h; sourceTree = ""; }; 862 | B119CE6D1AF1DC68004DE75D /* Util_Interface.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Util_Interface.cpp; sourceTree = ""; }; 863 | B119CE6E1AF1DC68004DE75D /* Util_Interface.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Util_Interface.h; sourceTree = ""; }; 864 | B119CE6F1AF1DC68004DE75D /* Util_LatencyTest2Reader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Util_LatencyTest2Reader.cpp; sourceTree = ""; }; 865 | B119CE701AF1DC68004DE75D /* Util_LatencyTest2Reader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Util_LatencyTest2Reader.h; sourceTree = ""; }; 866 | B119CE711AF1DC68004DE75D /* Util_LatencyTest2State.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Util_LatencyTest2State.h; sourceTree = ""; }; 867 | B119CE721AF1DC68004DE75D /* Util_Render_Stereo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Util_Render_Stereo.cpp; sourceTree = ""; }; 868 | B119CE731AF1DC68004DE75D /* Util_Render_Stereo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Util_Render_Stereo.h; sourceTree = ""; }; 869 | B119CE741AF1DC68004DE75D /* Util_SystemGUI.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Util_SystemGUI.cpp; sourceTree = ""; }; 870 | B119CE751AF1DC68004DE75D /* Util_SystemGUI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Util_SystemGUI.h; sourceTree = ""; }; 871 | B119CE761AF1DC68004DE75D /* Util_SystemGUI_OSX.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = Util_SystemGUI_OSX.mm; sourceTree = ""; }; 872 | B119CE771AF1DC68004DE75D /* Util_SystemInfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Util_SystemInfo.cpp; sourceTree = ""; }; 873 | B119CE781AF1DC68004DE75D /* Util_SystemInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Util_SystemInfo.h; sourceTree = ""; }; 874 | B119CE791AF1DC68004DE75D /* Util_SystemInfo_OSX.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = Util_SystemInfo_OSX.mm; sourceTree = ""; }; 875 | B119CE7F1AF1E426004DE75D /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; }; 876 | /* End PBXFileReference section */ 877 | 878 | /* Begin PBXFrameworksBuildPhase section */ 879 | B119CAF91AF1D964004DE75D /* Frameworks */ = { 880 | isa = PBXFrameworksBuildPhase; 881 | buildActionMask = 2147483647; 882 | files = ( 883 | B119CE801AF1E426004DE75D /* OpenGL.framework in Frameworks */, 884 | B119CE7D1AF1DEFE004DE75D /* libovr.a in Frameworks */, 885 | B119CB111AF1DA05004DE75D /* Cocoa.framework in Frameworks */, 886 | B119CB0F1AF1D9F9004DE75D /* Quartz.framework in Frameworks */, 887 | B119CB0D1AF1D9F5004DE75D /* IOKit.framework in Frameworks */, 888 | ); 889 | runOnlyForDeploymentPostprocessing = 0; 890 | }; 891 | /* End PBXFrameworksBuildPhase section */ 892 | 893 | /* Begin PBXGroup section */ 894 | B119CAF31AF1D964004DE75D = { 895 | isa = PBXGroup; 896 | children = ( 897 | B119CAFF1AF1D964004DE75D /* Oculus Rift DK2 */, 898 | B119CB131AF1DB74004DE75D /* Frameworks */, 899 | B119CB151AF1DC66004DE75D /* LibOVR */, 900 | B119CAFE1AF1D964004DE75D /* Products */, 901 | ); 902 | sourceTree = ""; 903 | }; 904 | B119CAFE1AF1D964004DE75D /* Products */ = { 905 | isa = PBXGroup; 906 | children = ( 907 | B119CAFD1AF1D964004DE75D /* Oculus Rift DK2.plugin */, 908 | ); 909 | name = Products; 910 | sourceTree = ""; 911 | }; 912 | B119CAFF1AF1D964004DE75D /* Oculus Rift DK2 */ = { 913 | isa = PBXGroup; 914 | children = ( 915 | B119CB021AF1D964004DE75D /* Oculus_Rift_DK2PlugIn.h */, 916 | B119CB031AF1D964004DE75D /* Oculus_Rift_DK2PlugIn.mm */, 917 | B119CB001AF1D964004DE75D /* Supporting Files */, 918 | ); 919 | path = "Oculus Rift DK2"; 920 | sourceTree = ""; 921 | }; 922 | B119CB001AF1D964004DE75D /* Supporting Files */ = { 923 | isa = PBXGroup; 924 | children = ( 925 | B119CB011AF1D964004DE75D /* Info.plist */, 926 | ); 927 | name = "Supporting Files"; 928 | sourceTree = ""; 929 | }; 930 | B119CB131AF1DB74004DE75D /* Frameworks */ = { 931 | isa = PBXGroup; 932 | children = ( 933 | B119CE7F1AF1E426004DE75D /* OpenGL.framework */, 934 | B119CB101AF1DA05004DE75D /* Cocoa.framework */, 935 | B119CB0E1AF1D9F9004DE75D /* Quartz.framework */, 936 | B119CB0C1AF1D9F5004DE75D /* IOKit.framework */, 937 | ); 938 | name = Frameworks; 939 | sourceTree = ""; 940 | }; 941 | B119CB151AF1DC66004DE75D /* LibOVR */ = { 942 | isa = PBXGroup; 943 | children = ( 944 | B119CB161AF1DC66004DE75D /* Include */, 945 | B119CB1A1AF1DC66004DE75D /* Lib */, 946 | B119CDDE1AF1DC68004DE75D /* Projects */, 947 | B119CDE41AF1DC68004DE75D /* Src */, 948 | ); 949 | name = LibOVR; 950 | path = /Applications/Oculus/SDK/LibOVR; 951 | sourceTree = ""; 952 | }; 953 | B119CB161AF1DC66004DE75D /* Include */ = { 954 | isa = PBXGroup; 955 | children = ( 956 | B119CB171AF1DC66004DE75D /* OVR.h */, 957 | B119CB181AF1DC66004DE75D /* OVR_Kernel.h */, 958 | B119CB191AF1DC66004DE75D /* OVR_Version.h */, 959 | ); 960 | path = Include; 961 | sourceTree = ""; 962 | }; 963 | B119CB1A1AF1DC66004DE75D /* Lib */ = { 964 | isa = PBXGroup; 965 | children = ( 966 | B119CB1B1AF1DC66004DE75D /* Mac */, 967 | ); 968 | path = Lib; 969 | sourceTree = ""; 970 | }; 971 | B119CB1B1AF1DC66004DE75D /* Mac */ = { 972 | isa = PBXGroup; 973 | children = ( 974 | B119CB1C1AF1DC66004DE75D /* Debug */, 975 | B119CC7D1AF1DC67004DE75D /* Release */, 976 | ); 977 | path = Mac; 978 | sourceTree = ""; 979 | }; 980 | B119CB1C1AF1DC66004DE75D /* Debug */ = { 981 | isa = PBXGroup; 982 | children = ( 983 | B119CB1D1AF1DC66004DE75D /* libovr.a */, 984 | B119CB1E1AF1DC66004DE75D /* LibOVR.build */, 985 | ); 986 | path = Debug; 987 | sourceTree = ""; 988 | }; 989 | B119CB1E1AF1DC66004DE75D /* LibOVR.build */ = { 990 | isa = PBXGroup; 991 | children = ( 992 | B119CB1F1AF1DC66004DE75D /* dgph */, 993 | B119CB201AF1DC66004DE75D /* libovr-all-non-framework-target-headers.hmap */, 994 | B119CB211AF1DC66004DE75D /* libovr-all-target-headers.hmap */, 995 | B119CB221AF1DC66004DE75D /* libovr-generated-files.hmap */, 996 | B119CB231AF1DC66004DE75D /* libovr-own-target-headers.hmap */, 997 | B119CB241AF1DC66004DE75D /* libovr-project-headers.hmap */, 998 | B119CB251AF1DC66004DE75D /* libovr.hmap */, 999 | B119CB261AF1DC66004DE75D /* Objects-normal */, 1000 | ); 1001 | path = LibOVR.build; 1002 | sourceTree = ""; 1003 | }; 1004 | B119CB261AF1DC66004DE75D /* Objects-normal */ = { 1005 | isa = PBXGroup; 1006 | children = ( 1007 | B119CB271AF1DC66004DE75D /* i386 */, 1008 | B119CBD21AF1DC66004DE75D /* x86_64 */, 1009 | ); 1010 | path = "Objects-normal"; 1011 | sourceTree = ""; 1012 | }; 1013 | B119CB271AF1DC66004DE75D /* i386 */ = { 1014 | isa = PBXGroup; 1015 | children = ( 1016 | B119CB281AF1DC66004DE75D /* CAPI_DistortionRenderer.d */, 1017 | B119CB291AF1DC66004DE75D /* CAPI_DistortionRenderer.dia */, 1018 | B119CB2A1AF1DC66004DE75D /* CAPI_DistortionRenderer.o */, 1019 | B119CB2B1AF1DC66004DE75D /* CAPI_FrameTimeManager.d */, 1020 | B119CB2C1AF1DC66004DE75D /* CAPI_FrameTimeManager.dia */, 1021 | B119CB2D1AF1DC66004DE75D /* CAPI_FrameTimeManager.o */, 1022 | B119CB2E1AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.d */, 1023 | B119CB2F1AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.dia */, 1024 | B119CB301AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.o */, 1025 | B119CB311AF1DC66004DE75D /* CAPI_GL_HSWDisplay.d */, 1026 | B119CB321AF1DC66004DE75D /* CAPI_GL_HSWDisplay.dia */, 1027 | B119CB331AF1DC66004DE75D /* CAPI_GL_HSWDisplay.o */, 1028 | B119CB341AF1DC66004DE75D /* CAPI_GL_Util.d */, 1029 | B119CB351AF1DC66004DE75D /* CAPI_GL_Util.dia */, 1030 | B119CB361AF1DC66004DE75D /* CAPI_GL_Util.o */, 1031 | B119CB371AF1DC66004DE75D /* CAPI_GLE.d */, 1032 | B119CB381AF1DC66004DE75D /* CAPI_GLE.dia */, 1033 | B119CB391AF1DC66004DE75D /* CAPI_GLE.o */, 1034 | B119CB3A1AF1DC66004DE75D /* CAPI_HMDRenderState.d */, 1035 | B119CB3B1AF1DC66004DE75D /* CAPI_HMDRenderState.dia */, 1036 | B119CB3C1AF1DC66004DE75D /* CAPI_HMDRenderState.o */, 1037 | B119CB3D1AF1DC66004DE75D /* CAPI_HMDState.d */, 1038 | B119CB3E1AF1DC66004DE75D /* CAPI_HMDState.dia */, 1039 | B119CB3F1AF1DC66004DE75D /* CAPI_HMDState.o */, 1040 | B119CB401AF1DC66004DE75D /* CAPI_HSWDisplay.d */, 1041 | B119CB411AF1DC66004DE75D /* CAPI_HSWDisplay.dia */, 1042 | B119CB421AF1DC66004DE75D /* CAPI_HSWDisplay.o */, 1043 | B119CB431AF1DC66004DE75D /* CAPI_LatencyStatistics.d */, 1044 | B119CB441AF1DC66004DE75D /* CAPI_LatencyStatistics.dia */, 1045 | B119CB451AF1DC66004DE75D /* CAPI_LatencyStatistics.o */, 1046 | B119CB461AF1DC66004DE75D /* libovr.a */, 1047 | B119CB471AF1DC66004DE75D /* libovr.LinkFileList */, 1048 | B119CB481AF1DC66004DE75D /* OVR_Alg.d */, 1049 | B119CB491AF1DC66004DE75D /* OVR_Alg.dia */, 1050 | B119CB4A1AF1DC66004DE75D /* OVR_Alg.o */, 1051 | B119CB4B1AF1DC66004DE75D /* OVR_Allocator.d */, 1052 | B119CB4C1AF1DC66004DE75D /* OVR_Allocator.dia */, 1053 | B119CB4D1AF1DC66004DE75D /* OVR_Allocator.o */, 1054 | B119CB4E1AF1DC66004DE75D /* OVR_Atomic.d */, 1055 | B119CB4F1AF1DC66004DE75D /* OVR_Atomic.dia */, 1056 | B119CB501AF1DC66004DE75D /* OVR_Atomic.o */, 1057 | B119CB511AF1DC66004DE75D /* OVR_BitStream.d */, 1058 | B119CB521AF1DC66004DE75D /* OVR_BitStream.dia */, 1059 | B119CB531AF1DC66004DE75D /* OVR_BitStream.o */, 1060 | B119CB541AF1DC66004DE75D /* OVR_CAPI.d */, 1061 | B119CB551AF1DC66004DE75D /* OVR_CAPI.dia */, 1062 | B119CB561AF1DC66004DE75D /* OVR_CAPI.o */, 1063 | B119CB571AF1DC66004DE75D /* OVR_CRC32.d */, 1064 | B119CB581AF1DC66004DE75D /* OVR_CRC32.dia */, 1065 | B119CB591AF1DC66004DE75D /* OVR_CRC32.o */, 1066 | B119CB5A1AF1DC66004DE75D /* OVR_DebugHelp.d */, 1067 | B119CB5B1AF1DC66004DE75D /* OVR_DebugHelp.dia */, 1068 | B119CB5C1AF1DC66004DE75D /* OVR_DebugHelp.o */, 1069 | B119CB5D1AF1DC66004DE75D /* OVR_File.d */, 1070 | B119CB5E1AF1DC66004DE75D /* OVR_File.dia */, 1071 | B119CB5F1AF1DC66004DE75D /* OVR_File.o */, 1072 | B119CB601AF1DC66004DE75D /* OVR_FileFILE.d */, 1073 | B119CB611AF1DC66004DE75D /* OVR_FileFILE.dia */, 1074 | B119CB621AF1DC66004DE75D /* OVR_FileFILE.o */, 1075 | B119CB631AF1DC66004DE75D /* OVR_JSON.d */, 1076 | B119CB641AF1DC66004DE75D /* OVR_JSON.dia */, 1077 | B119CB651AF1DC66004DE75D /* OVR_JSON.o */, 1078 | B119CB661AF1DC66004DE75D /* OVR_Lockless.d */, 1079 | B119CB671AF1DC66004DE75D /* OVR_Lockless.dia */, 1080 | B119CB681AF1DC66004DE75D /* OVR_Lockless.o */, 1081 | B119CB691AF1DC66004DE75D /* OVR_Log.d */, 1082 | B119CB6A1AF1DC66004DE75D /* OVR_Log.dia */, 1083 | B119CB6B1AF1DC66004DE75D /* OVR_Log.o */, 1084 | B119CB6C1AF1DC66004DE75D /* OVR_mach_exc_OSX.d */, 1085 | B119CB6D1AF1DC66004DE75D /* OVR_mach_exc_OSX.dia */, 1086 | B119CB6E1AF1DC66004DE75D /* OVR_mach_exc_OSX.o */, 1087 | B119CB6F1AF1DC66004DE75D /* OVR_Math.d */, 1088 | B119CB701AF1DC66004DE75D /* OVR_Math.dia */, 1089 | B119CB711AF1DC66004DE75D /* OVR_Math.o */, 1090 | B119CB721AF1DC66004DE75D /* OVR_NetworkPlugin.d */, 1091 | B119CB731AF1DC66004DE75D /* OVR_NetworkPlugin.dia */, 1092 | B119CB741AF1DC66004DE75D /* OVR_NetworkPlugin.o */, 1093 | B119CB751AF1DC66004DE75D /* OVR_OSX_Display.d */, 1094 | B119CB761AF1DC66004DE75D /* OVR_OSX_Display.dia */, 1095 | B119CB771AF1DC66004DE75D /* OVR_OSX_Display.o */, 1096 | B119CB781AF1DC66004DE75D /* OVR_PacketizedTCPSocket.d */, 1097 | B119CB791AF1DC66004DE75D /* OVR_PacketizedTCPSocket.dia */, 1098 | B119CB7A1AF1DC66004DE75D /* OVR_PacketizedTCPSocket.o */, 1099 | B119CB7B1AF1DC66004DE75D /* OVR_Profile.d */, 1100 | B119CB7C1AF1DC66004DE75D /* OVR_Profile.dia */, 1101 | B119CB7D1AF1DC66004DE75D /* OVR_Profile.o */, 1102 | B119CB7E1AF1DC66004DE75D /* OVR_RefCount.d */, 1103 | B119CB7F1AF1DC66004DE75D /* OVR_RefCount.dia */, 1104 | B119CB801AF1DC66004DE75D /* OVR_RefCount.o */, 1105 | B119CB811AF1DC66004DE75D /* OVR_RPC1.d */, 1106 | B119CB821AF1DC66004DE75D /* OVR_RPC1.dia */, 1107 | B119CB831AF1DC66004DE75D /* OVR_RPC1.o */, 1108 | B119CB841AF1DC66004DE75D /* OVR_SerialFormat.d */, 1109 | B119CB851AF1DC66004DE75D /* OVR_SerialFormat.dia */, 1110 | B119CB861AF1DC66004DE75D /* OVR_SerialFormat.o */, 1111 | B119CB871AF1DC66004DE75D /* OVR_Session.d */, 1112 | B119CB881AF1DC66004DE75D /* OVR_Session.dia */, 1113 | B119CB891AF1DC66004DE75D /* OVR_Session.o */, 1114 | B119CB8A1AF1DC66004DE75D /* OVR_SharedMemory.d */, 1115 | B119CB8B1AF1DC66004DE75D /* OVR_SharedMemory.dia */, 1116 | B119CB8C1AF1DC66004DE75D /* OVR_SharedMemory.o */, 1117 | B119CB8D1AF1DC66004DE75D /* OVR_Socket.d */, 1118 | B119CB8E1AF1DC66004DE75D /* OVR_Socket.dia */, 1119 | B119CB8F1AF1DC66004DE75D /* OVR_Socket.o */, 1120 | B119CB901AF1DC66004DE75D /* OVR_Std.d */, 1121 | B119CB911AF1DC66004DE75D /* OVR_Std.dia */, 1122 | B119CB921AF1DC66004DE75D /* OVR_Std.o */, 1123 | B119CB931AF1DC66004DE75D /* OVR_Stereo.d */, 1124 | B119CB941AF1DC66004DE75D /* OVR_Stereo.dia */, 1125 | B119CB951AF1DC66004DE75D /* OVR_Stereo.o */, 1126 | B119CB961AF1DC66004DE75D /* OVR_String.d */, 1127 | B119CB971AF1DC66004DE75D /* OVR_String.dia */, 1128 | B119CB981AF1DC66004DE75D /* OVR_String.o */, 1129 | B119CB991AF1DC66004DE75D /* OVR_String_FormatUtil.d */, 1130 | B119CB9A1AF1DC66004DE75D /* OVR_String_FormatUtil.dia */, 1131 | B119CB9B1AF1DC66004DE75D /* OVR_String_FormatUtil.o */, 1132 | B119CB9C1AF1DC66004DE75D /* OVR_String_PathUtil.d */, 1133 | B119CB9D1AF1DC66004DE75D /* OVR_String_PathUtil.dia */, 1134 | B119CB9E1AF1DC66004DE75D /* OVR_String_PathUtil.o */, 1135 | B119CB9F1AF1DC66004DE75D /* OVR_SysFile.d */, 1136 | B119CBA01AF1DC66004DE75D /* OVR_SysFile.dia */, 1137 | B119CBA11AF1DC66004DE75D /* OVR_SysFile.o */, 1138 | B119CBA21AF1DC66004DE75D /* OVR_System.d */, 1139 | B119CBA31AF1DC66004DE75D /* OVR_System.dia */, 1140 | B119CBA41AF1DC66004DE75D /* OVR_System.o */, 1141 | B119CBA51AF1DC66004DE75D /* OVR_ThreadCommandQueue.d */, 1142 | B119CBA61AF1DC66004DE75D /* OVR_ThreadCommandQueue.dia */, 1143 | B119CBA71AF1DC66004DE75D /* OVR_ThreadCommandQueue.o */, 1144 | B119CBA81AF1DC66004DE75D /* OVR_ThreadsPthread.d */, 1145 | B119CBA91AF1DC66004DE75D /* OVR_ThreadsPthread.dia */, 1146 | B119CBAA1AF1DC66004DE75D /* OVR_ThreadsPthread.o */, 1147 | B119CBAB1AF1DC66004DE75D /* OVR_Timer.d */, 1148 | B119CBAC1AF1DC66004DE75D /* OVR_Timer.dia */, 1149 | B119CBAD1AF1DC66004DE75D /* OVR_Timer.o */, 1150 | B119CBAE1AF1DC66004DE75D /* OVR_Unix_Socket.d */, 1151 | B119CBAF1AF1DC66004DE75D /* OVR_Unix_Socket.dia */, 1152 | B119CBB01AF1DC66004DE75D /* OVR_Unix_Socket.o */, 1153 | B119CBB11AF1DC66004DE75D /* OVR_UTF8Util.d */, 1154 | B119CBB21AF1DC66004DE75D /* OVR_UTF8Util.dia */, 1155 | B119CBB31AF1DC66004DE75D /* OVR_UTF8Util.o */, 1156 | B119CBB41AF1DC66004DE75D /* Service_NetClient.d */, 1157 | B119CBB51AF1DC66004DE75D /* Service_NetClient.dia */, 1158 | B119CBB61AF1DC66004DE75D /* Service_NetClient.o */, 1159 | B119CBB71AF1DC66004DE75D /* Service_NetSessionCommon.d */, 1160 | B119CBB81AF1DC66004DE75D /* Service_NetSessionCommon.dia */, 1161 | B119CBB91AF1DC66004DE75D /* Service_NetSessionCommon.o */, 1162 | B119CBBA1AF1DC66004DE75D /* Tracking_SensorStateReader.d */, 1163 | B119CBBB1AF1DC66004DE75D /* Tracking_SensorStateReader.dia */, 1164 | B119CBBC1AF1DC66004DE75D /* Tracking_SensorStateReader.o */, 1165 | B119CBBD1AF1DC66004DE75D /* Util_Interface.d */, 1166 | B119CBBE1AF1DC66004DE75D /* Util_Interface.dia */, 1167 | B119CBBF1AF1DC66004DE75D /* Util_Interface.o */, 1168 | B119CBC01AF1DC66004DE75D /* Util_LatencyTest2Reader.d */, 1169 | B119CBC11AF1DC66004DE75D /* Util_LatencyTest2Reader.dia */, 1170 | B119CBC21AF1DC66004DE75D /* Util_LatencyTest2Reader.o */, 1171 | B119CBC31AF1DC66004DE75D /* Util_Render_Stereo.d */, 1172 | B119CBC41AF1DC66004DE75D /* Util_Render_Stereo.dia */, 1173 | B119CBC51AF1DC66004DE75D /* Util_Render_Stereo.o */, 1174 | B119CBC61AF1DC66004DE75D /* Util_SystemGUI.d */, 1175 | B119CBC71AF1DC66004DE75D /* Util_SystemGUI.dia */, 1176 | B119CBC81AF1DC66004DE75D /* Util_SystemGUI.o */, 1177 | B119CBC91AF1DC66004DE75D /* Util_SystemGUI_OSX.d */, 1178 | B119CBCA1AF1DC66004DE75D /* Util_SystemGUI_OSX.dia */, 1179 | B119CBCB1AF1DC66004DE75D /* Util_SystemGUI_OSX.o */, 1180 | B119CBCC1AF1DC66004DE75D /* Util_SystemInfo.d */, 1181 | B119CBCD1AF1DC66004DE75D /* Util_SystemInfo.dia */, 1182 | B119CBCE1AF1DC66004DE75D /* Util_SystemInfo.o */, 1183 | B119CBCF1AF1DC66004DE75D /* Util_SystemInfo_OSX.d */, 1184 | B119CBD01AF1DC66004DE75D /* Util_SystemInfo_OSX.dia */, 1185 | B119CBD11AF1DC66004DE75D /* Util_SystemInfo_OSX.o */, 1186 | ); 1187 | path = i386; 1188 | sourceTree = ""; 1189 | }; 1190 | B119CBD21AF1DC66004DE75D /* x86_64 */ = { 1191 | isa = PBXGroup; 1192 | children = ( 1193 | B119CBD31AF1DC66004DE75D /* CAPI_DistortionRenderer.d */, 1194 | B119CBD41AF1DC66004DE75D /* CAPI_DistortionRenderer.dia */, 1195 | B119CBD51AF1DC66004DE75D /* CAPI_DistortionRenderer.o */, 1196 | B119CBD61AF1DC66004DE75D /* CAPI_FrameTimeManager.d */, 1197 | B119CBD71AF1DC66004DE75D /* CAPI_FrameTimeManager.dia */, 1198 | B119CBD81AF1DC66004DE75D /* CAPI_FrameTimeManager.o */, 1199 | B119CBD91AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.d */, 1200 | B119CBDA1AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.dia */, 1201 | B119CBDB1AF1DC66004DE75D /* CAPI_GL_DistortionRenderer.o */, 1202 | B119CBDC1AF1DC66004DE75D /* CAPI_GL_HSWDisplay.d */, 1203 | B119CBDD1AF1DC66004DE75D /* CAPI_GL_HSWDisplay.dia */, 1204 | B119CBDE1AF1DC66004DE75D /* CAPI_GL_HSWDisplay.o */, 1205 | B119CBDF1AF1DC66004DE75D /* CAPI_GL_Util.d */, 1206 | B119CBE01AF1DC66004DE75D /* CAPI_GL_Util.dia */, 1207 | B119CBE11AF1DC66004DE75D /* CAPI_GL_Util.o */, 1208 | B119CBE21AF1DC66004DE75D /* CAPI_GLE.d */, 1209 | B119CBE31AF1DC66004DE75D /* CAPI_GLE.dia */, 1210 | B119CBE41AF1DC66004DE75D /* CAPI_GLE.o */, 1211 | B119CBE51AF1DC67004DE75D /* CAPI_HMDRenderState.d */, 1212 | B119CBE61AF1DC67004DE75D /* CAPI_HMDRenderState.dia */, 1213 | B119CBE71AF1DC67004DE75D /* CAPI_HMDRenderState.o */, 1214 | B119CBE81AF1DC67004DE75D /* CAPI_HMDState.d */, 1215 | B119CBE91AF1DC67004DE75D /* CAPI_HMDState.dia */, 1216 | B119CBEA1AF1DC67004DE75D /* CAPI_HMDState.o */, 1217 | B119CBEB1AF1DC67004DE75D /* CAPI_HSWDisplay.d */, 1218 | B119CBEC1AF1DC67004DE75D /* CAPI_HSWDisplay.dia */, 1219 | B119CBED1AF1DC67004DE75D /* CAPI_HSWDisplay.o */, 1220 | B119CBEE1AF1DC67004DE75D /* CAPI_LatencyStatistics.d */, 1221 | B119CBEF1AF1DC67004DE75D /* CAPI_LatencyStatistics.dia */, 1222 | B119CBF01AF1DC67004DE75D /* CAPI_LatencyStatistics.o */, 1223 | B119CBF11AF1DC67004DE75D /* libovr.a */, 1224 | B119CBF21AF1DC67004DE75D /* libovr.LinkFileList */, 1225 | B119CBF31AF1DC67004DE75D /* OVR_Alg.d */, 1226 | B119CBF41AF1DC67004DE75D /* OVR_Alg.dia */, 1227 | B119CBF51AF1DC67004DE75D /* OVR_Alg.o */, 1228 | B119CBF61AF1DC67004DE75D /* OVR_Allocator.d */, 1229 | B119CBF71AF1DC67004DE75D /* OVR_Allocator.dia */, 1230 | B119CBF81AF1DC67004DE75D /* OVR_Allocator.o */, 1231 | B119CBF91AF1DC67004DE75D /* OVR_Atomic.d */, 1232 | B119CBFA1AF1DC67004DE75D /* OVR_Atomic.dia */, 1233 | B119CBFB1AF1DC67004DE75D /* OVR_Atomic.o */, 1234 | B119CBFC1AF1DC67004DE75D /* OVR_BitStream.d */, 1235 | B119CBFD1AF1DC67004DE75D /* OVR_BitStream.dia */, 1236 | B119CBFE1AF1DC67004DE75D /* OVR_BitStream.o */, 1237 | B119CBFF1AF1DC67004DE75D /* OVR_CAPI.d */, 1238 | B119CC001AF1DC67004DE75D /* OVR_CAPI.dia */, 1239 | B119CC011AF1DC67004DE75D /* OVR_CAPI.o */, 1240 | B119CC021AF1DC67004DE75D /* OVR_CRC32.d */, 1241 | B119CC031AF1DC67004DE75D /* OVR_CRC32.dia */, 1242 | B119CC041AF1DC67004DE75D /* OVR_CRC32.o */, 1243 | B119CC051AF1DC67004DE75D /* OVR_DebugHelp.d */, 1244 | B119CC061AF1DC67004DE75D /* OVR_DebugHelp.dia */, 1245 | B119CC071AF1DC67004DE75D /* OVR_DebugHelp.o */, 1246 | B119CC081AF1DC67004DE75D /* OVR_File.d */, 1247 | B119CC091AF1DC67004DE75D /* OVR_File.dia */, 1248 | B119CC0A1AF1DC67004DE75D /* OVR_File.o */, 1249 | B119CC0B1AF1DC67004DE75D /* OVR_FileFILE.d */, 1250 | B119CC0C1AF1DC67004DE75D /* OVR_FileFILE.dia */, 1251 | B119CC0D1AF1DC67004DE75D /* OVR_FileFILE.o */, 1252 | B119CC0E1AF1DC67004DE75D /* OVR_JSON.d */, 1253 | B119CC0F1AF1DC67004DE75D /* OVR_JSON.dia */, 1254 | B119CC101AF1DC67004DE75D /* OVR_JSON.o */, 1255 | B119CC111AF1DC67004DE75D /* OVR_Lockless.d */, 1256 | B119CC121AF1DC67004DE75D /* OVR_Lockless.dia */, 1257 | B119CC131AF1DC67004DE75D /* OVR_Lockless.o */, 1258 | B119CC141AF1DC67004DE75D /* OVR_Log.d */, 1259 | B119CC151AF1DC67004DE75D /* OVR_Log.dia */, 1260 | B119CC161AF1DC67004DE75D /* OVR_Log.o */, 1261 | B119CC171AF1DC67004DE75D /* OVR_mach_exc_OSX.d */, 1262 | B119CC181AF1DC67004DE75D /* OVR_mach_exc_OSX.dia */, 1263 | B119CC191AF1DC67004DE75D /* OVR_mach_exc_OSX.o */, 1264 | B119CC1A1AF1DC67004DE75D /* OVR_Math.d */, 1265 | B119CC1B1AF1DC67004DE75D /* OVR_Math.dia */, 1266 | B119CC1C1AF1DC67004DE75D /* OVR_Math.o */, 1267 | B119CC1D1AF1DC67004DE75D /* OVR_NetworkPlugin.d */, 1268 | B119CC1E1AF1DC67004DE75D /* OVR_NetworkPlugin.dia */, 1269 | B119CC1F1AF1DC67004DE75D /* OVR_NetworkPlugin.o */, 1270 | B119CC201AF1DC67004DE75D /* OVR_OSX_Display.d */, 1271 | B119CC211AF1DC67004DE75D /* OVR_OSX_Display.dia */, 1272 | B119CC221AF1DC67004DE75D /* OVR_OSX_Display.o */, 1273 | B119CC231AF1DC67004DE75D /* OVR_PacketizedTCPSocket.d */, 1274 | B119CC241AF1DC67004DE75D /* OVR_PacketizedTCPSocket.dia */, 1275 | B119CC251AF1DC67004DE75D /* OVR_PacketizedTCPSocket.o */, 1276 | B119CC261AF1DC67004DE75D /* OVR_Profile.d */, 1277 | B119CC271AF1DC67004DE75D /* OVR_Profile.dia */, 1278 | B119CC281AF1DC67004DE75D /* OVR_Profile.o */, 1279 | B119CC291AF1DC67004DE75D /* OVR_RefCount.d */, 1280 | B119CC2A1AF1DC67004DE75D /* OVR_RefCount.dia */, 1281 | B119CC2B1AF1DC67004DE75D /* OVR_RefCount.o */, 1282 | B119CC2C1AF1DC67004DE75D /* OVR_RPC1.d */, 1283 | B119CC2D1AF1DC67004DE75D /* OVR_RPC1.dia */, 1284 | B119CC2E1AF1DC67004DE75D /* OVR_RPC1.o */, 1285 | B119CC2F1AF1DC67004DE75D /* OVR_SerialFormat.d */, 1286 | B119CC301AF1DC67004DE75D /* OVR_SerialFormat.dia */, 1287 | B119CC311AF1DC67004DE75D /* OVR_SerialFormat.o */, 1288 | B119CC321AF1DC67004DE75D /* OVR_Session.d */, 1289 | B119CC331AF1DC67004DE75D /* OVR_Session.dia */, 1290 | B119CC341AF1DC67004DE75D /* OVR_Session.o */, 1291 | B119CC351AF1DC67004DE75D /* OVR_SharedMemory.d */, 1292 | B119CC361AF1DC67004DE75D /* OVR_SharedMemory.dia */, 1293 | B119CC371AF1DC67004DE75D /* OVR_SharedMemory.o */, 1294 | B119CC381AF1DC67004DE75D /* OVR_Socket.d */, 1295 | B119CC391AF1DC67004DE75D /* OVR_Socket.dia */, 1296 | B119CC3A1AF1DC67004DE75D /* OVR_Socket.o */, 1297 | B119CC3B1AF1DC67004DE75D /* OVR_Std.d */, 1298 | B119CC3C1AF1DC67004DE75D /* OVR_Std.dia */, 1299 | B119CC3D1AF1DC67004DE75D /* OVR_Std.o */, 1300 | B119CC3E1AF1DC67004DE75D /* OVR_Stereo.d */, 1301 | B119CC3F1AF1DC67004DE75D /* OVR_Stereo.dia */, 1302 | B119CC401AF1DC67004DE75D /* OVR_Stereo.o */, 1303 | B119CC411AF1DC67004DE75D /* OVR_String.d */, 1304 | B119CC421AF1DC67004DE75D /* OVR_String.dia */, 1305 | B119CC431AF1DC67004DE75D /* OVR_String.o */, 1306 | B119CC441AF1DC67004DE75D /* OVR_String_FormatUtil.d */, 1307 | B119CC451AF1DC67004DE75D /* OVR_String_FormatUtil.dia */, 1308 | B119CC461AF1DC67004DE75D /* OVR_String_FormatUtil.o */, 1309 | B119CC471AF1DC67004DE75D /* OVR_String_PathUtil.d */, 1310 | B119CC481AF1DC67004DE75D /* OVR_String_PathUtil.dia */, 1311 | B119CC491AF1DC67004DE75D /* OVR_String_PathUtil.o */, 1312 | B119CC4A1AF1DC67004DE75D /* OVR_SysFile.d */, 1313 | B119CC4B1AF1DC67004DE75D /* OVR_SysFile.dia */, 1314 | B119CC4C1AF1DC67004DE75D /* OVR_SysFile.o */, 1315 | B119CC4D1AF1DC67004DE75D /* OVR_System.d */, 1316 | B119CC4E1AF1DC67004DE75D /* OVR_System.dia */, 1317 | B119CC4F1AF1DC67004DE75D /* OVR_System.o */, 1318 | B119CC501AF1DC67004DE75D /* OVR_ThreadCommandQueue.d */, 1319 | B119CC511AF1DC67004DE75D /* OVR_ThreadCommandQueue.dia */, 1320 | B119CC521AF1DC67004DE75D /* OVR_ThreadCommandQueue.o */, 1321 | B119CC531AF1DC67004DE75D /* OVR_ThreadsPthread.d */, 1322 | B119CC541AF1DC67004DE75D /* OVR_ThreadsPthread.dia */, 1323 | B119CC551AF1DC67004DE75D /* OVR_ThreadsPthread.o */, 1324 | B119CC561AF1DC67004DE75D /* OVR_Timer.d */, 1325 | B119CC571AF1DC67004DE75D /* OVR_Timer.dia */, 1326 | B119CC581AF1DC67004DE75D /* OVR_Timer.o */, 1327 | B119CC591AF1DC67004DE75D /* OVR_Unix_Socket.d */, 1328 | B119CC5A1AF1DC67004DE75D /* OVR_Unix_Socket.dia */, 1329 | B119CC5B1AF1DC67004DE75D /* OVR_Unix_Socket.o */, 1330 | B119CC5C1AF1DC67004DE75D /* OVR_UTF8Util.d */, 1331 | B119CC5D1AF1DC67004DE75D /* OVR_UTF8Util.dia */, 1332 | B119CC5E1AF1DC67004DE75D /* OVR_UTF8Util.o */, 1333 | B119CC5F1AF1DC67004DE75D /* Service_NetClient.d */, 1334 | B119CC601AF1DC67004DE75D /* Service_NetClient.dia */, 1335 | B119CC611AF1DC67004DE75D /* Service_NetClient.o */, 1336 | B119CC621AF1DC67004DE75D /* Service_NetSessionCommon.d */, 1337 | B119CC631AF1DC67004DE75D /* Service_NetSessionCommon.dia */, 1338 | B119CC641AF1DC67004DE75D /* Service_NetSessionCommon.o */, 1339 | B119CC651AF1DC67004DE75D /* Tracking_SensorStateReader.d */, 1340 | B119CC661AF1DC67004DE75D /* Tracking_SensorStateReader.dia */, 1341 | B119CC671AF1DC67004DE75D /* Tracking_SensorStateReader.o */, 1342 | B119CC681AF1DC67004DE75D /* Util_Interface.d */, 1343 | B119CC691AF1DC67004DE75D /* Util_Interface.dia */, 1344 | B119CC6A1AF1DC67004DE75D /* Util_Interface.o */, 1345 | B119CC6B1AF1DC67004DE75D /* Util_LatencyTest2Reader.d */, 1346 | B119CC6C1AF1DC67004DE75D /* Util_LatencyTest2Reader.dia */, 1347 | B119CC6D1AF1DC67004DE75D /* Util_LatencyTest2Reader.o */, 1348 | B119CC6E1AF1DC67004DE75D /* Util_Render_Stereo.d */, 1349 | B119CC6F1AF1DC67004DE75D /* Util_Render_Stereo.dia */, 1350 | B119CC701AF1DC67004DE75D /* Util_Render_Stereo.o */, 1351 | B119CC711AF1DC67004DE75D /* Util_SystemGUI.d */, 1352 | B119CC721AF1DC67004DE75D /* Util_SystemGUI.dia */, 1353 | B119CC731AF1DC67004DE75D /* Util_SystemGUI.o */, 1354 | B119CC741AF1DC67004DE75D /* Util_SystemGUI_OSX.d */, 1355 | B119CC751AF1DC67004DE75D /* Util_SystemGUI_OSX.dia */, 1356 | B119CC761AF1DC67004DE75D /* Util_SystemGUI_OSX.o */, 1357 | B119CC771AF1DC67004DE75D /* Util_SystemInfo.d */, 1358 | B119CC781AF1DC67004DE75D /* Util_SystemInfo.dia */, 1359 | B119CC791AF1DC67004DE75D /* Util_SystemInfo.o */, 1360 | B119CC7A1AF1DC67004DE75D /* Util_SystemInfo_OSX.d */, 1361 | B119CC7B1AF1DC67004DE75D /* Util_SystemInfo_OSX.dia */, 1362 | B119CC7C1AF1DC67004DE75D /* Util_SystemInfo_OSX.o */, 1363 | ); 1364 | path = x86_64; 1365 | sourceTree = ""; 1366 | }; 1367 | B119CC7D1AF1DC67004DE75D /* Release */ = { 1368 | isa = PBXGroup; 1369 | children = ( 1370 | B119CC7E1AF1DC67004DE75D /* libovr.a */, 1371 | B119CC7F1AF1DC67004DE75D /* LibOVR.build */, 1372 | ); 1373 | path = Release; 1374 | sourceTree = ""; 1375 | }; 1376 | B119CC7F1AF1DC67004DE75D /* LibOVR.build */ = { 1377 | isa = PBXGroup; 1378 | children = ( 1379 | B119CC801AF1DC67004DE75D /* dgph */, 1380 | B119CC811AF1DC67004DE75D /* libovr-all-non-framework-target-headers.hmap */, 1381 | B119CC821AF1DC67004DE75D /* libovr-all-target-headers.hmap */, 1382 | B119CC831AF1DC67004DE75D /* libovr-generated-files.hmap */, 1383 | B119CC841AF1DC67004DE75D /* libovr-own-target-headers.hmap */, 1384 | B119CC851AF1DC67004DE75D /* libovr-project-headers.hmap */, 1385 | B119CC861AF1DC67004DE75D /* libovr.hmap */, 1386 | B119CC871AF1DC67004DE75D /* Objects-normal */, 1387 | ); 1388 | path = LibOVR.build; 1389 | sourceTree = ""; 1390 | }; 1391 | B119CC871AF1DC67004DE75D /* Objects-normal */ = { 1392 | isa = PBXGroup; 1393 | children = ( 1394 | B119CC881AF1DC67004DE75D /* i386 */, 1395 | B119CD331AF1DC67004DE75D /* x86_64 */, 1396 | ); 1397 | path = "Objects-normal"; 1398 | sourceTree = ""; 1399 | }; 1400 | B119CC881AF1DC67004DE75D /* i386 */ = { 1401 | isa = PBXGroup; 1402 | children = ( 1403 | B119CC891AF1DC67004DE75D /* CAPI_DistortionRenderer.d */, 1404 | B119CC8A1AF1DC67004DE75D /* CAPI_DistortionRenderer.dia */, 1405 | B119CC8B1AF1DC67004DE75D /* CAPI_DistortionRenderer.o */, 1406 | B119CC8C1AF1DC67004DE75D /* CAPI_FrameTimeManager.d */, 1407 | B119CC8D1AF1DC67004DE75D /* CAPI_FrameTimeManager.dia */, 1408 | B119CC8E1AF1DC67004DE75D /* CAPI_FrameTimeManager.o */, 1409 | B119CC8F1AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.d */, 1410 | B119CC901AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.dia */, 1411 | B119CC911AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.o */, 1412 | B119CC921AF1DC67004DE75D /* CAPI_GL_HSWDisplay.d */, 1413 | B119CC931AF1DC67004DE75D /* CAPI_GL_HSWDisplay.dia */, 1414 | B119CC941AF1DC67004DE75D /* CAPI_GL_HSWDisplay.o */, 1415 | B119CC951AF1DC67004DE75D /* CAPI_GL_Util.d */, 1416 | B119CC961AF1DC67004DE75D /* CAPI_GL_Util.dia */, 1417 | B119CC971AF1DC67004DE75D /* CAPI_GL_Util.o */, 1418 | B119CC981AF1DC67004DE75D /* CAPI_GLE.d */, 1419 | B119CC991AF1DC67004DE75D /* CAPI_GLE.dia */, 1420 | B119CC9A1AF1DC67004DE75D /* CAPI_GLE.o */, 1421 | B119CC9B1AF1DC67004DE75D /* CAPI_HMDRenderState.d */, 1422 | B119CC9C1AF1DC67004DE75D /* CAPI_HMDRenderState.dia */, 1423 | B119CC9D1AF1DC67004DE75D /* CAPI_HMDRenderState.o */, 1424 | B119CC9E1AF1DC67004DE75D /* CAPI_HMDState.d */, 1425 | B119CC9F1AF1DC67004DE75D /* CAPI_HMDState.dia */, 1426 | B119CCA01AF1DC67004DE75D /* CAPI_HMDState.o */, 1427 | B119CCA11AF1DC67004DE75D /* CAPI_HSWDisplay.d */, 1428 | B119CCA21AF1DC67004DE75D /* CAPI_HSWDisplay.dia */, 1429 | B119CCA31AF1DC67004DE75D /* CAPI_HSWDisplay.o */, 1430 | B119CCA41AF1DC67004DE75D /* CAPI_LatencyStatistics.d */, 1431 | B119CCA51AF1DC67004DE75D /* CAPI_LatencyStatistics.dia */, 1432 | B119CCA61AF1DC67004DE75D /* CAPI_LatencyStatistics.o */, 1433 | B119CCA71AF1DC67004DE75D /* libovr.a */, 1434 | B119CCA81AF1DC67004DE75D /* libovr.LinkFileList */, 1435 | B119CCA91AF1DC67004DE75D /* OVR_Alg.d */, 1436 | B119CCAA1AF1DC67004DE75D /* OVR_Alg.dia */, 1437 | B119CCAB1AF1DC67004DE75D /* OVR_Alg.o */, 1438 | B119CCAC1AF1DC67004DE75D /* OVR_Allocator.d */, 1439 | B119CCAD1AF1DC67004DE75D /* OVR_Allocator.dia */, 1440 | B119CCAE1AF1DC67004DE75D /* OVR_Allocator.o */, 1441 | B119CCAF1AF1DC67004DE75D /* OVR_Atomic.d */, 1442 | B119CCB01AF1DC67004DE75D /* OVR_Atomic.dia */, 1443 | B119CCB11AF1DC67004DE75D /* OVR_Atomic.o */, 1444 | B119CCB21AF1DC67004DE75D /* OVR_BitStream.d */, 1445 | B119CCB31AF1DC67004DE75D /* OVR_BitStream.dia */, 1446 | B119CCB41AF1DC67004DE75D /* OVR_BitStream.o */, 1447 | B119CCB51AF1DC67004DE75D /* OVR_CAPI.d */, 1448 | B119CCB61AF1DC67004DE75D /* OVR_CAPI.dia */, 1449 | B119CCB71AF1DC67004DE75D /* OVR_CAPI.o */, 1450 | B119CCB81AF1DC67004DE75D /* OVR_CRC32.d */, 1451 | B119CCB91AF1DC67004DE75D /* OVR_CRC32.dia */, 1452 | B119CCBA1AF1DC67004DE75D /* OVR_CRC32.o */, 1453 | B119CCBB1AF1DC67004DE75D /* OVR_DebugHelp.d */, 1454 | B119CCBC1AF1DC67004DE75D /* OVR_DebugHelp.dia */, 1455 | B119CCBD1AF1DC67004DE75D /* OVR_DebugHelp.o */, 1456 | B119CCBE1AF1DC67004DE75D /* OVR_File.d */, 1457 | B119CCBF1AF1DC67004DE75D /* OVR_File.dia */, 1458 | B119CCC01AF1DC67004DE75D /* OVR_File.o */, 1459 | B119CCC11AF1DC67004DE75D /* OVR_FileFILE.d */, 1460 | B119CCC21AF1DC67004DE75D /* OVR_FileFILE.dia */, 1461 | B119CCC31AF1DC67004DE75D /* OVR_FileFILE.o */, 1462 | B119CCC41AF1DC67004DE75D /* OVR_JSON.d */, 1463 | B119CCC51AF1DC67004DE75D /* OVR_JSON.dia */, 1464 | B119CCC61AF1DC67004DE75D /* OVR_JSON.o */, 1465 | B119CCC71AF1DC67004DE75D /* OVR_Lockless.d */, 1466 | B119CCC81AF1DC67004DE75D /* OVR_Lockless.dia */, 1467 | B119CCC91AF1DC67004DE75D /* OVR_Lockless.o */, 1468 | B119CCCA1AF1DC67004DE75D /* OVR_Log.d */, 1469 | B119CCCB1AF1DC67004DE75D /* OVR_Log.dia */, 1470 | B119CCCC1AF1DC67004DE75D /* OVR_Log.o */, 1471 | B119CCCD1AF1DC67004DE75D /* OVR_mach_exc_OSX.d */, 1472 | B119CCCE1AF1DC67004DE75D /* OVR_mach_exc_OSX.dia */, 1473 | B119CCCF1AF1DC67004DE75D /* OVR_mach_exc_OSX.o */, 1474 | B119CCD01AF1DC67004DE75D /* OVR_Math.d */, 1475 | B119CCD11AF1DC67004DE75D /* OVR_Math.dia */, 1476 | B119CCD21AF1DC67004DE75D /* OVR_Math.o */, 1477 | B119CCD31AF1DC67004DE75D /* OVR_NetworkPlugin.d */, 1478 | B119CCD41AF1DC67004DE75D /* OVR_NetworkPlugin.dia */, 1479 | B119CCD51AF1DC67004DE75D /* OVR_NetworkPlugin.o */, 1480 | B119CCD61AF1DC67004DE75D /* OVR_OSX_Display.d */, 1481 | B119CCD71AF1DC67004DE75D /* OVR_OSX_Display.dia */, 1482 | B119CCD81AF1DC67004DE75D /* OVR_OSX_Display.o */, 1483 | B119CCD91AF1DC67004DE75D /* OVR_PacketizedTCPSocket.d */, 1484 | B119CCDA1AF1DC67004DE75D /* OVR_PacketizedTCPSocket.dia */, 1485 | B119CCDB1AF1DC67004DE75D /* OVR_PacketizedTCPSocket.o */, 1486 | B119CCDC1AF1DC67004DE75D /* OVR_Profile.d */, 1487 | B119CCDD1AF1DC67004DE75D /* OVR_Profile.dia */, 1488 | B119CCDE1AF1DC67004DE75D /* OVR_Profile.o */, 1489 | B119CCDF1AF1DC67004DE75D /* OVR_RefCount.d */, 1490 | B119CCE01AF1DC67004DE75D /* OVR_RefCount.dia */, 1491 | B119CCE11AF1DC67004DE75D /* OVR_RefCount.o */, 1492 | B119CCE21AF1DC67004DE75D /* OVR_RPC1.d */, 1493 | B119CCE31AF1DC67004DE75D /* OVR_RPC1.dia */, 1494 | B119CCE41AF1DC67004DE75D /* OVR_RPC1.o */, 1495 | B119CCE51AF1DC67004DE75D /* OVR_SerialFormat.d */, 1496 | B119CCE61AF1DC67004DE75D /* OVR_SerialFormat.dia */, 1497 | B119CCE71AF1DC67004DE75D /* OVR_SerialFormat.o */, 1498 | B119CCE81AF1DC67004DE75D /* OVR_Session.d */, 1499 | B119CCE91AF1DC67004DE75D /* OVR_Session.dia */, 1500 | B119CCEA1AF1DC67004DE75D /* OVR_Session.o */, 1501 | B119CCEB1AF1DC67004DE75D /* OVR_SharedMemory.d */, 1502 | B119CCEC1AF1DC67004DE75D /* OVR_SharedMemory.dia */, 1503 | B119CCED1AF1DC67004DE75D /* OVR_SharedMemory.o */, 1504 | B119CCEE1AF1DC67004DE75D /* OVR_Socket.d */, 1505 | B119CCEF1AF1DC67004DE75D /* OVR_Socket.dia */, 1506 | B119CCF01AF1DC67004DE75D /* OVR_Socket.o */, 1507 | B119CCF11AF1DC67004DE75D /* OVR_Std.d */, 1508 | B119CCF21AF1DC67004DE75D /* OVR_Std.dia */, 1509 | B119CCF31AF1DC67004DE75D /* OVR_Std.o */, 1510 | B119CCF41AF1DC67004DE75D /* OVR_Stereo.d */, 1511 | B119CCF51AF1DC67004DE75D /* OVR_Stereo.dia */, 1512 | B119CCF61AF1DC67004DE75D /* OVR_Stereo.o */, 1513 | B119CCF71AF1DC67004DE75D /* OVR_String.d */, 1514 | B119CCF81AF1DC67004DE75D /* OVR_String.dia */, 1515 | B119CCF91AF1DC67004DE75D /* OVR_String.o */, 1516 | B119CCFA1AF1DC67004DE75D /* OVR_String_FormatUtil.d */, 1517 | B119CCFB1AF1DC67004DE75D /* OVR_String_FormatUtil.dia */, 1518 | B119CCFC1AF1DC67004DE75D /* OVR_String_FormatUtil.o */, 1519 | B119CCFD1AF1DC67004DE75D /* OVR_String_PathUtil.d */, 1520 | B119CCFE1AF1DC67004DE75D /* OVR_String_PathUtil.dia */, 1521 | B119CCFF1AF1DC67004DE75D /* OVR_String_PathUtil.o */, 1522 | B119CD001AF1DC67004DE75D /* OVR_SysFile.d */, 1523 | B119CD011AF1DC67004DE75D /* OVR_SysFile.dia */, 1524 | B119CD021AF1DC67004DE75D /* OVR_SysFile.o */, 1525 | B119CD031AF1DC67004DE75D /* OVR_System.d */, 1526 | B119CD041AF1DC67004DE75D /* OVR_System.dia */, 1527 | B119CD051AF1DC67004DE75D /* OVR_System.o */, 1528 | B119CD061AF1DC67004DE75D /* OVR_ThreadCommandQueue.d */, 1529 | B119CD071AF1DC67004DE75D /* OVR_ThreadCommandQueue.dia */, 1530 | B119CD081AF1DC67004DE75D /* OVR_ThreadCommandQueue.o */, 1531 | B119CD091AF1DC67004DE75D /* OVR_ThreadsPthread.d */, 1532 | B119CD0A1AF1DC67004DE75D /* OVR_ThreadsPthread.dia */, 1533 | B119CD0B1AF1DC67004DE75D /* OVR_ThreadsPthread.o */, 1534 | B119CD0C1AF1DC67004DE75D /* OVR_Timer.d */, 1535 | B119CD0D1AF1DC67004DE75D /* OVR_Timer.dia */, 1536 | B119CD0E1AF1DC67004DE75D /* OVR_Timer.o */, 1537 | B119CD0F1AF1DC67004DE75D /* OVR_Unix_Socket.d */, 1538 | B119CD101AF1DC67004DE75D /* OVR_Unix_Socket.dia */, 1539 | B119CD111AF1DC67004DE75D /* OVR_Unix_Socket.o */, 1540 | B119CD121AF1DC67004DE75D /* OVR_UTF8Util.d */, 1541 | B119CD131AF1DC67004DE75D /* OVR_UTF8Util.dia */, 1542 | B119CD141AF1DC67004DE75D /* OVR_UTF8Util.o */, 1543 | B119CD151AF1DC67004DE75D /* Service_NetClient.d */, 1544 | B119CD161AF1DC67004DE75D /* Service_NetClient.dia */, 1545 | B119CD171AF1DC67004DE75D /* Service_NetClient.o */, 1546 | B119CD181AF1DC67004DE75D /* Service_NetSessionCommon.d */, 1547 | B119CD191AF1DC67004DE75D /* Service_NetSessionCommon.dia */, 1548 | B119CD1A1AF1DC67004DE75D /* Service_NetSessionCommon.o */, 1549 | B119CD1B1AF1DC67004DE75D /* Tracking_SensorStateReader.d */, 1550 | B119CD1C1AF1DC67004DE75D /* Tracking_SensorStateReader.dia */, 1551 | B119CD1D1AF1DC67004DE75D /* Tracking_SensorStateReader.o */, 1552 | B119CD1E1AF1DC67004DE75D /* Util_Interface.d */, 1553 | B119CD1F1AF1DC67004DE75D /* Util_Interface.dia */, 1554 | B119CD201AF1DC67004DE75D /* Util_Interface.o */, 1555 | B119CD211AF1DC67004DE75D /* Util_LatencyTest2Reader.d */, 1556 | B119CD221AF1DC67004DE75D /* Util_LatencyTest2Reader.dia */, 1557 | B119CD231AF1DC67004DE75D /* Util_LatencyTest2Reader.o */, 1558 | B119CD241AF1DC67004DE75D /* Util_Render_Stereo.d */, 1559 | B119CD251AF1DC67004DE75D /* Util_Render_Stereo.dia */, 1560 | B119CD261AF1DC67004DE75D /* Util_Render_Stereo.o */, 1561 | B119CD271AF1DC67004DE75D /* Util_SystemGUI.d */, 1562 | B119CD281AF1DC67004DE75D /* Util_SystemGUI.dia */, 1563 | B119CD291AF1DC67004DE75D /* Util_SystemGUI.o */, 1564 | B119CD2A1AF1DC67004DE75D /* Util_SystemGUI_OSX.d */, 1565 | B119CD2B1AF1DC67004DE75D /* Util_SystemGUI_OSX.dia */, 1566 | B119CD2C1AF1DC67004DE75D /* Util_SystemGUI_OSX.o */, 1567 | B119CD2D1AF1DC67004DE75D /* Util_SystemInfo.d */, 1568 | B119CD2E1AF1DC67004DE75D /* Util_SystemInfo.dia */, 1569 | B119CD2F1AF1DC67004DE75D /* Util_SystemInfo.o */, 1570 | B119CD301AF1DC67004DE75D /* Util_SystemInfo_OSX.d */, 1571 | B119CD311AF1DC67004DE75D /* Util_SystemInfo_OSX.dia */, 1572 | B119CD321AF1DC67004DE75D /* Util_SystemInfo_OSX.o */, 1573 | ); 1574 | path = i386; 1575 | sourceTree = ""; 1576 | }; 1577 | B119CD331AF1DC67004DE75D /* x86_64 */ = { 1578 | isa = PBXGroup; 1579 | children = ( 1580 | B119CD341AF1DC67004DE75D /* CAPI_DistortionRenderer.d */, 1581 | B119CD351AF1DC67004DE75D /* CAPI_DistortionRenderer.dia */, 1582 | B119CD361AF1DC67004DE75D /* CAPI_DistortionRenderer.o */, 1583 | B119CD371AF1DC67004DE75D /* CAPI_FrameTimeManager.d */, 1584 | B119CD381AF1DC67004DE75D /* CAPI_FrameTimeManager.dia */, 1585 | B119CD391AF1DC67004DE75D /* CAPI_FrameTimeManager.o */, 1586 | B119CD3A1AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.d */, 1587 | B119CD3B1AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.dia */, 1588 | B119CD3C1AF1DC67004DE75D /* CAPI_GL_DistortionRenderer.o */, 1589 | B119CD3D1AF1DC67004DE75D /* CAPI_GL_HSWDisplay.d */, 1590 | B119CD3E1AF1DC67004DE75D /* CAPI_GL_HSWDisplay.dia */, 1591 | B119CD3F1AF1DC67004DE75D /* CAPI_GL_HSWDisplay.o */, 1592 | B119CD401AF1DC67004DE75D /* CAPI_GL_Util.d */, 1593 | B119CD411AF1DC67004DE75D /* CAPI_GL_Util.dia */, 1594 | B119CD421AF1DC67004DE75D /* CAPI_GL_Util.o */, 1595 | B119CD431AF1DC67004DE75D /* CAPI_GLE.d */, 1596 | B119CD441AF1DC67004DE75D /* CAPI_GLE.dia */, 1597 | B119CD451AF1DC67004DE75D /* CAPI_GLE.o */, 1598 | B119CD461AF1DC67004DE75D /* CAPI_HMDRenderState.d */, 1599 | B119CD471AF1DC67004DE75D /* CAPI_HMDRenderState.dia */, 1600 | B119CD481AF1DC67004DE75D /* CAPI_HMDRenderState.o */, 1601 | B119CD491AF1DC67004DE75D /* CAPI_HMDState.d */, 1602 | B119CD4A1AF1DC67004DE75D /* CAPI_HMDState.dia */, 1603 | B119CD4B1AF1DC67004DE75D /* CAPI_HMDState.o */, 1604 | B119CD4C1AF1DC67004DE75D /* CAPI_HSWDisplay.d */, 1605 | B119CD4D1AF1DC67004DE75D /* CAPI_HSWDisplay.dia */, 1606 | B119CD4E1AF1DC67004DE75D /* CAPI_HSWDisplay.o */, 1607 | B119CD4F1AF1DC67004DE75D /* CAPI_LatencyStatistics.d */, 1608 | B119CD501AF1DC67004DE75D /* CAPI_LatencyStatistics.dia */, 1609 | B119CD511AF1DC67004DE75D /* CAPI_LatencyStatistics.o */, 1610 | B119CD521AF1DC67004DE75D /* libovr.a */, 1611 | B119CD531AF1DC67004DE75D /* libovr.LinkFileList */, 1612 | B119CD541AF1DC67004DE75D /* OVR_Alg.d */, 1613 | B119CD551AF1DC67004DE75D /* OVR_Alg.dia */, 1614 | B119CD561AF1DC67004DE75D /* OVR_Alg.o */, 1615 | B119CD571AF1DC67004DE75D /* OVR_Allocator.d */, 1616 | B119CD581AF1DC67004DE75D /* OVR_Allocator.dia */, 1617 | B119CD591AF1DC67004DE75D /* OVR_Allocator.o */, 1618 | B119CD5A1AF1DC67004DE75D /* OVR_Atomic.d */, 1619 | B119CD5B1AF1DC67004DE75D /* OVR_Atomic.dia */, 1620 | B119CD5C1AF1DC67004DE75D /* OVR_Atomic.o */, 1621 | B119CD5D1AF1DC67004DE75D /* OVR_BitStream.d */, 1622 | B119CD5E1AF1DC67004DE75D /* OVR_BitStream.dia */, 1623 | B119CD5F1AF1DC67004DE75D /* OVR_BitStream.o */, 1624 | B119CD601AF1DC67004DE75D /* OVR_CAPI.d */, 1625 | B119CD611AF1DC67004DE75D /* OVR_CAPI.dia */, 1626 | B119CD621AF1DC67004DE75D /* OVR_CAPI.o */, 1627 | B119CD631AF1DC67004DE75D /* OVR_CRC32.d */, 1628 | B119CD641AF1DC67004DE75D /* OVR_CRC32.dia */, 1629 | B119CD651AF1DC67004DE75D /* OVR_CRC32.o */, 1630 | B119CD661AF1DC67004DE75D /* OVR_DebugHelp.d */, 1631 | B119CD671AF1DC67004DE75D /* OVR_DebugHelp.dia */, 1632 | B119CD681AF1DC67004DE75D /* OVR_DebugHelp.o */, 1633 | B119CD691AF1DC67004DE75D /* OVR_File.d */, 1634 | B119CD6A1AF1DC67004DE75D /* OVR_File.dia */, 1635 | B119CD6B1AF1DC67004DE75D /* OVR_File.o */, 1636 | B119CD6C1AF1DC67004DE75D /* OVR_FileFILE.d */, 1637 | B119CD6D1AF1DC67004DE75D /* OVR_FileFILE.dia */, 1638 | B119CD6E1AF1DC67004DE75D /* OVR_FileFILE.o */, 1639 | B119CD6F1AF1DC67004DE75D /* OVR_JSON.d */, 1640 | B119CD701AF1DC67004DE75D /* OVR_JSON.dia */, 1641 | B119CD711AF1DC67004DE75D /* OVR_JSON.o */, 1642 | B119CD721AF1DC67004DE75D /* OVR_Lockless.d */, 1643 | B119CD731AF1DC67004DE75D /* OVR_Lockless.dia */, 1644 | B119CD741AF1DC67004DE75D /* OVR_Lockless.o */, 1645 | B119CD751AF1DC67004DE75D /* OVR_Log.d */, 1646 | B119CD761AF1DC67004DE75D /* OVR_Log.dia */, 1647 | B119CD771AF1DC67004DE75D /* OVR_Log.o */, 1648 | B119CD781AF1DC67004DE75D /* OVR_mach_exc_OSX.d */, 1649 | B119CD791AF1DC67004DE75D /* OVR_mach_exc_OSX.dia */, 1650 | B119CD7A1AF1DC67004DE75D /* OVR_mach_exc_OSX.o */, 1651 | B119CD7B1AF1DC67004DE75D /* OVR_Math.d */, 1652 | B119CD7C1AF1DC67004DE75D /* OVR_Math.dia */, 1653 | B119CD7D1AF1DC67004DE75D /* OVR_Math.o */, 1654 | B119CD7E1AF1DC67004DE75D /* OVR_NetworkPlugin.d */, 1655 | B119CD7F1AF1DC67004DE75D /* OVR_NetworkPlugin.dia */, 1656 | B119CD801AF1DC67004DE75D /* OVR_NetworkPlugin.o */, 1657 | B119CD811AF1DC67004DE75D /* OVR_OSX_Display.d */, 1658 | B119CD821AF1DC67004DE75D /* OVR_OSX_Display.dia */, 1659 | B119CD831AF1DC67004DE75D /* OVR_OSX_Display.o */, 1660 | B119CD841AF1DC68004DE75D /* OVR_PacketizedTCPSocket.d */, 1661 | B119CD851AF1DC68004DE75D /* OVR_PacketizedTCPSocket.dia */, 1662 | B119CD861AF1DC68004DE75D /* OVR_PacketizedTCPSocket.o */, 1663 | B119CD871AF1DC68004DE75D /* OVR_Profile.d */, 1664 | B119CD881AF1DC68004DE75D /* OVR_Profile.dia */, 1665 | B119CD891AF1DC68004DE75D /* OVR_Profile.o */, 1666 | B119CD8A1AF1DC68004DE75D /* OVR_RefCount.d */, 1667 | B119CD8B1AF1DC68004DE75D /* OVR_RefCount.dia */, 1668 | B119CD8C1AF1DC68004DE75D /* OVR_RefCount.o */, 1669 | B119CD8D1AF1DC68004DE75D /* OVR_RPC1.d */, 1670 | B119CD8E1AF1DC68004DE75D /* OVR_RPC1.dia */, 1671 | B119CD8F1AF1DC68004DE75D /* OVR_RPC1.o */, 1672 | B119CD901AF1DC68004DE75D /* OVR_SerialFormat.d */, 1673 | B119CD911AF1DC68004DE75D /* OVR_SerialFormat.dia */, 1674 | B119CD921AF1DC68004DE75D /* OVR_SerialFormat.o */, 1675 | B119CD931AF1DC68004DE75D /* OVR_Session.d */, 1676 | B119CD941AF1DC68004DE75D /* OVR_Session.dia */, 1677 | B119CD951AF1DC68004DE75D /* OVR_Session.o */, 1678 | B119CD961AF1DC68004DE75D /* OVR_SharedMemory.d */, 1679 | B119CD971AF1DC68004DE75D /* OVR_SharedMemory.dia */, 1680 | B119CD981AF1DC68004DE75D /* OVR_SharedMemory.o */, 1681 | B119CD991AF1DC68004DE75D /* OVR_Socket.d */, 1682 | B119CD9A1AF1DC68004DE75D /* OVR_Socket.dia */, 1683 | B119CD9B1AF1DC68004DE75D /* OVR_Socket.o */, 1684 | B119CD9C1AF1DC68004DE75D /* OVR_Std.d */, 1685 | B119CD9D1AF1DC68004DE75D /* OVR_Std.dia */, 1686 | B119CD9E1AF1DC68004DE75D /* OVR_Std.o */, 1687 | B119CD9F1AF1DC68004DE75D /* OVR_Stereo.d */, 1688 | B119CDA01AF1DC68004DE75D /* OVR_Stereo.dia */, 1689 | B119CDA11AF1DC68004DE75D /* OVR_Stereo.o */, 1690 | B119CDA21AF1DC68004DE75D /* OVR_String.d */, 1691 | B119CDA31AF1DC68004DE75D /* OVR_String.dia */, 1692 | B119CDA41AF1DC68004DE75D /* OVR_String.o */, 1693 | B119CDA51AF1DC68004DE75D /* OVR_String_FormatUtil.d */, 1694 | B119CDA61AF1DC68004DE75D /* OVR_String_FormatUtil.dia */, 1695 | B119CDA71AF1DC68004DE75D /* OVR_String_FormatUtil.o */, 1696 | B119CDA81AF1DC68004DE75D /* OVR_String_PathUtil.d */, 1697 | B119CDA91AF1DC68004DE75D /* OVR_String_PathUtil.dia */, 1698 | B119CDAA1AF1DC68004DE75D /* OVR_String_PathUtil.o */, 1699 | B119CDAB1AF1DC68004DE75D /* OVR_SysFile.d */, 1700 | B119CDAC1AF1DC68004DE75D /* OVR_SysFile.dia */, 1701 | B119CDAD1AF1DC68004DE75D /* OVR_SysFile.o */, 1702 | B119CDAE1AF1DC68004DE75D /* OVR_System.d */, 1703 | B119CDAF1AF1DC68004DE75D /* OVR_System.dia */, 1704 | B119CDB01AF1DC68004DE75D /* OVR_System.o */, 1705 | B119CDB11AF1DC68004DE75D /* OVR_ThreadCommandQueue.d */, 1706 | B119CDB21AF1DC68004DE75D /* OVR_ThreadCommandQueue.dia */, 1707 | B119CDB31AF1DC68004DE75D /* OVR_ThreadCommandQueue.o */, 1708 | B119CDB41AF1DC68004DE75D /* OVR_ThreadsPthread.d */, 1709 | B119CDB51AF1DC68004DE75D /* OVR_ThreadsPthread.dia */, 1710 | B119CDB61AF1DC68004DE75D /* OVR_ThreadsPthread.o */, 1711 | B119CDB71AF1DC68004DE75D /* OVR_Timer.d */, 1712 | B119CDB81AF1DC68004DE75D /* OVR_Timer.dia */, 1713 | B119CDB91AF1DC68004DE75D /* OVR_Timer.o */, 1714 | B119CDBA1AF1DC68004DE75D /* OVR_Unix_Socket.d */, 1715 | B119CDBB1AF1DC68004DE75D /* OVR_Unix_Socket.dia */, 1716 | B119CDBC1AF1DC68004DE75D /* OVR_Unix_Socket.o */, 1717 | B119CDBD1AF1DC68004DE75D /* OVR_UTF8Util.d */, 1718 | B119CDBE1AF1DC68004DE75D /* OVR_UTF8Util.dia */, 1719 | B119CDBF1AF1DC68004DE75D /* OVR_UTF8Util.o */, 1720 | B119CDC01AF1DC68004DE75D /* Service_NetClient.d */, 1721 | B119CDC11AF1DC68004DE75D /* Service_NetClient.dia */, 1722 | B119CDC21AF1DC68004DE75D /* Service_NetClient.o */, 1723 | B119CDC31AF1DC68004DE75D /* Service_NetSessionCommon.d */, 1724 | B119CDC41AF1DC68004DE75D /* Service_NetSessionCommon.dia */, 1725 | B119CDC51AF1DC68004DE75D /* Service_NetSessionCommon.o */, 1726 | B119CDC61AF1DC68004DE75D /* Tracking_SensorStateReader.d */, 1727 | B119CDC71AF1DC68004DE75D /* Tracking_SensorStateReader.dia */, 1728 | B119CDC81AF1DC68004DE75D /* Tracking_SensorStateReader.o */, 1729 | B119CDC91AF1DC68004DE75D /* Util_Interface.d */, 1730 | B119CDCA1AF1DC68004DE75D /* Util_Interface.dia */, 1731 | B119CDCB1AF1DC68004DE75D /* Util_Interface.o */, 1732 | B119CDCC1AF1DC68004DE75D /* Util_LatencyTest2Reader.d */, 1733 | B119CDCD1AF1DC68004DE75D /* Util_LatencyTest2Reader.dia */, 1734 | B119CDCE1AF1DC68004DE75D /* Util_LatencyTest2Reader.o */, 1735 | B119CDCF1AF1DC68004DE75D /* Util_Render_Stereo.d */, 1736 | B119CDD01AF1DC68004DE75D /* Util_Render_Stereo.dia */, 1737 | B119CDD11AF1DC68004DE75D /* Util_Render_Stereo.o */, 1738 | B119CDD21AF1DC68004DE75D /* Util_SystemGUI.d */, 1739 | B119CDD31AF1DC68004DE75D /* Util_SystemGUI.dia */, 1740 | B119CDD41AF1DC68004DE75D /* Util_SystemGUI.o */, 1741 | B119CDD51AF1DC68004DE75D /* Util_SystemGUI_OSX.d */, 1742 | B119CDD61AF1DC68004DE75D /* Util_SystemGUI_OSX.dia */, 1743 | B119CDD71AF1DC68004DE75D /* Util_SystemGUI_OSX.o */, 1744 | B119CDD81AF1DC68004DE75D /* Util_SystemInfo.d */, 1745 | B119CDD91AF1DC68004DE75D /* Util_SystemInfo.dia */, 1746 | B119CDDA1AF1DC68004DE75D /* Util_SystemInfo.o */, 1747 | B119CDDB1AF1DC68004DE75D /* Util_SystemInfo_OSX.d */, 1748 | B119CDDC1AF1DC68004DE75D /* Util_SystemInfo_OSX.dia */, 1749 | B119CDDD1AF1DC68004DE75D /* Util_SystemInfo_OSX.o */, 1750 | ); 1751 | path = x86_64; 1752 | sourceTree = ""; 1753 | }; 1754 | B119CDDE1AF1DC68004DE75D /* Projects */ = { 1755 | isa = PBXGroup; 1756 | children = ( 1757 | B119CDDF1AF1DC68004DE75D /* Mac */, 1758 | ); 1759 | path = Projects; 1760 | sourceTree = ""; 1761 | }; 1762 | B119CDDF1AF1DC68004DE75D /* Mac */ = { 1763 | isa = PBXGroup; 1764 | children = ( 1765 | B119CDE01AF1DC68004DE75D /* Xcode */, 1766 | ); 1767 | path = Mac; 1768 | sourceTree = ""; 1769 | }; 1770 | B119CDE01AF1DC68004DE75D /* Xcode */ = { 1771 | isa = PBXGroup; 1772 | children = ( 1773 | B119CDE11AF1DC68004DE75D /* LibOVR.xcodeproj */, 1774 | ); 1775 | path = Xcode; 1776 | sourceTree = ""; 1777 | }; 1778 | B119CDE21AF1DC68004DE75D /* Products */ = { 1779 | isa = PBXGroup; 1780 | children = ( 1781 | B119CE7C1AF1DC68004DE75D /* libovr.a */, 1782 | ); 1783 | name = Products; 1784 | sourceTree = ""; 1785 | }; 1786 | B119CDE41AF1DC68004DE75D /* Src */ = { 1787 | isa = PBXGroup; 1788 | children = ( 1789 | B119CDE51AF1DC68004DE75D /* CAPI */, 1790 | B119CDFF1AF1DC68004DE75D /* Displays */, 1791 | B119CE081AF1DC68004DE75D /* Kernel */, 1792 | B119CE411AF1DC68004DE75D /* Net */, 1793 | B119CE521AF1DC68004DE75D /* OVR_CAPI.cpp */, 1794 | B119CE531AF1DC68004DE75D /* OVR_CAPI.h */, 1795 | B119CE541AF1DC68004DE75D /* OVR_CAPI_GL.h */, 1796 | B119CE551AF1DC68004DE75D /* OVR_CAPI_Keys.h */, 1797 | B119CE561AF1DC68004DE75D /* OVR_JSON.cpp */, 1798 | B119CE571AF1DC68004DE75D /* OVR_JSON.h */, 1799 | B119CE581AF1DC68004DE75D /* OVR_Profile.cpp */, 1800 | B119CE591AF1DC68004DE75D /* OVR_Profile.h */, 1801 | B119CE5A1AF1DC68004DE75D /* OVR_SerialFormat.cpp */, 1802 | B119CE5B1AF1DC68004DE75D /* OVR_SerialFormat.h */, 1803 | B119CE5C1AF1DC68004DE75D /* OVR_Stereo.cpp */, 1804 | B119CE5D1AF1DC68004DE75D /* OVR_Stereo.h */, 1805 | B119CE5E1AF1DC68004DE75D /* Sensors */, 1806 | B119CE601AF1DC68004DE75D /* Service */, 1807 | B119CE651AF1DC68004DE75D /* Tracking */, 1808 | B119CE6A1AF1DC68004DE75D /* Util */, 1809 | ); 1810 | path = Src; 1811 | sourceTree = ""; 1812 | }; 1813 | B119CDE51AF1DC68004DE75D /* CAPI */ = { 1814 | isa = PBXGroup; 1815 | children = ( 1816 | B119CDE61AF1DC68004DE75D /* CAPI_DistortionRenderer.cpp */, 1817 | B119CDE71AF1DC68004DE75D /* CAPI_DistortionRenderer.h */, 1818 | B119CDE81AF1DC68004DE75D /* CAPI_FrameTimeManager.cpp */, 1819 | B119CDE91AF1DC68004DE75D /* CAPI_FrameTimeManager.h */, 1820 | B119CDEA1AF1DC68004DE75D /* CAPI_HMDRenderState.cpp */, 1821 | B119CDEB1AF1DC68004DE75D /* CAPI_HMDRenderState.h */, 1822 | B119CDEC1AF1DC68004DE75D /* CAPI_HMDState.cpp */, 1823 | B119CDED1AF1DC68004DE75D /* CAPI_HMDState.h */, 1824 | B119CDEE1AF1DC68004DE75D /* CAPI_HSWDisplay.cpp */, 1825 | B119CDEF1AF1DC68004DE75D /* CAPI_HSWDisplay.h */, 1826 | B119CDF01AF1DC68004DE75D /* CAPI_LatencyStatistics.cpp */, 1827 | B119CDF11AF1DC68004DE75D /* CAPI_LatencyStatistics.h */, 1828 | B119CDF21AF1DC68004DE75D /* GL */, 1829 | B119CDFD1AF1DC68004DE75D /* Textures */, 1830 | ); 1831 | path = CAPI; 1832 | sourceTree = ""; 1833 | }; 1834 | B119CDF21AF1DC68004DE75D /* GL */ = { 1835 | isa = PBXGroup; 1836 | children = ( 1837 | B119CDF31AF1DC68004DE75D /* CAPI_GL_DistortionRenderer.cpp */, 1838 | B119CDF41AF1DC68004DE75D /* CAPI_GL_DistortionRenderer.h */, 1839 | B119CDF51AF1DC68004DE75D /* CAPI_GL_DistortionShaders.h */, 1840 | B119CDF61AF1DC68004DE75D /* CAPI_GL_HSWDisplay.cpp */, 1841 | B119CDF71AF1DC68004DE75D /* CAPI_GL_HSWDisplay.h */, 1842 | B119CDF81AF1DC68004DE75D /* CAPI_GL_Util.cpp */, 1843 | B119CDF91AF1DC68004DE75D /* CAPI_GL_Util.h */, 1844 | B119CDFA1AF1DC68004DE75D /* CAPI_GLE.cpp */, 1845 | B119CDFB1AF1DC68004DE75D /* CAPI_GLE.h */, 1846 | B119CDFC1AF1DC68004DE75D /* CAPI_GLE_GL.h */, 1847 | ); 1848 | path = GL; 1849 | sourceTree = ""; 1850 | }; 1851 | B119CDFD1AF1DC68004DE75D /* Textures */ = { 1852 | isa = PBXGroup; 1853 | children = ( 1854 | B119CDFE1AF1DC68004DE75D /* healthAndSafety.tga.h */, 1855 | ); 1856 | path = Textures; 1857 | sourceTree = ""; 1858 | }; 1859 | B119CDFF1AF1DC68004DE75D /* Displays */ = { 1860 | isa = PBXGroup; 1861 | children = ( 1862 | B119CE001AF1DC68004DE75D /* OVR_Display.cpp */, 1863 | B119CE011AF1DC68004DE75D /* OVR_Display.h */, 1864 | B119CE021AF1DC68004DE75D /* OVR_OSX_Display.cpp */, 1865 | B119CE031AF1DC68004DE75D /* OVR_OSX_Display.h */, 1866 | B119CE041AF1DC68004DE75D /* OVR_OSX_FocusObserver.h */, 1867 | B119CE051AF1DC68004DE75D /* OVR_OSX_FocusObserver.mm */, 1868 | B119CE061AF1DC68004DE75D /* OVR_OSX_FocusReader.h */, 1869 | B119CE071AF1DC68004DE75D /* OVR_OSX_FocusReader.mm */, 1870 | ); 1871 | path = Displays; 1872 | sourceTree = ""; 1873 | }; 1874 | B119CE081AF1DC68004DE75D /* Kernel */ = { 1875 | isa = PBXGroup; 1876 | children = ( 1877 | B119CE091AF1DC68004DE75D /* OVR_Alg.cpp */, 1878 | B119CE0A1AF1DC68004DE75D /* OVR_Alg.h */, 1879 | B119CE0B1AF1DC68004DE75D /* OVR_Allocator.cpp */, 1880 | B119CE0C1AF1DC68004DE75D /* OVR_Allocator.h */, 1881 | B119CE0D1AF1DC68004DE75D /* OVR_Array.h */, 1882 | B119CE0E1AF1DC68004DE75D /* OVR_Atomic.cpp */, 1883 | B119CE0F1AF1DC68004DE75D /* OVR_Atomic.h */, 1884 | B119CE101AF1DC68004DE75D /* OVR_Color.h */, 1885 | B119CE111AF1DC68004DE75D /* OVR_Compiler.h */, 1886 | B119CE121AF1DC68004DE75D /* OVR_ContainerAllocator.h */, 1887 | B119CE131AF1DC68004DE75D /* OVR_CRC32.cpp */, 1888 | B119CE141AF1DC68004DE75D /* OVR_CRC32.h */, 1889 | B119CE151AF1DC68004DE75D /* OVR_DebugHelp.cpp */, 1890 | B119CE161AF1DC68004DE75D /* OVR_DebugHelp.h */, 1891 | B119CE171AF1DC68004DE75D /* OVR_Delegates.h */, 1892 | B119CE181AF1DC68004DE75D /* OVR_Deque.h */, 1893 | B119CE191AF1DC68004DE75D /* OVR_File.cpp */, 1894 | B119CE1A1AF1DC68004DE75D /* OVR_File.h */, 1895 | B119CE1B1AF1DC68004DE75D /* OVR_FileFILE.cpp */, 1896 | B119CE1C1AF1DC68004DE75D /* OVR_Hash.h */, 1897 | B119CE1D1AF1DC68004DE75D /* OVR_KeyCodes.h */, 1898 | B119CE1E1AF1DC68004DE75D /* OVR_List.h */, 1899 | B119CE1F1AF1DC68004DE75D /* OVR_Lockless.cpp */, 1900 | B119CE201AF1DC68004DE75D /* OVR_Lockless.h */, 1901 | B119CE211AF1DC68004DE75D /* OVR_Log.cpp */, 1902 | B119CE221AF1DC68004DE75D /* OVR_Log.h */, 1903 | B119CE231AF1DC68004DE75D /* OVR_mach_exc_OSX.c */, 1904 | B119CE241AF1DC68004DE75D /* OVR_mach_exc_OSX.h */, 1905 | B119CE251AF1DC68004DE75D /* OVR_Math.cpp */, 1906 | B119CE261AF1DC68004DE75D /* OVR_Math.h */, 1907 | B119CE271AF1DC68004DE75D /* OVR_Nullptr.h */, 1908 | B119CE281AF1DC68004DE75D /* OVR_Observer.h */, 1909 | B119CE291AF1DC68004DE75D /* OVR_RefCount.cpp */, 1910 | B119CE2A1AF1DC68004DE75D /* OVR_RefCount.h */, 1911 | B119CE2B1AF1DC68004DE75D /* OVR_SharedMemory.cpp */, 1912 | B119CE2C1AF1DC68004DE75D /* OVR_SharedMemory.h */, 1913 | B119CE2D1AF1DC68004DE75D /* OVR_Std.cpp */, 1914 | B119CE2E1AF1DC68004DE75D /* OVR_Std.h */, 1915 | B119CE2F1AF1DC68004DE75D /* OVR_String.cpp */, 1916 | B119CE301AF1DC68004DE75D /* OVR_String.h */, 1917 | B119CE311AF1DC68004DE75D /* OVR_String_FormatUtil.cpp */, 1918 | B119CE321AF1DC68004DE75D /* OVR_String_PathUtil.cpp */, 1919 | B119CE331AF1DC68004DE75D /* OVR_StringHash.h */, 1920 | B119CE341AF1DC68004DE75D /* OVR_SysFile.cpp */, 1921 | B119CE351AF1DC68004DE75D /* OVR_SysFile.h */, 1922 | B119CE361AF1DC68004DE75D /* OVR_System.cpp */, 1923 | B119CE371AF1DC68004DE75D /* OVR_System.h */, 1924 | B119CE381AF1DC68004DE75D /* OVR_ThreadCommandQueue.cpp */, 1925 | B119CE391AF1DC68004DE75D /* OVR_ThreadCommandQueue.h */, 1926 | B119CE3A1AF1DC68004DE75D /* OVR_Threads.h */, 1927 | B119CE3B1AF1DC68004DE75D /* OVR_ThreadsPthread.cpp */, 1928 | B119CE3C1AF1DC68004DE75D /* OVR_Timer.cpp */, 1929 | B119CE3D1AF1DC68004DE75D /* OVR_Timer.h */, 1930 | B119CE3E1AF1DC68004DE75D /* OVR_Types.h */, 1931 | B119CE3F1AF1DC68004DE75D /* OVR_UTF8Util.cpp */, 1932 | B119CE401AF1DC68004DE75D /* OVR_UTF8Util.h */, 1933 | ); 1934 | path = Kernel; 1935 | sourceTree = ""; 1936 | }; 1937 | B119CE411AF1DC68004DE75D /* Net */ = { 1938 | isa = PBXGroup; 1939 | children = ( 1940 | B119CE421AF1DC68004DE75D /* OVR_BitStream.cpp */, 1941 | B119CE431AF1DC68004DE75D /* OVR_BitStream.h */, 1942 | B119CE441AF1DC68004DE75D /* OVR_MessageIDTypes.h */, 1943 | B119CE451AF1DC68004DE75D /* OVR_NetworkPlugin.cpp */, 1944 | B119CE461AF1DC68004DE75D /* OVR_NetworkPlugin.h */, 1945 | B119CE471AF1DC68004DE75D /* OVR_NetworkTypes.h */, 1946 | B119CE481AF1DC68004DE75D /* OVR_PacketizedTCPSocket.cpp */, 1947 | B119CE491AF1DC68004DE75D /* OVR_PacketizedTCPSocket.h */, 1948 | B119CE4A1AF1DC68004DE75D /* OVR_RPC1.cpp */, 1949 | B119CE4B1AF1DC68004DE75D /* OVR_RPC1.h */, 1950 | B119CE4C1AF1DC68004DE75D /* OVR_Session.cpp */, 1951 | B119CE4D1AF1DC68004DE75D /* OVR_Session.h */, 1952 | B119CE4E1AF1DC68004DE75D /* OVR_Socket.cpp */, 1953 | B119CE4F1AF1DC68004DE75D /* OVR_Socket.h */, 1954 | B119CE501AF1DC68004DE75D /* OVR_Unix_Socket.cpp */, 1955 | B119CE511AF1DC68004DE75D /* OVR_Unix_Socket.h */, 1956 | ); 1957 | path = Net; 1958 | sourceTree = ""; 1959 | }; 1960 | B119CE5E1AF1DC68004DE75D /* Sensors */ = { 1961 | isa = PBXGroup; 1962 | children = ( 1963 | B119CE5F1AF1DC68004DE75D /* OVR_DeviceConstants.h */, 1964 | ); 1965 | path = Sensors; 1966 | sourceTree = ""; 1967 | }; 1968 | B119CE601AF1DC68004DE75D /* Service */ = { 1969 | isa = PBXGroup; 1970 | children = ( 1971 | B119CE611AF1DC68004DE75D /* Service_NetClient.cpp */, 1972 | B119CE621AF1DC68004DE75D /* Service_NetClient.h */, 1973 | B119CE631AF1DC68004DE75D /* Service_NetSessionCommon.cpp */, 1974 | B119CE641AF1DC68004DE75D /* Service_NetSessionCommon.h */, 1975 | ); 1976 | path = Service; 1977 | sourceTree = ""; 1978 | }; 1979 | B119CE651AF1DC68004DE75D /* Tracking */ = { 1980 | isa = PBXGroup; 1981 | children = ( 1982 | B119CE661AF1DC68004DE75D /* Tracking_PoseState.h */, 1983 | B119CE671AF1DC68004DE75D /* Tracking_SensorState.h */, 1984 | B119CE681AF1DC68004DE75D /* Tracking_SensorStateReader.cpp */, 1985 | B119CE691AF1DC68004DE75D /* Tracking_SensorStateReader.h */, 1986 | ); 1987 | path = Tracking; 1988 | sourceTree = ""; 1989 | }; 1990 | B119CE6A1AF1DC68004DE75D /* Util */ = { 1991 | isa = PBXGroup; 1992 | children = ( 1993 | B119CE6B1AF1DC68004DE75D /* Util_ImageWindow.cpp */, 1994 | B119CE6C1AF1DC68004DE75D /* Util_ImageWindow.h */, 1995 | B119CE6D1AF1DC68004DE75D /* Util_Interface.cpp */, 1996 | B119CE6E1AF1DC68004DE75D /* Util_Interface.h */, 1997 | B119CE6F1AF1DC68004DE75D /* Util_LatencyTest2Reader.cpp */, 1998 | B119CE701AF1DC68004DE75D /* Util_LatencyTest2Reader.h */, 1999 | B119CE711AF1DC68004DE75D /* Util_LatencyTest2State.h */, 2000 | B119CE721AF1DC68004DE75D /* Util_Render_Stereo.cpp */, 2001 | B119CE731AF1DC68004DE75D /* Util_Render_Stereo.h */, 2002 | B119CE741AF1DC68004DE75D /* Util_SystemGUI.cpp */, 2003 | B119CE751AF1DC68004DE75D /* Util_SystemGUI.h */, 2004 | B119CE761AF1DC68004DE75D /* Util_SystemGUI_OSX.mm */, 2005 | B119CE771AF1DC68004DE75D /* Util_SystemInfo.cpp */, 2006 | B119CE781AF1DC68004DE75D /* Util_SystemInfo.h */, 2007 | B119CE791AF1DC68004DE75D /* Util_SystemInfo_OSX.mm */, 2008 | ); 2009 | path = Util; 2010 | sourceTree = ""; 2011 | }; 2012 | /* End PBXGroup section */ 2013 | 2014 | /* Begin PBXNativeTarget section */ 2015 | B119CAFC1AF1D964004DE75D /* Oculus Rift DK2 */ = { 2016 | isa = PBXNativeTarget; 2017 | buildConfigurationList = B119CB071AF1D964004DE75D /* Build configuration list for PBXNativeTarget "Oculus Rift DK2" */; 2018 | buildPhases = ( 2019 | B119CAF81AF1D964004DE75D /* Sources */, 2020 | B119CAF91AF1D964004DE75D /* Frameworks */, 2021 | B119CAFA1AF1D964004DE75D /* Resources */, 2022 | B119CAFB1AF1D964004DE75D /* Run Script */, 2023 | ); 2024 | buildRules = ( 2025 | ); 2026 | dependencies = ( 2027 | ); 2028 | name = "Oculus Rift DK2"; 2029 | productName = "Oculus Rift DK2"; 2030 | productReference = B119CAFD1AF1D964004DE75D /* Oculus Rift DK2.plugin */; 2031 | productType = "com.apple.product-type.bundle"; 2032 | }; 2033 | /* End PBXNativeTarget section */ 2034 | 2035 | /* Begin PBXProject section */ 2036 | B119CAF41AF1D964004DE75D /* Project object */ = { 2037 | isa = PBXProject; 2038 | attributes = { 2039 | LastUpgradeCheck = 0630; 2040 | ORGANIZATIONNAME = "Julius Tarng"; 2041 | TargetAttributes = { 2042 | B119CAFC1AF1D964004DE75D = { 2043 | CreatedOnToolsVersion = 6.3.1; 2044 | }; 2045 | }; 2046 | }; 2047 | buildConfigurationList = B119CAF71AF1D964004DE75D /* Build configuration list for PBXProject "Oculus Rift DK2" */; 2048 | compatibilityVersion = "Xcode 3.2"; 2049 | developmentRegion = English; 2050 | hasScannedForEncodings = 0; 2051 | knownRegions = ( 2052 | en, 2053 | ); 2054 | mainGroup = B119CAF31AF1D964004DE75D; 2055 | productRefGroup = B119CAFE1AF1D964004DE75D /* Products */; 2056 | projectDirPath = ""; 2057 | projectReferences = ( 2058 | { 2059 | ProductGroup = B119CDE21AF1DC68004DE75D /* Products */; 2060 | ProjectRef = B119CDE11AF1DC68004DE75D /* LibOVR.xcodeproj */; 2061 | }, 2062 | ); 2063 | projectRoot = ""; 2064 | targets = ( 2065 | B119CAFC1AF1D964004DE75D /* Oculus Rift DK2 */, 2066 | ); 2067 | }; 2068 | /* End PBXProject section */ 2069 | 2070 | /* Begin PBXReferenceProxy section */ 2071 | B119CE7C1AF1DC68004DE75D /* libovr.a */ = { 2072 | isa = PBXReferenceProxy; 2073 | fileType = archive.ar; 2074 | path = libovr.a; 2075 | remoteRef = B119CE7B1AF1DC68004DE75D /* PBXContainerItemProxy */; 2076 | sourceTree = BUILT_PRODUCTS_DIR; 2077 | }; 2078 | /* End PBXReferenceProxy section */ 2079 | 2080 | /* Begin PBXResourcesBuildPhase section */ 2081 | B119CAFA1AF1D964004DE75D /* Resources */ = { 2082 | isa = PBXResourcesBuildPhase; 2083 | buildActionMask = 2147483647; 2084 | files = ( 2085 | ); 2086 | runOnlyForDeploymentPostprocessing = 0; 2087 | }; 2088 | /* End PBXResourcesBuildPhase section */ 2089 | 2090 | /* Begin PBXShellScriptBuildPhase section */ 2091 | B119CAFB1AF1D964004DE75D /* Run Script */ = { 2092 | isa = PBXShellScriptBuildPhase; 2093 | buildActionMask = 2147483647; 2094 | files = ( 2095 | ); 2096 | inputPaths = ( 2097 | ); 2098 | name = "Run Script"; 2099 | outputPaths = ( 2100 | ); 2101 | runOnlyForDeploymentPostprocessing = 0; 2102 | shellPath = /bin/sh; 2103 | shellScript = "# This shell script simply copies the built plug-in to \"~/Library/Graphics/Quartz Composer Plug-Ins\" and overrides any previous version at that location\n\nmkdir -p \"$USER_LIBRARY_DIR/Graphics/Quartz Composer Plug-Ins\"\nrm -rf \"$USER_LIBRARY_DIR/Graphics/Quartz Composer Plug-Ins/Oculus Rift DK2.plugin\"\ncp -rf \"$BUILT_PRODUCTS_DIR/Oculus Rift DK2.plugin\" \"$USER_LIBRARY_DIR/Graphics/Quartz Composer Plug-Ins/\"\n"; 2104 | }; 2105 | /* End PBXShellScriptBuildPhase section */ 2106 | 2107 | /* Begin PBXSourcesBuildPhase section */ 2108 | B119CAF81AF1D964004DE75D /* Sources */ = { 2109 | isa = PBXSourcesBuildPhase; 2110 | buildActionMask = 2147483647; 2111 | files = ( 2112 | B119CB041AF1D964004DE75D /* Oculus_Rift_DK2PlugIn.mm in Sources */, 2113 | ); 2114 | runOnlyForDeploymentPostprocessing = 0; 2115 | }; 2116 | /* End PBXSourcesBuildPhase section */ 2117 | 2118 | /* Begin XCBuildConfiguration section */ 2119 | B119CB051AF1D964004DE75D /* Debug */ = { 2120 | isa = XCBuildConfiguration; 2121 | buildSettings = { 2122 | ALWAYS_SEARCH_USER_PATHS = NO; 2123 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 2124 | CLANG_CXX_LIBRARY = "libc++"; 2125 | CLANG_ENABLE_MODULES = YES; 2126 | CLANG_ENABLE_OBJC_ARC = YES; 2127 | CLANG_WARN_BOOL_CONVERSION = YES; 2128 | CLANG_WARN_CONSTANT_CONVERSION = YES; 2129 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 2130 | CLANG_WARN_EMPTY_BODY = YES; 2131 | CLANG_WARN_ENUM_CONVERSION = YES; 2132 | CLANG_WARN_INT_CONVERSION = YES; 2133 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 2134 | CLANG_WARN_UNREACHABLE_CODE = YES; 2135 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 2136 | COPY_PHASE_STRIP = NO; 2137 | DEBUG_INFORMATION_FORMAT = dwarf; 2138 | ENABLE_STRICT_OBJC_MSGSEND = YES; 2139 | GCC_C_LANGUAGE_STANDARD = gnu99; 2140 | GCC_DYNAMIC_NO_PIC = NO; 2141 | GCC_NO_COMMON_BLOCKS = YES; 2142 | GCC_OPTIMIZATION_LEVEL = 0; 2143 | GCC_PREPROCESSOR_DEFINITIONS = ( 2144 | "DEBUG=1", 2145 | "$(inherited)", 2146 | ); 2147 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 2148 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 2149 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 2150 | GCC_WARN_UNDECLARED_SELECTOR = YES; 2151 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 2152 | GCC_WARN_UNUSED_FUNCTION = YES; 2153 | GCC_WARN_UNUSED_VARIABLE = YES; 2154 | MACOSX_DEPLOYMENT_TARGET = 10.10; 2155 | MTL_ENABLE_DEBUG_INFO = YES; 2156 | ONLY_ACTIVE_ARCH = YES; 2157 | SDKROOT = macosx; 2158 | }; 2159 | name = Debug; 2160 | }; 2161 | B119CB061AF1D964004DE75D /* Release */ = { 2162 | isa = XCBuildConfiguration; 2163 | buildSettings = { 2164 | ALWAYS_SEARCH_USER_PATHS = NO; 2165 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 2166 | CLANG_CXX_LIBRARY = "libc++"; 2167 | CLANG_ENABLE_MODULES = YES; 2168 | CLANG_ENABLE_OBJC_ARC = YES; 2169 | CLANG_WARN_BOOL_CONVERSION = YES; 2170 | CLANG_WARN_CONSTANT_CONVERSION = YES; 2171 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 2172 | CLANG_WARN_EMPTY_BODY = YES; 2173 | CLANG_WARN_ENUM_CONVERSION = YES; 2174 | CLANG_WARN_INT_CONVERSION = YES; 2175 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 2176 | CLANG_WARN_UNREACHABLE_CODE = YES; 2177 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 2178 | COPY_PHASE_STRIP = NO; 2179 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 2180 | ENABLE_NS_ASSERTIONS = NO; 2181 | ENABLE_STRICT_OBJC_MSGSEND = YES; 2182 | GCC_C_LANGUAGE_STANDARD = gnu99; 2183 | GCC_NO_COMMON_BLOCKS = YES; 2184 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 2185 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 2186 | GCC_WARN_UNDECLARED_SELECTOR = YES; 2187 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 2188 | GCC_WARN_UNUSED_FUNCTION = YES; 2189 | GCC_WARN_UNUSED_VARIABLE = YES; 2190 | MACOSX_DEPLOYMENT_TARGET = 10.10; 2191 | MTL_ENABLE_DEBUG_INFO = NO; 2192 | SDKROOT = macosx; 2193 | }; 2194 | name = Release; 2195 | }; 2196 | B119CB081AF1D964004DE75D /* Debug */ = { 2197 | isa = XCBuildConfiguration; 2198 | buildSettings = { 2199 | COMBINE_HIDPI_IMAGES = YES; 2200 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 2201 | HEADER_SEARCH_PATHS = ( 2202 | "$(inherited)", 2203 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 2204 | "$(SYSTEM_APPS_DIR)/Oculus/SDK/LibOVR/Src", 2205 | "$(SYSTEM_APPS_DIR)/Oculus/SDK/LibOVR/Include", 2206 | ); 2207 | INFOPLIST_FILE = "Oculus Rift DK2/Info.plist"; 2208 | INSTALL_PATH = "$(HOME)/Library/Graphics/Quartz Composer Plug-Ins"; 2209 | LIBRARY_SEARCH_PATHS = ( 2210 | "$(inherited)", 2211 | "$(SYSTEM_APPS_DIR)/Oculus/SDK/LibOVR/Lib/Mac/Debug", 2212 | ); 2213 | PRODUCT_NAME = "$(TARGET_NAME)"; 2214 | WRAPPER_EXTENSION = plugin; 2215 | }; 2216 | name = Debug; 2217 | }; 2218 | B119CB091AF1D964004DE75D /* Release */ = { 2219 | isa = XCBuildConfiguration; 2220 | buildSettings = { 2221 | COMBINE_HIDPI_IMAGES = YES; 2222 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 2223 | HEADER_SEARCH_PATHS = ( 2224 | "$(inherited)", 2225 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 2226 | "$(SYSTEM_APPS_DIR)/Oculus/SDK/LibOVR/Src", 2227 | "$(SYSTEM_APPS_DIR)/Oculus/SDK/LibOVR/Include", 2228 | ); 2229 | INFOPLIST_FILE = "Oculus Rift DK2/Info.plist"; 2230 | INSTALL_PATH = "$(HOME)/Library/Graphics/Quartz Composer Plug-Ins"; 2231 | LIBRARY_SEARCH_PATHS = ( 2232 | "$(inherited)", 2233 | "$(SYSTEM_APPS_DIR)/Oculus/SDK/LibOVR/Lib/Mac/Release", 2234 | ); 2235 | PRODUCT_NAME = "$(TARGET_NAME)"; 2236 | WRAPPER_EXTENSION = plugin; 2237 | }; 2238 | name = Release; 2239 | }; 2240 | /* End XCBuildConfiguration section */ 2241 | 2242 | /* Begin XCConfigurationList section */ 2243 | B119CAF71AF1D964004DE75D /* Build configuration list for PBXProject "Oculus Rift DK2" */ = { 2244 | isa = XCConfigurationList; 2245 | buildConfigurations = ( 2246 | B119CB051AF1D964004DE75D /* Debug */, 2247 | B119CB061AF1D964004DE75D /* Release */, 2248 | ); 2249 | defaultConfigurationIsVisible = 0; 2250 | defaultConfigurationName = Release; 2251 | }; 2252 | B119CB071AF1D964004DE75D /* Build configuration list for PBXNativeTarget "Oculus Rift DK2" */ = { 2253 | isa = XCConfigurationList; 2254 | buildConfigurations = ( 2255 | B119CB081AF1D964004DE75D /* Debug */, 2256 | B119CB091AF1D964004DE75D /* Release */, 2257 | ); 2258 | defaultConfigurationIsVisible = 0; 2259 | defaultConfigurationName = Release; 2260 | }; 2261 | /* End XCConfigurationList section */ 2262 | }; 2263 | rootObject = B119CAF41AF1D964004DE75D /* Project object */; 2264 | } 2265 | --------------------------------------------------------------------------------