├── .gitignore ├── LICENSE.txt ├── README.md ├── backends ├── tex_inspect_directx11.cpp ├── tex_inspect_directx11.h ├── tex_inspect_opengl.cpp └── tex_inspect_opengl.h ├── examples ├── demo_1.png ├── example_emscripten_opengl3 │ ├── Makefile │ ├── main.cpp │ └── shell_minimal.html ├── example_sdl_opengl3 │ ├── Makefile │ ├── build_win32.bat │ └── main.cpp ├── example_win32_directx11 │ ├── build_win32.bat │ └── main.cpp ├── libs │ ├── gl3w │ │ └── GL │ │ │ ├── gl3w.c │ │ │ ├── gl3w.h │ │ │ └── glcorearb.h │ ├── glfw │ │ ├── COPYING.txt │ │ ├── include │ │ │ └── GLFW │ │ │ │ ├── glfw3.h │ │ │ │ └── glfw3native.h │ │ ├── lib-vc2010-32 │ │ │ └── glfw3.lib │ │ └── lib-vc2010-64 │ │ │ └── glfw3.lib │ └── usynergy │ │ ├── README.txt │ │ ├── uSynergy.c │ │ └── uSynergy.h └── loaders │ └── stb_image.h ├── imgui_tex_inspect.cpp ├── imgui_tex_inspect.h ├── imgui_tex_inspect_demo.cpp ├── imgui_tex_inspect_demo.h └── imgui_tex_inspect_internal.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/README.md -------------------------------------------------------------------------------- /backends/tex_inspect_directx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/backends/tex_inspect_directx11.cpp -------------------------------------------------------------------------------- /backends/tex_inspect_directx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/backends/tex_inspect_directx11.h -------------------------------------------------------------------------------- /backends/tex_inspect_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/backends/tex_inspect_opengl.cpp -------------------------------------------------------------------------------- /backends/tex_inspect_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/backends/tex_inspect_opengl.h -------------------------------------------------------------------------------- /examples/demo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/demo_1.png -------------------------------------------------------------------------------- /examples/example_emscripten_opengl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/example_emscripten_opengl3/Makefile -------------------------------------------------------------------------------- /examples/example_emscripten_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/example_emscripten_opengl3/main.cpp -------------------------------------------------------------------------------- /examples/example_emscripten_opengl3/shell_minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/example_emscripten_opengl3/shell_minimal.html -------------------------------------------------------------------------------- /examples/example_sdl_opengl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/example_sdl_opengl3/Makefile -------------------------------------------------------------------------------- /examples/example_sdl_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/example_sdl_opengl3/build_win32.bat -------------------------------------------------------------------------------- /examples/example_sdl_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/example_sdl_opengl3/main.cpp -------------------------------------------------------------------------------- /examples/example_win32_directx11/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/example_win32_directx11/build_win32.bat -------------------------------------------------------------------------------- /examples/example_win32_directx11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/example_win32_directx11/main.cpp -------------------------------------------------------------------------------- /examples/libs/gl3w/GL/gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/gl3w/GL/gl3w.c -------------------------------------------------------------------------------- /examples/libs/gl3w/GL/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/gl3w/GL/gl3w.h -------------------------------------------------------------------------------- /examples/libs/gl3w/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/gl3w/GL/glcorearb.h -------------------------------------------------------------------------------- /examples/libs/glfw/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/glfw/COPYING.txt -------------------------------------------------------------------------------- /examples/libs/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /examples/libs/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /examples/libs/glfw/lib-vc2010-32/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/glfw/lib-vc2010-32/glfw3.lib -------------------------------------------------------------------------------- /examples/libs/glfw/lib-vc2010-64/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/glfw/lib-vc2010-64/glfw3.lib -------------------------------------------------------------------------------- /examples/libs/usynergy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/usynergy/README.txt -------------------------------------------------------------------------------- /examples/libs/usynergy/uSynergy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/usynergy/uSynergy.c -------------------------------------------------------------------------------- /examples/libs/usynergy/uSynergy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/libs/usynergy/uSynergy.h -------------------------------------------------------------------------------- /examples/loaders/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/examples/loaders/stb_image.h -------------------------------------------------------------------------------- /imgui_tex_inspect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/imgui_tex_inspect.cpp -------------------------------------------------------------------------------- /imgui_tex_inspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/imgui_tex_inspect.h -------------------------------------------------------------------------------- /imgui_tex_inspect_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/imgui_tex_inspect_demo.cpp -------------------------------------------------------------------------------- /imgui_tex_inspect_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/imgui_tex_inspect_demo.h -------------------------------------------------------------------------------- /imgui_tex_inspect_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyborrell/imgui_tex_inspect/HEAD/imgui_tex_inspect_internal.h --------------------------------------------------------------------------------