├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── cloc.sh ├── manifest.json ├── src ├── background_page │ └── background_page_init.js ├── content_script │ ├── buffer_viewer.js │ ├── call_stack.js │ ├── content_script_init.js │ ├── contexts.js │ ├── depth_inspector.js │ ├── duplicate_program_detection.js │ ├── fcn_bindings.js │ ├── frame_control.js │ ├── helpers.js │ ├── histogram.js │ ├── message_handling.js │ ├── messages.js │ ├── mipmap_viewer.js │ ├── pixel_inspector.js │ ├── program_usage_counter.js │ ├── shader_viewer.js │ ├── state_variables.js │ ├── texture_viewer.js │ └── webgl_bind.js ├── devtools2 │ ├── context_bar_element.js │ ├── ctx.js │ ├── depth_inspector.js │ ├── devtools.html │ ├── devtools_init.js │ ├── disabled_panel.js │ ├── feedback.js │ ├── frame_control.js │ ├── init.js │ ├── lib │ │ ├── Chart.js │ │ ├── JSXTransformer.js │ │ ├── chart.horizontal.js │ │ ├── fonts │ │ │ ├── lato │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.svg │ │ │ │ ├── lato-regular.ttf │ │ │ │ └── lato-regular.woff │ │ │ └── opensans.woff2 │ │ ├── jsx.js │ │ ├── prism.css │ │ ├── prism.js │ │ ├── react-dom.js │ │ ├── react.js │ │ ├── require.js │ │ └── text.js │ ├── main.js │ ├── messages.js │ ├── mipmap_inspector.js │ ├── no_contexts.js │ ├── panel.css │ ├── panel.html │ ├── panel.js │ ├── pixel_inspector.js │ ├── profile_graph.js │ ├── profile_table.js │ ├── profiles.js │ ├── program.js │ ├── programs.js │ ├── refresh_icon.js │ ├── resources.js │ ├── settings.js │ ├── shaders.js │ ├── state_view.js │ ├── tab_bar.js │ └── tab_bar_element.js └── shared │ └── message_types.js └── static ├── checkerboard-512x512.png ├── logo-128.png ├── logo-16.png └── logo-48.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | sample 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/README.md -------------------------------------------------------------------------------- /cloc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cloc --exclude-dir=lib,insight --by-file . -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/manifest.json -------------------------------------------------------------------------------- /src/background_page/background_page_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/background_page/background_page_init.js -------------------------------------------------------------------------------- /src/content_script/buffer_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/buffer_viewer.js -------------------------------------------------------------------------------- /src/content_script/call_stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/call_stack.js -------------------------------------------------------------------------------- /src/content_script/content_script_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/content_script_init.js -------------------------------------------------------------------------------- /src/content_script/contexts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/contexts.js -------------------------------------------------------------------------------- /src/content_script/depth_inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/depth_inspector.js -------------------------------------------------------------------------------- /src/content_script/duplicate_program_detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/duplicate_program_detection.js -------------------------------------------------------------------------------- /src/content_script/fcn_bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/fcn_bindings.js -------------------------------------------------------------------------------- /src/content_script/frame_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/frame_control.js -------------------------------------------------------------------------------- /src/content_script/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/helpers.js -------------------------------------------------------------------------------- /src/content_script/histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/histogram.js -------------------------------------------------------------------------------- /src/content_script/message_handling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/message_handling.js -------------------------------------------------------------------------------- /src/content_script/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/messages.js -------------------------------------------------------------------------------- /src/content_script/mipmap_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/mipmap_viewer.js -------------------------------------------------------------------------------- /src/content_script/pixel_inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/pixel_inspector.js -------------------------------------------------------------------------------- /src/content_script/program_usage_counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/program_usage_counter.js -------------------------------------------------------------------------------- /src/content_script/shader_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/shader_viewer.js -------------------------------------------------------------------------------- /src/content_script/state_variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/state_variables.js -------------------------------------------------------------------------------- /src/content_script/texture_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/texture_viewer.js -------------------------------------------------------------------------------- /src/content_script/webgl_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/content_script/webgl_bind.js -------------------------------------------------------------------------------- /src/devtools2/context_bar_element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/context_bar_element.js -------------------------------------------------------------------------------- /src/devtools2/ctx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/ctx.js -------------------------------------------------------------------------------- /src/devtools2/depth_inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/depth_inspector.js -------------------------------------------------------------------------------- /src/devtools2/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/devtools.html -------------------------------------------------------------------------------- /src/devtools2/devtools_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/devtools_init.js -------------------------------------------------------------------------------- /src/devtools2/disabled_panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/disabled_panel.js -------------------------------------------------------------------------------- /src/devtools2/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/feedback.js -------------------------------------------------------------------------------- /src/devtools2/frame_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/frame_control.js -------------------------------------------------------------------------------- /src/devtools2/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/init.js -------------------------------------------------------------------------------- /src/devtools2/lib/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/Chart.js -------------------------------------------------------------------------------- /src/devtools2/lib/JSXTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/JSXTransformer.js -------------------------------------------------------------------------------- /src/devtools2/lib/chart.horizontal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/chart.horizontal.js -------------------------------------------------------------------------------- /src/devtools2/lib/fonts/lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/fonts/lato/lato-bold.ttf -------------------------------------------------------------------------------- /src/devtools2/lib/fonts/lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/fonts/lato/lato-bold.woff -------------------------------------------------------------------------------- /src/devtools2/lib/fonts/lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/fonts/lato/lato-regular.eot -------------------------------------------------------------------------------- /src/devtools2/lib/fonts/lato/lato-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/fonts/lato/lato-regular.svg -------------------------------------------------------------------------------- /src/devtools2/lib/fonts/lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/fonts/lato/lato-regular.ttf -------------------------------------------------------------------------------- /src/devtools2/lib/fonts/lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/fonts/lato/lato-regular.woff -------------------------------------------------------------------------------- /src/devtools2/lib/fonts/opensans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/fonts/opensans.woff2 -------------------------------------------------------------------------------- /src/devtools2/lib/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/jsx.js -------------------------------------------------------------------------------- /src/devtools2/lib/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/prism.css -------------------------------------------------------------------------------- /src/devtools2/lib/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/prism.js -------------------------------------------------------------------------------- /src/devtools2/lib/react-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/react-dom.js -------------------------------------------------------------------------------- /src/devtools2/lib/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/react.js -------------------------------------------------------------------------------- /src/devtools2/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/require.js -------------------------------------------------------------------------------- /src/devtools2/lib/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/lib/text.js -------------------------------------------------------------------------------- /src/devtools2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/main.js -------------------------------------------------------------------------------- /src/devtools2/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/messages.js -------------------------------------------------------------------------------- /src/devtools2/mipmap_inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/mipmap_inspector.js -------------------------------------------------------------------------------- /src/devtools2/no_contexts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/no_contexts.js -------------------------------------------------------------------------------- /src/devtools2/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/panel.css -------------------------------------------------------------------------------- /src/devtools2/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/panel.html -------------------------------------------------------------------------------- /src/devtools2/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/panel.js -------------------------------------------------------------------------------- /src/devtools2/pixel_inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/pixel_inspector.js -------------------------------------------------------------------------------- /src/devtools2/profile_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/profile_graph.js -------------------------------------------------------------------------------- /src/devtools2/profile_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/profile_table.js -------------------------------------------------------------------------------- /src/devtools2/profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/profiles.js -------------------------------------------------------------------------------- /src/devtools2/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/program.js -------------------------------------------------------------------------------- /src/devtools2/programs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/programs.js -------------------------------------------------------------------------------- /src/devtools2/refresh_icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/refresh_icon.js -------------------------------------------------------------------------------- /src/devtools2/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/resources.js -------------------------------------------------------------------------------- /src/devtools2/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/settings.js -------------------------------------------------------------------------------- /src/devtools2/shaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/shaders.js -------------------------------------------------------------------------------- /src/devtools2/state_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/state_view.js -------------------------------------------------------------------------------- /src/devtools2/tab_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/tab_bar.js -------------------------------------------------------------------------------- /src/devtools2/tab_bar_element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/devtools2/tab_bar_element.js -------------------------------------------------------------------------------- /src/shared/message_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/src/shared/message_types.js -------------------------------------------------------------------------------- /static/checkerboard-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/static/checkerboard-512x512.png -------------------------------------------------------------------------------- /static/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/static/logo-128.png -------------------------------------------------------------------------------- /static/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/static/logo-16.png -------------------------------------------------------------------------------- /static/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3Dparallax/insight/HEAD/static/logo-48.png --------------------------------------------------------------------------------