From 74e6e18d3e449a8ff15adc1e12c1fb0d60ba040b Mon Sep 17 00:00:00 2001 From: Alex Hirzel Date: Sun, 28 Jun 2020 22:48:14 -0400 Subject: [PATCH] add support for GPX.jl --- src/registry.jl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/registry.jl b/src/registry.jl index d18fe1e3..edddd527 100644 --- a/src/registry.jl +++ b/src/registry.jl @@ -148,9 +148,6 @@ add_loader(format"ZIP", :ZipeFile) add_saver(format"ZIP", :ZipeFile) =# -#Shader files -# add_format(format"GLSLShader", (), [".frag", ".vert", ".geom", ".comp"], [:GLAbstraction]) - # Mesh formats add_format(format"OBJ", (), ".obj", [idMeshIO]) add_format(format"PLY_ASCII", "ply\nformat ascii 1.0", ".ply", [idMeshIO]) @@ -380,3 +377,5 @@ add_format(format"vega", (), [".vega"], [:Vega => UUID("239c3e63-733f-47ad-beb7- add_format(format"FCS", "FCS", [".fcs"], [:FCSFiles => UUID("d76558cf-badf-52d4-a17e-381ab0b0d937")]) add_format(format"HTML", (), [".html", ".htm"], [MimeWriter, SAVE]) + +add_format(format"GPX", (), [".gpx"], [:GPX=>UUID("b55ef746-885f-40a4-ab22-c8118be08013"), LOAD])