Changeset 962
- Timestamp:
- Sep 19, 2011, 2:01:03 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/monsterz/ios/monsterz.xcodeproj/project.pbxproj
r943 r962 12 12 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; 13 13 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; 14 22494A9B1426BB2800128706 /* android-image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22494A961426BB2800128706 /* android-image.cpp */; }; 15 22494A9C1426BB2800128706 /* dummy-image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22494A971426BB2800128706 /* dummy-image.cpp */; }; 16 22494A9D1426BB2800128706 /* ios-image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22494A981426BB2800128706 /* ios-image.cpp */; }; 17 22494A9E1426BB2800128706 /* ps3-image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22494A991426BB2800128706 /* ps3-image.cpp */; }; 18 22494A9F1426BB2800128706 /* sdl-image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22494A9A1426BB2800128706 /* sdl-image.cpp */; }; 14 19 227C9D22141BB7560029A3F0 /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 227C9D20141BB7560029A3F0 /* image.cpp */; }; 15 20 227C9D25141BBA200029A3F0 /* gradient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 227C9D23141BBA200029A3F0 /* gradient.cpp */; }; … … 97 102 1D6058910D05DD3D006BFB54 /* Monsterz.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Monsterz.app; sourceTree = BUILT_PRODUCTS_DIR; }; 98 103 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 104 22494A961426BB2800128706 /* android-image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "android-image.cpp"; path = "../../src/image/codec/android-image.cpp"; sourceTree = "<group>"; }; 105 22494A971426BB2800128706 /* dummy-image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "dummy-image.cpp"; path = "../../src/image/codec/dummy-image.cpp"; sourceTree = "<group>"; }; 106 22494A981426BB2800128706 /* ios-image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "ios-image.cpp"; path = "../../src/image/codec/ios-image.cpp"; sourceTree = "<group>"; }; 107 22494A991426BB2800128706 /* ps3-image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "ps3-image.cpp"; path = "../../src/image/codec/ps3-image.cpp"; sourceTree = "<group>"; }; 108 22494A9A1426BB2800128706 /* sdl-image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "sdl-image.cpp"; path = "../../src/image/codec/sdl-image.cpp"; sourceTree = "<group>"; }; 109 22494AA01426BB8F00128706 /* image-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "image-private.h"; path = "../../src/image/image-private.h"; sourceTree = "<group>"; }; 99 110 227C9D20141BB7560029A3F0 /* image.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 4; name = image.cpp; path = ../../src/image/image.cpp; sourceTree = "<group>"; }; 100 111 227C9D21141BB7560029A3F0 /* image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = image.h; path = ../../src/image/image.h; sourceTree = "<group>"; }; … … 267 278 sourceTree = "<group>"; 268 279 }; 280 22494A941426BAFE00128706 /* codec */ = { 281 isa = PBXGroup; 282 children = ( 283 22494A961426BB2800128706 /* android-image.cpp */, 284 22494A971426BB2800128706 /* dummy-image.cpp */, 285 22494A981426BB2800128706 /* ios-image.cpp */, 286 22494A991426BB2800128706 /* ps3-image.cpp */, 287 22494A9A1426BB2800128706 /* sdl-image.cpp */, 288 ); 289 name = codec; 290 sourceTree = "<group>"; 291 }; 269 292 227C9D1F141BB72B0029A3F0 /* image */ = { 270 293 isa = PBXGroup; 271 294 children = ( 295 22494AA01426BB8F00128706 /* image-private.h */, 296 22494A941426BAFE00128706 /* codec */, 272 297 227C9D20141BB7560029A3F0 /* image.cpp */, 273 298 227C9D21141BB7560029A3F0 /* image.h */, … … 626 651 227C9D2B141BBA3C0029A3F0 /* sprite.cpp in Sources */, 627 652 227C9D2E141BBA4A0029A3F0 /* trig.cpp in Sources */, 653 22494A9B1426BB2800128706 /* android-image.cpp in Sources */, 654 22494A9C1426BB2800128706 /* dummy-image.cpp in Sources */, 655 22494A9D1426BB2800128706 /* ios-image.cpp in Sources */, 656 22494A9E1426BB2800128706 /* ps3-image.cpp in Sources */, 657 22494A9F1426BB2800128706 /* sdl-image.cpp in Sources */, 628 658 ); 629 659 runOnlyForDeploymentPostprocessing = 0; -
trunk/src/image/codec/android-image.cpp
r961 r962 21 21 22 22 #include "core.h" 23 #include " image/image-private.h"23 #include "../../image/image-private.h" 24 24 25 25 using namespace std; -
trunk/src/image/codec/dummy-image.cpp
r955 r962 16 16 17 17 #include "core.h" 18 #include " image/image-private.h"18 #include "../../image/image-private.h" 19 19 20 20 using namespace std; -
trunk/src/image/codec/ios-image.cpp
r961 r962 19 19 20 20 #include "core.h" 21 #include " image/image-private.h"21 #include "../../image/image-private.h" 22 22 23 23 using namespace std; -
trunk/src/image/codec/ps3-image.cpp
r961 r962 21 21 22 22 #include "core.h" 23 #include " image/image-private.h"23 #include "../../image/image-private.h" 24 24 25 25 using namespace std; -
trunk/src/image/codec/sdl-image.cpp
r956 r962 21 21 22 22 #include "core.h" 23 #include " image/image-private.h"23 #include "../../image/image-private.h" 24 24 25 25 using namespace std;
Note: See TracChangeset
for help on using the changeset viewer.