Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ngscopeclient/scopehal-apps
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 088f6c36f62d
Choose a base ref
...
head repository: ngscopeclient/scopehal-apps
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d088dfe0c3d4
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Feb 28, 2021

  1. Copy the full SHA
    d088dfe View commit details
Showing with 4 additions and 1 deletion.
  1. +1 −1 lib
  2. +3 −0 src/glscopeclient/main.cpp
3 changes: 3 additions & 0 deletions src/glscopeclient/main.cpp
Original file line number Diff line number Diff line change
@@ -91,6 +91,7 @@ void help()
"\n"
" [dev options]:\n"
" --noglint64 : Act as if GL_ARB_gpu_shader_int64 is not present, even if it is\n"
" --noopencl : Do not use OpenCL, even if supported on the current system\n"
"\n"
" [filename|scope]:\n"
" filename : path to a .scopesession to load on startup\n"
@@ -148,6 +149,8 @@ int main(int argc, char* argv[])
nospectrum = true;
else if(s == "--noglint64")
g_noglint64 = true;
else if(s == "--noopencl")
g_disableOpenCL = true;
else if(s[0] == '-')
{
fprintf(stderr, "Unrecognized command-line argument \"%s\", use --help\n", s.c_str());