From d0e18bdb7924c71cdca8dd983711171d87ef28be Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Mon, 17 Jan 2022 23:12:32 -0500 Subject: glplanet, an OpenGL-based planetary renderer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit glplanet draws Earth like it currently appears from space, putting nighttime areas in shadow and daytime areas in light. It’s modeled after Xplanet (http://xplanet.sourceforge.net/), but whereas Xplanet is entirely a CPU-resident program, glplanet draws using OpenGL. It’s thus much less resource-intensive, particularly when using high-resolution textures. --- .gitmodules | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitmodules (limited to '.gitmodules') diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..401e1cf --- /dev/null +++ b/.gitmodules @@ -0,0 +1,9 @@ +[submodule "third_party/abseil"] + path = third_party/abseil + url = https://git.benjamin.barenblat.name/glplanet-abseil.git +[submodule "third_party/date"] + path = third_party/date + url = https://github.com/HowardHinnant/date.git +[submodule "third_party/glew"] + path = third_party/glew + url = https://github.com/Perlmint/glew-cmake.git -- cgit v1.2.3