Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Cabieces
otb
Commits
f6f9d6ef
Commit
f6f9d6ef
authored
8 years ago
by
Julien Michel
Browse files
Options
Downloads
Patches
Plain Diff
WRG: Fixing enum value not handled in switch warning
parent
42cf85d6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Modules/Visualization/IceViewer/src/otbIceViewer.cxx
+30
-0
30 additions, 0 deletions
Modules/Visualization/IceViewer/src/otbIceViewer.cxx
with
30 additions
and
0 deletions
Modules/Visualization/IceViewer/src/otbIceViewer.cxx
+
30
−
0
View file @
f6f9d6ef
...
...
@@ -468,6 +468,36 @@ void IceViewer::DrawHud()
case
SHADER_GRADIENT
:
oss
<<
" gradient"
;
break
;
case
SHADER_LUT_JET
:
oss
<<
"Jet LUT"
<<
std
::
endl
;
break
;
case
SHADER_LUT_LOCAL_JET
:
oss
<<
"Local Jet LUT"
<<
std
::
endl
;
break
;
case
SHADER_LUT_HOT
:
oss
<<
"Hot LUT"
<<
std
::
endl
;
break
;
case
SHADER_LUT_LOCAL_HOT
:
oss
<<
"Local Hot LUT"
<<
std
::
endl
;
break
;
case
SHADER_LUT_WINTER
:
oss
<<
"Winter LUT"
<<
std
::
endl
;
break
;
case
SHADER_LUT_LOCAL_WINTER
:
oss
<<
"Local Winter LUT"
<<
std
::
endl
;
break
;
case
SHADER_LUT_SUMMER
:
oss
<<
"Summer LUT"
<<
std
::
endl
;
break
;
case
SHADER_LUT_LOCAL_SUMMER
:
oss
<<
"Local Summer LUT"
<<
std
::
endl
;
break
;
case
SHADER_LUT_COOL
:
oss
<<
"Cool LUT"
<<
std
::
endl
;
break
;
case
SHADER_LUT_LOCAL_COOL
:
oss
<<
"Local Cool LUT"
<<
std
::
endl
;
break
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment