├── .gitmodules ├── CMakeLists.txt ├── Htex.glsl ├── LICENSE ├── README.md ├── apps ├── aobaker │ ├── aobaker.cpp │ └── rank1.hpp ├── htxview │ ├── htxview.cpp │ └── shaders │ │ ├── ComputeHalfedgeNormals.glsl │ │ ├── Halfedge.glsl │ │ ├── Main.glsl │ │ ├── PreprocessCorners.glsl │ │ ├── PreprocessCornersFacePoints.glsl │ │ └── Viewer.glsl ├── ptx2htx │ ├── PtexMesh.cpp │ ├── PtexMesh.h │ ├── PtexToHalfedges.cpp │ ├── PtexToHalfedges.h │ └── ptx2htx.cpp └── uv2htx │ └── uv2htx.cpp └── common ├── glad ├── glad.c ├── glad.h └── khrplatform.h ├── imgui_impl.cpp └── imgui_impl.h /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Htex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/Htex.glsl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/README.md -------------------------------------------------------------------------------- /apps/aobaker/aobaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/aobaker/aobaker.cpp -------------------------------------------------------------------------------- /apps/aobaker/rank1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/aobaker/rank1.hpp -------------------------------------------------------------------------------- /apps/htxview/htxview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/htxview/htxview.cpp -------------------------------------------------------------------------------- /apps/htxview/shaders/ComputeHalfedgeNormals.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/htxview/shaders/ComputeHalfedgeNormals.glsl -------------------------------------------------------------------------------- /apps/htxview/shaders/Halfedge.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/htxview/shaders/Halfedge.glsl -------------------------------------------------------------------------------- /apps/htxview/shaders/Main.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/htxview/shaders/Main.glsl -------------------------------------------------------------------------------- /apps/htxview/shaders/PreprocessCorners.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/htxview/shaders/PreprocessCorners.glsl -------------------------------------------------------------------------------- /apps/htxview/shaders/PreprocessCornersFacePoints.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/htxview/shaders/PreprocessCornersFacePoints.glsl -------------------------------------------------------------------------------- /apps/htxview/shaders/Viewer.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/htxview/shaders/Viewer.glsl -------------------------------------------------------------------------------- /apps/ptx2htx/PtexMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/ptx2htx/PtexMesh.cpp -------------------------------------------------------------------------------- /apps/ptx2htx/PtexMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/ptx2htx/PtexMesh.h -------------------------------------------------------------------------------- /apps/ptx2htx/PtexToHalfedges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/ptx2htx/PtexToHalfedges.cpp -------------------------------------------------------------------------------- /apps/ptx2htx/PtexToHalfedges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/ptx2htx/PtexToHalfedges.h -------------------------------------------------------------------------------- /apps/ptx2htx/ptx2htx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/ptx2htx/ptx2htx.cpp -------------------------------------------------------------------------------- /apps/uv2htx/uv2htx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/apps/uv2htx/uv2htx.cpp -------------------------------------------------------------------------------- /common/glad/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/common/glad/glad.c -------------------------------------------------------------------------------- /common/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/common/glad/glad.h -------------------------------------------------------------------------------- /common/glad/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/common/glad/khrplatform.h -------------------------------------------------------------------------------- /common/imgui_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/common/imgui_impl.cpp -------------------------------------------------------------------------------- /common/imgui_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrbr/htex/HEAD/common/imgui_impl.h --------------------------------------------------------------------------------