Skip to content

Commit

Permalink
跟踪阴影质量问题,发现是tinyobj不同的解析导致的
Browse files Browse the repository at this point in the history
  • Loading branch information
luxiaodong committed Sep 28, 2022
1 parent 0b68731 commit ccb4246
Show file tree
Hide file tree
Showing 32 changed files with 14,664 additions and 11 deletions.
20 changes: 20 additions & 0 deletions Vulkan/Vulkan_Sample/Vulkan.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@
B0B5D119288E9CE0003A175D /* skin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0B5D118288E9CE0003A175D /* skin.cpp */; };
B0B5D11D288F8C1D003A175D /* animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0B5D11C288F8C1D003A175D /* animation.cpp */; };
B0B5D1222890D870003A175D /* gltfscenerendering.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0B5D1212890D86F003A175D /* gltfscenerendering.cpp */; };
B0E1307828E1AA5300DF2FC1 /* objLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0E1307628E1AA5300DF2FC1 /* objLoader.cpp */; };
B0E1308228E2914000DF2FC1 /* shadowquality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0E1308128E2914000DF2FC1 /* shadowquality.cpp */; };
B0E13A1C2861729300D1D2B6 /* triangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0E13A1B2861729300D1D2B6 /* triangle.cpp */; };
/* End PBXBuildFile section */

Expand Down Expand Up @@ -293,6 +295,10 @@
B0B5D11C288F8C1D003A175D /* animation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = animation.cpp; sourceTree = "<group>"; };
B0B5D1202890D86F003A175D /* gltfscenerendering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gltfscenerendering.h; sourceTree = "<group>"; };
B0B5D1212890D86F003A175D /* gltfscenerendering.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gltfscenerendering.cpp; sourceTree = "<group>"; };
B0E1307628E1AA5300DF2FC1 /* objLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = objLoader.cpp; sourceTree = "<group>"; };
B0E1307728E1AA5300DF2FC1 /* objLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objLoader.h; sourceTree = "<group>"; };
B0E1308028E2914000DF2FC1 /* shadowquality.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shadowquality.h; sourceTree = "<group>"; };
B0E1308128E2914000DF2FC1 /* shadowquality.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shadowquality.cpp; sourceTree = "<group>"; };
B0E13A1A2861729300D1D2B6 /* triangle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = triangle.h; sourceTree = "<group>"; };
B0E13A1B2861729300D1D2B6 /* triangle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = triangle.cpp; sourceTree = "<group>"; };
/* End PBXFileReference section */
Expand Down Expand Up @@ -722,6 +728,8 @@
B0B5D117288E9CE0003A175D /* skin.h */,
B0B5D09E287944F6003A175D /* mesh.cpp */,
B0B5D09D287944F6003A175D /* mesh.h */,
B0E1307628E1AA5300DF2FC1 /* objLoader.cpp */,
B0E1307728E1AA5300DF2FC1 /* objLoader.h */,
B0B5D099287920AD003A175D /* gltfNode.cpp */,
B0B5D09A287920AD003A175D /* gltfNode.h */,
B0B5D02A28753328003A175D /* gltfLoader.cpp */,
Expand Down Expand Up @@ -925,9 +933,19 @@
path = gltfscenerendering;
sourceTree = "<group>";
};
B0E1307F28E2914000DF2FC1 /* shadowquality */ = {
isa = PBXGroup;
children = (
B0E1308028E2914000DF2FC1 /* shadowquality.h */,
B0E1308128E2914000DF2FC1 /* shadowquality.cpp */,
);
path = shadowquality;
sourceTree = "<group>";
};
B0E13A182861729300D1D2B6 /* sample */ = {
isa = PBXGroup;
children = (
B0E1307F28E2914000DF2FC1 /* shadowquality */,
B0272E7028D1BD68002D3602 /* sphericalenvmapping */,
B0272E6B28D1AE0B002D3602 /* parallaxmapping */,
B0272E6628D16CBF002D3602 /* bloom */,
Expand Down Expand Up @@ -1133,7 +1151,9 @@
B0B5D0212875293B003A175D /* tools.cpp in Sources */,
B0272E5128C88D04002D3602 /* textoverlay.cpp in Sources */,
B0B5D0F228864606003A175D /* subpasses.cpp in Sources */,
B0E1308228E2914000DF2FC1 /* shadowquality.cpp in Sources */,
B0B5D0A728794942003A175D /* primitive.cpp in Sources */,
B0E1307828E1AA5300DF2FC1 /* objLoader.cpp in Sources */,
B0B5D0AB2879863A003A175D /* material.cpp in Sources */,
B0B5D115288E85C0003A175D /* gltfskinning.cpp in Sources */,
B0272D6C28B47C3B002D3602 /* deferred.cpp in Sources */,
Expand Down
Loading

0 comments on commit ccb4246

Please sign in to comment.