├── LICENSE ├── Planet-LOD.sln ├── README.md ├── bin32 ├── DevIL.dll ├── ILU.dll ├── ILUT.dll ├── Planet-LOD.Complex.exe ├── Planet-LOD.Simple.exe ├── Planet-LOD.Textured.exe └── freeglut.dll ├── bin64 ├── DevIL.dll ├── ILU.dll ├── ILUT.dll ├── Planet-LOD.Complex.exe ├── Planet-LOD.Simple.exe ├── Planet-LOD.Textured.exe └── freeglut.dll ├── data ├── gui_global.txt ├── gui_skin.txt ├── ipaexg.ttf ├── mouse │ └── arrow.png ├── smiley.png ├── smiley2.png ├── smileybw.png ├── terrain │ ├── result.1.f32 │ ├── result.2.f32 │ ├── result.3.f32 │ ├── result.4.f32 │ ├── result.5.f32 │ └── result.6.f32 └── win8 │ ├── New folder │ └── button_normal.xcf │ ├── button_hover.png │ ├── button_normal.png │ ├── button_selected.png │ ├── checkbox_hover.png │ ├── checkbox_normal.png │ ├── checkbox_selected.png │ ├── combo_background.png │ ├── combo_hover.png │ ├── combo_normal.png │ ├── combo_select_hover.png │ ├── combo_select_selected.png │ ├── combo_selected.png │ ├── hscrollbar_button_hover.png │ ├── hscrollbar_button_left_hover.png │ ├── hscrollbar_button_left_normal.png │ ├── hscrollbar_button_left_selected.png │ ├── hscrollbar_button_normal.png │ ├── hscrollbar_button_right_hover.png │ ├── hscrollbar_button_right_normal.png │ ├── hscrollbar_button_right_selected.png │ ├── hscrollbar_button_selected.png │ ├── hscrollbar_hover.png │ ├── hscrollbar_normal.png │ ├── hscrollbar_selected.png │ ├── menu_hover.png │ ├── menu_normal.png │ ├── menu_selected.png │ ├── progress_horizontal_left.png │ ├── progress_horizontal_right.png │ ├── progress_vertical_left.png │ ├── progress_vertical_right.png │ ├── slider_horiz_button_hover.png │ ├── slider_horiz_button_normal.png │ ├── slider_horiz_button_selected.png │ ├── slider_horiz_left_hover.png │ ├── slider_horiz_left_normal.png │ ├── slider_horiz_left_selected.png │ ├── slider_horiz_right_hover.png │ ├── slider_horiz_right_normal.png │ ├── slider_horiz_right_selected.png │ ├── slider_vert_button_hover.png │ ├── slider_vert_button_normal.png │ ├── slider_vert_button_selected.png │ ├── slider_vert_left_hover.png │ ├── slider_vert_left_normal.png │ ├── slider_vert_left_selected.png │ ├── slider_vert_right_hover.png │ ├── slider_vert_right_normal.png │ ├── slider_vert_right_selected.png │ ├── submenu_hover.png │ ├── submenu_normal.png │ ├── submenu_selected.png │ ├── tab_button_hover.png │ ├── tab_button_normal.png │ ├── tab_button_selected.png │ ├── tab_hover.png │ ├── tab_normal.png │ ├── tab_selected.png │ ├── tab_window_hover.png │ ├── tab_window_normal.png │ ├── tab_window_selected.png │ ├── textedit_down_hover.png │ ├── textedit_down_normal.png │ ├── textedit_down_selected.png │ ├── textedit_hover.png │ ├── textedit_normal.png │ ├── textedit_selected.png │ ├── textedit_up_hover.png │ ├── textedit_up_normal.png │ ├── textedit_up_selected.png │ ├── vscrollbar_button_down_hover.png │ ├── vscrollbar_button_down_normal.png │ ├── vscrollbar_button_down_selected.png │ ├── vscrollbar_button_hover.png │ ├── vscrollbar_button_normal.png │ ├── vscrollbar_button_right_hover.png │ ├── vscrollbar_button_selected.png │ ├── vscrollbar_button_up_hover.png │ ├── vscrollbar_button_up_normal.png │ ├── vscrollbar_button_up_selected.png │ ├── vscrollbar_hover.png │ ├── vscrollbar_normal.png │ ├── vscrollbar_selected.png │ ├── win8_noscroll │ ├── window_hover.png │ ├── window_normal.png │ └── window_selected.png │ ├── window_close_hover.png │ ├── window_close_normal.png │ ├── window_hover.png │ ├── window_normal.png │ ├── window_resize_hover.png │ ├── window_resize_normal.png │ ├── window_resize_selected.png │ ├── window_selected.png │ ├── window_toggle_hover.png │ ├── window_toggle_normal.png │ └── window_toggle_selected.png ├── ext ├── GL │ ├── freeglut.h │ ├── freeglut_ext.h │ ├── freeglut_std.h │ ├── glext.h │ ├── glut.def │ ├── glut.h │ ├── glxext.h │ └── wglext.h ├── IL │ ├── DevIL Manual.pdf │ ├── config.h │ ├── config.h.in │ ├── devil_cpp_wrapper.hpp │ ├── devil_internal_exports.h │ ├── il.h │ ├── ilu.h │ ├── ilu_region.h │ ├── ilut.h │ └── ilut_config.h ├── dirent_win.h ├── drawtext │ ├── Makefile │ ├── drawgl.c │ ├── drawtext.h │ ├── drawtext_impl.h │ ├── font.c │ ├── font2glyphmap.c │ ├── libdrawtext - OpenGL text rendering library.url │ ├── nofreetype │ │ ├── Makefile │ │ ├── nofreetype.vcproj │ │ ├── serif_s24.glyphmap │ │ └── simple-noft.c │ ├── simple │ │ ├── Makefile │ │ └── simple.c │ ├── unicode │ │ ├── Makefile │ │ └── unicode.cpp │ └── utf8.c ├── freetype │ ├── New folder │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── ftxf86.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ ├── tttags.h │ │ └── ttunpat.h │ ├── config │ │ ├── ftconfig.h │ │ ├── ftheader.h │ │ ├── ftmodule.h │ │ ├── ftoption.h │ │ └── ftstdlib.h │ ├── freetype.h │ ├── ft2build.h │ ├── ftadvanc.h │ ├── ftautoh.h │ ├── ftbbox.h │ ├── ftbdf.h │ ├── ftbitmap.h │ ├── ftbzip2.h │ ├── ftcache.h │ ├── ftcffdrv.h │ ├── ftchapters.h │ ├── ftcid.h │ ├── fterrdef.h │ ├── fterrors.h │ ├── ftfntfmt.h │ ├── ftgasp.h │ ├── ftglyph.h │ ├── ftgxval.h │ ├── ftgzip.h │ ├── ftimage.h │ ├── ftincrem.h │ ├── ftlcdfil.h │ ├── ftlist.h │ ├── ftlzw.h │ ├── ftmac.h │ ├── ftmm.h │ ├── ftmodapi.h │ ├── ftmoderr.h │ ├── ftotval.h │ ├── ftoutln.h │ ├── ftpfr.h │ ├── ftrender.h │ ├── ftsizes.h │ ├── ftsnames.h │ ├── ftstroke.h │ ├── ftsynth.h │ ├── ftsystem.h │ ├── fttrigon.h │ ├── ftttdrv.h │ ├── fttypes.h │ ├── ftwinfnt.h │ ├── internal │ │ ├── autohint.h │ │ ├── ftcalc.h │ │ ├── ftdebug.h │ │ ├── ftdriver.h │ │ ├── ftgloadr.h │ │ ├── ftmemory.h │ │ ├── ftobjs.h │ │ ├── ftpic.h │ │ ├── ftrfork.h │ │ ├── ftserv.h │ │ ├── ftstream.h │ │ ├── fttrace.h │ │ ├── ftvalid.h │ │ ├── internal.h │ │ ├── psaux.h │ │ ├── pshints.h │ │ ├── services │ │ │ ├── svbdf.h │ │ │ ├── svcid.h │ │ │ ├── svfntfmt.h │ │ │ ├── svgldict.h │ │ │ ├── svgxval.h │ │ │ ├── svkern.h │ │ │ ├── svmm.h │ │ │ ├── svotval.h │ │ │ ├── svpfr.h │ │ │ ├── svpostnm.h │ │ │ ├── svprop.h │ │ │ ├── svpscmap.h │ │ │ ├── svpsinfo.h │ │ │ ├── svsfnt.h │ │ │ ├── svttcmap.h │ │ │ ├── svtteng.h │ │ │ ├── svttglyf.h │ │ │ └── svwinfnt.h │ │ ├── sfnt.h │ │ ├── t1types.h │ │ └── tttypes.h │ ├── t1tables.h │ ├── ttnameid.h │ ├── tttables.h │ ├── tttags.h │ └── ttunpat.h ├── ft2build.h ├── glew.cpp ├── glew.h ├── glsl.cpp ├── glsl.h ├── glxew.h ├── mathlib │ ├── CVS │ │ ├── Entries │ │ ├── Entries.Extra │ │ ├── Entries.Extra.Old │ │ ├── Entries.Old │ │ ├── Repository │ │ └── Root │ ├── _matrix33.h │ ├── _matrix33_sse.h │ ├── _matrix44.h │ ├── _matrix44_sse.h │ ├── _vector2.h │ ├── _vector2d.h │ ├── _vector3.h │ ├── _vector3_sse.h │ ├── _vector3d.h │ ├── _vector4.h │ ├── _vector4_sse.h │ ├── bbox.h │ ├── envelopecurve.h │ ├── euler.h │ ├── eulerangles.h │ ├── line.h │ ├── matrix.h │ ├── matrixdefs.h │ ├── nmath.h │ ├── noise.h │ ├── ntypes.h │ ├── ntypes.h~ │ ├── pknorm.h │ ├── plane.h │ ├── polar.h │ ├── quaternion.h │ ├── rectangle.h │ ├── sphere.h │ ├── transform33.h │ ├── transform44.h │ ├── triangle.h │ ├── vector.h │ └── vector3envelopecurve.h ├── stackwalker │ ├── StackWalker.cpp │ ├── StackWalker.h │ ├── error.h │ └── stackwalker.zip └── wglew.h ├── lib32 ├── DevIL.lib ├── ILU.lib ├── ILUT.lib ├── freeglut.lib ├── freeglutd.lib ├── freetype.lib └── freetype26d.lib ├── lib64 ├── DevIL.lib ├── ILU.lib ├── ILUT.lib ├── freeglut.lib ├── freeglutd.lib ├── freetype.lib └── freetype26d.lib ├── screenshot ├── Animation_new.gif ├── Fractal.png └── planet1.png ├── shader ├── Patch.Textured │ ├── frag.txt │ └── vs.txt ├── Patch │ ├── frag.txt │ └── vs.txt ├── SkinRepeated │ ├── frag.txt │ └── vs.txt ├── SkinScaled │ ├── frag.txt │ └── vs.txt └── SkinScaledInner │ ├── frag.txt │ └── vs.txt ├── src.complex ├── Main.cpp ├── Project_Complex.vcproj ├── Project_Complex.vcxproj └── Project_Complex.vcxproj.filters ├── src.shared ├── Bmp.cpp ├── Bmp.h ├── core.cpp ├── core.h ├── error.h ├── fbo.h ├── glsl.h ├── gui.h ├── libs.h └── ogl.h ├── src.simple ├── Main.cpp ├── Project_Simple.vcproj ├── Project_Simple.vcxproj └── Project_Simple.vcxproj.filters └── src.textured ├── Main.cpp ├── Project_Textured.vcproj ├── Project_Textured.vcxproj └── Project_Textured.vcxproj.filters /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/LICENSE -------------------------------------------------------------------------------- /Planet-LOD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/Planet-LOD.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/README.md -------------------------------------------------------------------------------- /bin32/DevIL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin32/DevIL.dll -------------------------------------------------------------------------------- /bin32/ILU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin32/ILU.dll -------------------------------------------------------------------------------- /bin32/ILUT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin32/ILUT.dll -------------------------------------------------------------------------------- /bin32/Planet-LOD.Complex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin32/Planet-LOD.Complex.exe -------------------------------------------------------------------------------- /bin32/Planet-LOD.Simple.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin32/Planet-LOD.Simple.exe -------------------------------------------------------------------------------- /bin32/Planet-LOD.Textured.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin32/Planet-LOD.Textured.exe -------------------------------------------------------------------------------- /bin32/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin32/freeglut.dll -------------------------------------------------------------------------------- /bin64/DevIL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin64/DevIL.dll -------------------------------------------------------------------------------- /bin64/ILU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin64/ILU.dll -------------------------------------------------------------------------------- /bin64/ILUT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin64/ILUT.dll -------------------------------------------------------------------------------- /bin64/Planet-LOD.Complex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin64/Planet-LOD.Complex.exe -------------------------------------------------------------------------------- /bin64/Planet-LOD.Simple.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin64/Planet-LOD.Simple.exe -------------------------------------------------------------------------------- /bin64/Planet-LOD.Textured.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin64/Planet-LOD.Textured.exe -------------------------------------------------------------------------------- /bin64/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/bin64/freeglut.dll -------------------------------------------------------------------------------- /data/gui_global.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/gui_global.txt -------------------------------------------------------------------------------- /data/gui_skin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/gui_skin.txt -------------------------------------------------------------------------------- /data/ipaexg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/ipaexg.ttf -------------------------------------------------------------------------------- /data/mouse/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/mouse/arrow.png -------------------------------------------------------------------------------- /data/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/smiley.png -------------------------------------------------------------------------------- /data/smiley2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/smiley2.png -------------------------------------------------------------------------------- /data/smileybw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/smileybw.png -------------------------------------------------------------------------------- /data/terrain/result.1.f32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/terrain/result.1.f32 -------------------------------------------------------------------------------- /data/terrain/result.2.f32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/terrain/result.2.f32 -------------------------------------------------------------------------------- /data/terrain/result.3.f32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/terrain/result.3.f32 -------------------------------------------------------------------------------- /data/terrain/result.4.f32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/terrain/result.4.f32 -------------------------------------------------------------------------------- /data/terrain/result.5.f32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/terrain/result.5.f32 -------------------------------------------------------------------------------- /data/terrain/result.6.f32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/terrain/result.6.f32 -------------------------------------------------------------------------------- /data/win8/New folder/button_normal.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/New folder/button_normal.xcf -------------------------------------------------------------------------------- /data/win8/button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/button_hover.png -------------------------------------------------------------------------------- /data/win8/button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/button_normal.png -------------------------------------------------------------------------------- /data/win8/button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/button_selected.png -------------------------------------------------------------------------------- /data/win8/checkbox_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/checkbox_hover.png -------------------------------------------------------------------------------- /data/win8/checkbox_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/checkbox_normal.png -------------------------------------------------------------------------------- /data/win8/checkbox_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/checkbox_selected.png -------------------------------------------------------------------------------- /data/win8/combo_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/combo_background.png -------------------------------------------------------------------------------- /data/win8/combo_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/combo_hover.png -------------------------------------------------------------------------------- /data/win8/combo_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/combo_normal.png -------------------------------------------------------------------------------- /data/win8/combo_select_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/combo_select_hover.png -------------------------------------------------------------------------------- /data/win8/combo_select_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/combo_select_selected.png -------------------------------------------------------------------------------- /data/win8/combo_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/combo_selected.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_button_hover.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_button_left_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_button_left_hover.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_button_left_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_button_left_normal.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_button_left_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_button_left_selected.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_button_normal.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_button_right_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_button_right_hover.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_button_right_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_button_right_normal.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_button_right_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_button_right_selected.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_button_selected.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_hover.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_normal.png -------------------------------------------------------------------------------- /data/win8/hscrollbar_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/hscrollbar_selected.png -------------------------------------------------------------------------------- /data/win8/menu_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/menu_hover.png -------------------------------------------------------------------------------- /data/win8/menu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/menu_normal.png -------------------------------------------------------------------------------- /data/win8/menu_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/menu_selected.png -------------------------------------------------------------------------------- /data/win8/progress_horizontal_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/progress_horizontal_left.png -------------------------------------------------------------------------------- /data/win8/progress_horizontal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/progress_horizontal_right.png -------------------------------------------------------------------------------- /data/win8/progress_vertical_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/progress_vertical_left.png -------------------------------------------------------------------------------- /data/win8/progress_vertical_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/progress_vertical_right.png -------------------------------------------------------------------------------- /data/win8/slider_horiz_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_horiz_button_hover.png -------------------------------------------------------------------------------- /data/win8/slider_horiz_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_horiz_button_normal.png -------------------------------------------------------------------------------- /data/win8/slider_horiz_button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_horiz_button_selected.png -------------------------------------------------------------------------------- /data/win8/slider_horiz_left_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_horiz_left_hover.png -------------------------------------------------------------------------------- /data/win8/slider_horiz_left_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_horiz_left_normal.png -------------------------------------------------------------------------------- /data/win8/slider_horiz_left_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_horiz_left_selected.png -------------------------------------------------------------------------------- /data/win8/slider_horiz_right_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_horiz_right_hover.png -------------------------------------------------------------------------------- /data/win8/slider_horiz_right_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_horiz_right_normal.png -------------------------------------------------------------------------------- /data/win8/slider_horiz_right_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_horiz_right_selected.png -------------------------------------------------------------------------------- /data/win8/slider_vert_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_vert_button_hover.png -------------------------------------------------------------------------------- /data/win8/slider_vert_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_vert_button_normal.png -------------------------------------------------------------------------------- /data/win8/slider_vert_button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_vert_button_selected.png -------------------------------------------------------------------------------- /data/win8/slider_vert_left_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_vert_left_hover.png -------------------------------------------------------------------------------- /data/win8/slider_vert_left_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_vert_left_normal.png -------------------------------------------------------------------------------- /data/win8/slider_vert_left_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_vert_left_selected.png -------------------------------------------------------------------------------- /data/win8/slider_vert_right_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_vert_right_hover.png -------------------------------------------------------------------------------- /data/win8/slider_vert_right_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_vert_right_normal.png -------------------------------------------------------------------------------- /data/win8/slider_vert_right_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/slider_vert_right_selected.png -------------------------------------------------------------------------------- /data/win8/submenu_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/submenu_hover.png -------------------------------------------------------------------------------- /data/win8/submenu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/submenu_normal.png -------------------------------------------------------------------------------- /data/win8/submenu_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/submenu_selected.png -------------------------------------------------------------------------------- /data/win8/tab_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/tab_button_hover.png -------------------------------------------------------------------------------- /data/win8/tab_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/tab_button_normal.png -------------------------------------------------------------------------------- /data/win8/tab_button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/tab_button_selected.png -------------------------------------------------------------------------------- /data/win8/tab_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/tab_hover.png -------------------------------------------------------------------------------- /data/win8/tab_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/tab_normal.png -------------------------------------------------------------------------------- /data/win8/tab_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/tab_selected.png -------------------------------------------------------------------------------- /data/win8/tab_window_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/tab_window_hover.png -------------------------------------------------------------------------------- /data/win8/tab_window_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/tab_window_normal.png -------------------------------------------------------------------------------- /data/win8/tab_window_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/tab_window_selected.png -------------------------------------------------------------------------------- /data/win8/textedit_down_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/textedit_down_hover.png -------------------------------------------------------------------------------- /data/win8/textedit_down_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/textedit_down_normal.png -------------------------------------------------------------------------------- /data/win8/textedit_down_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/textedit_down_selected.png -------------------------------------------------------------------------------- /data/win8/textedit_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/textedit_hover.png -------------------------------------------------------------------------------- /data/win8/textedit_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/textedit_normal.png -------------------------------------------------------------------------------- /data/win8/textedit_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/textedit_selected.png -------------------------------------------------------------------------------- /data/win8/textedit_up_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/textedit_up_hover.png -------------------------------------------------------------------------------- /data/win8/textedit_up_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/textedit_up_normal.png -------------------------------------------------------------------------------- /data/win8/textedit_up_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/textedit_up_selected.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_button_down_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_button_down_hover.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_button_down_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_button_down_normal.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_button_down_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_button_down_selected.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_button_hover.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_button_normal.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_button_right_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_button_right_hover.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_button_selected.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_button_up_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_button_up_hover.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_button_up_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_button_up_normal.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_button_up_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_button_up_selected.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_hover.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_normal.png -------------------------------------------------------------------------------- /data/win8/vscrollbar_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/vscrollbar_selected.png -------------------------------------------------------------------------------- /data/win8/win8_noscroll/window_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/win8_noscroll/window_hover.png -------------------------------------------------------------------------------- /data/win8/win8_noscroll/window_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/win8_noscroll/window_normal.png -------------------------------------------------------------------------------- /data/win8/win8_noscroll/window_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/win8_noscroll/window_selected.png -------------------------------------------------------------------------------- /data/win8/window_close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_close_hover.png -------------------------------------------------------------------------------- /data/win8/window_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_close_normal.png -------------------------------------------------------------------------------- /data/win8/window_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_hover.png -------------------------------------------------------------------------------- /data/win8/window_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_normal.png -------------------------------------------------------------------------------- /data/win8/window_resize_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_resize_hover.png -------------------------------------------------------------------------------- /data/win8/window_resize_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_resize_normal.png -------------------------------------------------------------------------------- /data/win8/window_resize_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_resize_selected.png -------------------------------------------------------------------------------- /data/win8/window_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_selected.png -------------------------------------------------------------------------------- /data/win8/window_toggle_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_toggle_hover.png -------------------------------------------------------------------------------- /data/win8/window_toggle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_toggle_normal.png -------------------------------------------------------------------------------- /data/win8/window_toggle_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/data/win8/window_toggle_selected.png -------------------------------------------------------------------------------- /ext/GL/freeglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/GL/freeglut.h -------------------------------------------------------------------------------- /ext/GL/freeglut_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/GL/freeglut_ext.h -------------------------------------------------------------------------------- /ext/GL/freeglut_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/GL/freeglut_std.h -------------------------------------------------------------------------------- /ext/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/GL/glext.h -------------------------------------------------------------------------------- /ext/GL/glut.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/GL/glut.def -------------------------------------------------------------------------------- /ext/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/GL/glut.h -------------------------------------------------------------------------------- /ext/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/GL/glxext.h -------------------------------------------------------------------------------- /ext/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/GL/wglext.h -------------------------------------------------------------------------------- /ext/IL/DevIL Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/IL/DevIL Manual.pdf -------------------------------------------------------------------------------- /ext/IL/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/IL/config.h -------------------------------------------------------------------------------- /ext/IL/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/IL/config.h.in -------------------------------------------------------------------------------- /ext/IL/devil_cpp_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/IL/devil_cpp_wrapper.hpp -------------------------------------------------------------------------------- /ext/IL/devil_internal_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/IL/devil_internal_exports.h -------------------------------------------------------------------------------- /ext/IL/il.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/IL/il.h -------------------------------------------------------------------------------- /ext/IL/ilu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/IL/ilu.h -------------------------------------------------------------------------------- /ext/IL/ilu_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/IL/ilu_region.h -------------------------------------------------------------------------------- /ext/IL/ilut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/IL/ilut.h -------------------------------------------------------------------------------- /ext/IL/ilut_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/IL/ilut_config.h -------------------------------------------------------------------------------- /ext/dirent_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/dirent_win.h -------------------------------------------------------------------------------- /ext/drawtext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/Makefile -------------------------------------------------------------------------------- /ext/drawtext/drawgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/drawgl.c -------------------------------------------------------------------------------- /ext/drawtext/drawtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/drawtext.h -------------------------------------------------------------------------------- /ext/drawtext/drawtext_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/drawtext_impl.h -------------------------------------------------------------------------------- /ext/drawtext/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/font.c -------------------------------------------------------------------------------- /ext/drawtext/font2glyphmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/font2glyphmap.c -------------------------------------------------------------------------------- /ext/drawtext/libdrawtext - OpenGL text rendering library.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://nuclear.mutantstargoat.com/sw/libdrawtext/ 3 | -------------------------------------------------------------------------------- /ext/drawtext/nofreetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/nofreetype/Makefile -------------------------------------------------------------------------------- /ext/drawtext/nofreetype/nofreetype.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/nofreetype/nofreetype.vcproj -------------------------------------------------------------------------------- /ext/drawtext/nofreetype/serif_s24.glyphmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/nofreetype/serif_s24.glyphmap -------------------------------------------------------------------------------- /ext/drawtext/nofreetype/simple-noft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/nofreetype/simple-noft.c -------------------------------------------------------------------------------- /ext/drawtext/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/simple/Makefile -------------------------------------------------------------------------------- /ext/drawtext/simple/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/simple/simple.c -------------------------------------------------------------------------------- /ext/drawtext/unicode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/unicode/Makefile -------------------------------------------------------------------------------- /ext/drawtext/unicode/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/unicode/unicode.cpp -------------------------------------------------------------------------------- /ext/drawtext/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/drawtext/utf8.c -------------------------------------------------------------------------------- /ext/freetype/New folder/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/config/ftconfig.h -------------------------------------------------------------------------------- /ext/freetype/New folder/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/config/ftheader.h -------------------------------------------------------------------------------- /ext/freetype/New folder/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/config/ftmodule.h -------------------------------------------------------------------------------- /ext/freetype/New folder/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/config/ftoption.h -------------------------------------------------------------------------------- /ext/freetype/New folder/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/config/ftstdlib.h -------------------------------------------------------------------------------- /ext/freetype/New folder/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/freetype.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftbbox.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftbdf.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftbitmap.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftcache.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftchapters.h -------------------------------------------------------------------------------- /ext/freetype/New folder/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/fterrdef.h -------------------------------------------------------------------------------- /ext/freetype/New folder/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/fterrors.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftgasp.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftglyph.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftgxval.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftgzip.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftimage.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftincrem.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftlcdfil.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftlist.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftlzw.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftmac.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftmm.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftmodapi.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftmoderr.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftotval.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftoutln.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftpfr.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftrender.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftsizes.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftsnames.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftstroke.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftsynth.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftsystem.h -------------------------------------------------------------------------------- /ext/freetype/New folder/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/fttrigon.h -------------------------------------------------------------------------------- /ext/freetype/New folder/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/fttypes.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftwinfnt.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ftxf86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ftxf86.h -------------------------------------------------------------------------------- /ext/freetype/New folder/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/t1tables.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ttnameid.h -------------------------------------------------------------------------------- /ext/freetype/New folder/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/tttables.h -------------------------------------------------------------------------------- /ext/freetype/New folder/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/tttags.h -------------------------------------------------------------------------------- /ext/freetype/New folder/ttunpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/New folder/ttunpat.h -------------------------------------------------------------------------------- /ext/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /ext/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/config/ftheader.h -------------------------------------------------------------------------------- /ext/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /ext/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/config/ftoption.h -------------------------------------------------------------------------------- /ext/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /ext/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/freetype.h -------------------------------------------------------------------------------- /ext/freetype/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ft2build.h -------------------------------------------------------------------------------- /ext/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftadvanc.h -------------------------------------------------------------------------------- /ext/freetype/ftautoh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftautoh.h -------------------------------------------------------------------------------- /ext/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftbbox.h -------------------------------------------------------------------------------- /ext/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftbdf.h -------------------------------------------------------------------------------- /ext/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftbitmap.h -------------------------------------------------------------------------------- /ext/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftbzip2.h -------------------------------------------------------------------------------- /ext/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftcache.h -------------------------------------------------------------------------------- /ext/freetype/ftcffdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftcffdrv.h -------------------------------------------------------------------------------- /ext/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftchapters.h -------------------------------------------------------------------------------- /ext/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftcid.h -------------------------------------------------------------------------------- /ext/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/fterrdef.h -------------------------------------------------------------------------------- /ext/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/fterrors.h -------------------------------------------------------------------------------- /ext/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /ext/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftgasp.h -------------------------------------------------------------------------------- /ext/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftglyph.h -------------------------------------------------------------------------------- /ext/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftgxval.h -------------------------------------------------------------------------------- /ext/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftgzip.h -------------------------------------------------------------------------------- /ext/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftimage.h -------------------------------------------------------------------------------- /ext/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftincrem.h -------------------------------------------------------------------------------- /ext/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /ext/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftlist.h -------------------------------------------------------------------------------- /ext/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftlzw.h -------------------------------------------------------------------------------- /ext/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftmac.h -------------------------------------------------------------------------------- /ext/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftmm.h -------------------------------------------------------------------------------- /ext/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftmodapi.h -------------------------------------------------------------------------------- /ext/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftmoderr.h -------------------------------------------------------------------------------- /ext/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftotval.h -------------------------------------------------------------------------------- /ext/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftoutln.h -------------------------------------------------------------------------------- /ext/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftpfr.h -------------------------------------------------------------------------------- /ext/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftrender.h -------------------------------------------------------------------------------- /ext/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftsizes.h -------------------------------------------------------------------------------- /ext/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftsnames.h -------------------------------------------------------------------------------- /ext/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftstroke.h -------------------------------------------------------------------------------- /ext/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftsynth.h -------------------------------------------------------------------------------- /ext/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftsystem.h -------------------------------------------------------------------------------- /ext/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/fttrigon.h -------------------------------------------------------------------------------- /ext/freetype/ftttdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftttdrv.h -------------------------------------------------------------------------------- /ext/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/fttypes.h -------------------------------------------------------------------------------- /ext/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /ext/freetype/internal/autohint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/autohint.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftcalc.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftdebug.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftdriver.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftgloadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftgloadr.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftmemory.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftobjs.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftpic.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftrfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftrfork.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftserv.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftstream.h -------------------------------------------------------------------------------- /ext/freetype/internal/fttrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/fttrace.h -------------------------------------------------------------------------------- /ext/freetype/internal/ftvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/ftvalid.h -------------------------------------------------------------------------------- /ext/freetype/internal/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/internal.h -------------------------------------------------------------------------------- /ext/freetype/internal/psaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/psaux.h -------------------------------------------------------------------------------- /ext/freetype/internal/pshints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/pshints.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svbdf.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svcid.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svfntfmt.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svgldict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svgldict.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svgxval.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svkern.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svmm.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svotval.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svpfr.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svpostnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svpostnm.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svprop.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svpscmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svpscmap.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svpsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svpsinfo.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svsfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svsfnt.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svttcmap.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svtteng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svtteng.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svttglyf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svttglyf.h -------------------------------------------------------------------------------- /ext/freetype/internal/services/svwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/services/svwinfnt.h -------------------------------------------------------------------------------- /ext/freetype/internal/sfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/sfnt.h -------------------------------------------------------------------------------- /ext/freetype/internal/t1types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/t1types.h -------------------------------------------------------------------------------- /ext/freetype/internal/tttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/internal/tttypes.h -------------------------------------------------------------------------------- /ext/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/t1tables.h -------------------------------------------------------------------------------- /ext/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ttnameid.h -------------------------------------------------------------------------------- /ext/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/tttables.h -------------------------------------------------------------------------------- /ext/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/tttags.h -------------------------------------------------------------------------------- /ext/freetype/ttunpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/freetype/ttunpat.h -------------------------------------------------------------------------------- /ext/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/ft2build.h -------------------------------------------------------------------------------- /ext/glew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/glew.cpp -------------------------------------------------------------------------------- /ext/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/glew.h -------------------------------------------------------------------------------- /ext/glsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/glsl.cpp -------------------------------------------------------------------------------- /ext/glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/glsl.h -------------------------------------------------------------------------------- /ext/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/glxew.h -------------------------------------------------------------------------------- /ext/mathlib/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/CVS/Entries -------------------------------------------------------------------------------- /ext/mathlib/CVS/Entries.Extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/CVS/Entries.Extra -------------------------------------------------------------------------------- /ext/mathlib/CVS/Entries.Extra.Old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/CVS/Entries.Extra.Old -------------------------------------------------------------------------------- /ext/mathlib/CVS/Entries.Old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/CVS/Entries.Old -------------------------------------------------------------------------------- /ext/mathlib/CVS/Repository: -------------------------------------------------------------------------------- 1 | radonlabs/code/nebula2/inc/mathlib 2 | -------------------------------------------------------------------------------- /ext/mathlib/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:sven3@192.168.0.90:/mnt/hdc/cvsroot 2 | -------------------------------------------------------------------------------- /ext/mathlib/_matrix33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_matrix33.h -------------------------------------------------------------------------------- /ext/mathlib/_matrix33_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_matrix33_sse.h -------------------------------------------------------------------------------- /ext/mathlib/_matrix44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_matrix44.h -------------------------------------------------------------------------------- /ext/mathlib/_matrix44_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_matrix44_sse.h -------------------------------------------------------------------------------- /ext/mathlib/_vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_vector2.h -------------------------------------------------------------------------------- /ext/mathlib/_vector2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_vector2d.h -------------------------------------------------------------------------------- /ext/mathlib/_vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_vector3.h -------------------------------------------------------------------------------- /ext/mathlib/_vector3_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_vector3_sse.h -------------------------------------------------------------------------------- /ext/mathlib/_vector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_vector3d.h -------------------------------------------------------------------------------- /ext/mathlib/_vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_vector4.h -------------------------------------------------------------------------------- /ext/mathlib/_vector4_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/_vector4_sse.h -------------------------------------------------------------------------------- /ext/mathlib/bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/bbox.h -------------------------------------------------------------------------------- /ext/mathlib/envelopecurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/envelopecurve.h -------------------------------------------------------------------------------- /ext/mathlib/euler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/euler.h -------------------------------------------------------------------------------- /ext/mathlib/eulerangles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/eulerangles.h -------------------------------------------------------------------------------- /ext/mathlib/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/line.h -------------------------------------------------------------------------------- /ext/mathlib/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/matrix.h -------------------------------------------------------------------------------- /ext/mathlib/matrixdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/matrixdefs.h -------------------------------------------------------------------------------- /ext/mathlib/nmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/nmath.h -------------------------------------------------------------------------------- /ext/mathlib/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/noise.h -------------------------------------------------------------------------------- /ext/mathlib/ntypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/ntypes.h -------------------------------------------------------------------------------- /ext/mathlib/ntypes.h~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/ntypes.h~ -------------------------------------------------------------------------------- /ext/mathlib/pknorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/pknorm.h -------------------------------------------------------------------------------- /ext/mathlib/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/plane.h -------------------------------------------------------------------------------- /ext/mathlib/polar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/polar.h -------------------------------------------------------------------------------- /ext/mathlib/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/quaternion.h -------------------------------------------------------------------------------- /ext/mathlib/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/rectangle.h -------------------------------------------------------------------------------- /ext/mathlib/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/sphere.h -------------------------------------------------------------------------------- /ext/mathlib/transform33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/transform33.h -------------------------------------------------------------------------------- /ext/mathlib/transform44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/transform44.h -------------------------------------------------------------------------------- /ext/mathlib/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/triangle.h -------------------------------------------------------------------------------- /ext/mathlib/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/vector.h -------------------------------------------------------------------------------- /ext/mathlib/vector3envelopecurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/mathlib/vector3envelopecurve.h -------------------------------------------------------------------------------- /ext/stackwalker/StackWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/stackwalker/StackWalker.cpp -------------------------------------------------------------------------------- /ext/stackwalker/StackWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/stackwalker/StackWalker.h -------------------------------------------------------------------------------- /ext/stackwalker/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/stackwalker/error.h -------------------------------------------------------------------------------- /ext/stackwalker/stackwalker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/stackwalker/stackwalker.zip -------------------------------------------------------------------------------- /ext/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/ext/wglew.h -------------------------------------------------------------------------------- /lib32/DevIL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib32/DevIL.lib -------------------------------------------------------------------------------- /lib32/ILU.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib32/ILU.lib -------------------------------------------------------------------------------- /lib32/ILUT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib32/ILUT.lib -------------------------------------------------------------------------------- /lib32/freeglut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib32/freeglut.lib -------------------------------------------------------------------------------- /lib32/freeglutd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib32/freeglutd.lib -------------------------------------------------------------------------------- /lib32/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib32/freetype.lib -------------------------------------------------------------------------------- /lib32/freetype26d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib32/freetype26d.lib -------------------------------------------------------------------------------- /lib64/DevIL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib64/DevIL.lib -------------------------------------------------------------------------------- /lib64/ILU.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib64/ILU.lib -------------------------------------------------------------------------------- /lib64/ILUT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib64/ILUT.lib -------------------------------------------------------------------------------- /lib64/freeglut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib64/freeglut.lib -------------------------------------------------------------------------------- /lib64/freeglutd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib64/freeglutd.lib -------------------------------------------------------------------------------- /lib64/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib64/freetype.lib -------------------------------------------------------------------------------- /lib64/freetype26d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/lib64/freetype26d.lib -------------------------------------------------------------------------------- /screenshot/Animation_new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/screenshot/Animation_new.gif -------------------------------------------------------------------------------- /screenshot/Fractal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/screenshot/Fractal.png -------------------------------------------------------------------------------- /screenshot/planet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/screenshot/planet1.png -------------------------------------------------------------------------------- /shader/Patch.Textured/frag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/shader/Patch.Textured/frag.txt -------------------------------------------------------------------------------- /shader/Patch.Textured/vs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/shader/Patch.Textured/vs.txt -------------------------------------------------------------------------------- /shader/Patch/frag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/shader/Patch/frag.txt -------------------------------------------------------------------------------- /shader/Patch/vs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/shader/Patch/vs.txt -------------------------------------------------------------------------------- /shader/SkinRepeated/frag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/shader/SkinRepeated/frag.txt -------------------------------------------------------------------------------- /shader/SkinRepeated/vs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/shader/SkinRepeated/vs.txt -------------------------------------------------------------------------------- /shader/SkinScaled/frag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/shader/SkinScaled/frag.txt -------------------------------------------------------------------------------- /shader/SkinScaled/vs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/shader/SkinScaled/vs.txt -------------------------------------------------------------------------------- /shader/SkinScaledInner/frag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/shader/SkinScaledInner/frag.txt -------------------------------------------------------------------------------- /shader/SkinScaledInner/vs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/shader/SkinScaledInner/vs.txt -------------------------------------------------------------------------------- /src.complex/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.complex/Main.cpp -------------------------------------------------------------------------------- /src.complex/Project_Complex.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.complex/Project_Complex.vcproj -------------------------------------------------------------------------------- /src.complex/Project_Complex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.complex/Project_Complex.vcxproj -------------------------------------------------------------------------------- /src.complex/Project_Complex.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.complex/Project_Complex.vcxproj.filters -------------------------------------------------------------------------------- /src.shared/Bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.shared/Bmp.cpp -------------------------------------------------------------------------------- /src.shared/Bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.shared/Bmp.h -------------------------------------------------------------------------------- /src.shared/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.shared/core.cpp -------------------------------------------------------------------------------- /src.shared/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.shared/core.h -------------------------------------------------------------------------------- /src.shared/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.shared/error.h -------------------------------------------------------------------------------- /src.shared/fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.shared/fbo.h -------------------------------------------------------------------------------- /src.shared/glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.shared/glsl.h -------------------------------------------------------------------------------- /src.shared/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.shared/gui.h -------------------------------------------------------------------------------- /src.shared/libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.shared/libs.h -------------------------------------------------------------------------------- /src.shared/ogl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.shared/ogl.h -------------------------------------------------------------------------------- /src.simple/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.simple/Main.cpp -------------------------------------------------------------------------------- /src.simple/Project_Simple.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.simple/Project_Simple.vcproj -------------------------------------------------------------------------------- /src.simple/Project_Simple.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.simple/Project_Simple.vcxproj -------------------------------------------------------------------------------- /src.simple/Project_Simple.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.simple/Project_Simple.vcxproj.filters -------------------------------------------------------------------------------- /src.textured/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.textured/Main.cpp -------------------------------------------------------------------------------- /src.textured/Project_Textured.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.textured/Project_Textured.vcproj -------------------------------------------------------------------------------- /src.textured/Project_Textured.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.textured/Project_Textured.vcxproj -------------------------------------------------------------------------------- /src.textured/Project_Textured.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Planet-LOD/HEAD/src.textured/Project_Textured.vcxproj.filters --------------------------------------------------------------------------------