Add shaders for marching squares
This commit is contained in:
parent
1699e3ae14
commit
b2f19dffbf
4 changed files with 80 additions and 9 deletions
|
@ -10,6 +10,9 @@
|
|||
C04CDEB221730A820018C4DA /* Rect.swift in Sources */ = {isa = PBXBuildFile; fileRef = C04CDEB121730A820018C4DA /* Rect.swift */; };
|
||||
C04CDEB321730A820018C4DA /* Rect.swift in Sources */ = {isa = PBXBuildFile; fileRef = C04CDEB121730A820018C4DA /* Rect.swift */; };
|
||||
C04CDEB421730A820018C4DA /* Rect.swift in Sources */ = {isa = PBXBuildFile; fileRef = C04CDEB121730A820018C4DA /* Rect.swift */; };
|
||||
C04CDEB62173ABD50018C4DA /* MarchingSquares.metal in Sources */ = {isa = PBXBuildFile; fileRef = C04CDEB52173ABD50018C4DA /* MarchingSquares.metal */; };
|
||||
C04CDEB72173ABD50018C4DA /* MarchingSquares.metal in Sources */ = {isa = PBXBuildFile; fileRef = C04CDEB52173ABD50018C4DA /* MarchingSquares.metal */; };
|
||||
C04CDEB82173ABD50018C4DA /* MarchingSquares.metal in Sources */ = {isa = PBXBuildFile; fileRef = C04CDEB52173ABD50018C4DA /* MarchingSquares.metal */; };
|
||||
C0ABCC411F50A560004A0290 /* ScreenSaver.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0ABCC401F50A560004A0290 /* ScreenSaver.framework */; };
|
||||
C0B906E91F455D1A00B5F89B /* MetaballsSaverView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0B906E81F455D1A00B5F89B /* MetaballsSaverView.swift */; };
|
||||
C0B906EA1F455EB300B5F89B /* MetalKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0BBE3A71F2E893A00E68524 /* MetalKit.framework */; };
|
||||
|
@ -78,6 +81,8 @@
|
|||
|
||||
/* Begin PBXFileReference section */
|
||||
C04CDEB121730A820018C4DA /* Rect.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Rect.swift; sourceTree = "<group>"; };
|
||||
C04CDEB52173ABD50018C4DA /* MarchingSquares.metal */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.metal; path = MarchingSquares.metal; sourceTree = "<group>"; };
|
||||
C04CDEB92173ABE50018C4DA /* ShaderTypes.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = ShaderTypes.hh; sourceTree = "<group>"; };
|
||||
C091616F1F3F5AE6009C4263 /* PreferencesViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreferencesViewController.swift; sourceTree = "<group>"; };
|
||||
C0ABCC401F50A560004A0290 /* ScreenSaver.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ScreenSaver.framework; path = System/Library/Frameworks/ScreenSaver.framework; sourceTree = SDKROOT; };
|
||||
C0B906D41F45432700B5F89B /* Preferences.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = "<group>"; };
|
||||
|
@ -211,6 +216,8 @@
|
|||
children = (
|
||||
C0BBE3A31F2E81C700E68524 /* Metaballs.swift */,
|
||||
C0FF7CC1217020820081B781 /* MarchingSquares.swift */,
|
||||
C04CDEB52173ABD50018C4DA /* MarchingSquares.metal */,
|
||||
C04CDEB92173ABE50018C4DA /* ShaderTypes.hh */,
|
||||
C0CE7BFF1F362C3F001516B6 /* Geometry.swift */,
|
||||
C0DF1D781F3789DC0038B0A0 /* Memory.swift */,
|
||||
C0FF7C9C216A6DE00081B781 /* Math.swift */,
|
||||
|
@ -442,6 +449,7 @@
|
|||
C0FF7C992168062C0081B781 /* Shaders.metal in Sources */,
|
||||
C0FF7C9A2168062C0081B781 /* Preferences.swift in Sources */,
|
||||
C0FF7C9E216A6DE00081B781 /* Math.swift in Sources */,
|
||||
C04CDEB82173ABD50018C4DA /* MarchingSquares.metal in Sources */,
|
||||
C0FF7CC3217020820081B781 /* MarchingSquares.swift in Sources */,
|
||||
C04CDEB421730A820018C4DA /* Rect.swift in Sources */,
|
||||
C0FF7C972168062C0081B781 /* Memory.swift in Sources */,
|
||||
|
@ -468,6 +476,7 @@
|
|||
C0FF7C932168062B0081B781 /* Preferences.swift in Sources */,
|
||||
C0BBE36B1F2E816500E68524 /* AppDelegate.swift in Sources */,
|
||||
C0FF7C9D216A6DE00081B781 /* Math.swift in Sources */,
|
||||
C04CDEB62173ABD50018C4DA /* MarchingSquares.metal in Sources */,
|
||||
C0FF7CC2217020820081B781 /* MarchingSquares.swift in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
|
@ -487,6 +496,7 @@
|
|||
C0FF7CBA216B002E0081B781 /* Shaders.metal in Sources */,
|
||||
C0FF7CB5216B002E0081B781 /* Metaballs.swift in Sources */,
|
||||
C0FF7CB6216B002E0081B781 /* Geometry.swift in Sources */,
|
||||
C04CDEB72173ABD50018C4DA /* MarchingSquares.metal in Sources */,
|
||||
C0FF7CB9216B002E0081B781 /* Renderer.swift in Sources */,
|
||||
C04CDEB321730A820018C4DA /* Rect.swift in Sources */,
|
||||
C0FF7CA8216AFD840081B781 /* ViewController.swift in Sources */,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue