Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lever-3d
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenSource
lever-3d
Commits
9d6e678e
Commit
9d6e678e
authored
Oct 1, 2014
by
Eric Wait
Browse files
Options
Downloads
Patches
Plain Diff
Added licensing to the head of the Static Pixel Shader
parent
d4bbac7a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/c/Material.cpp
+15
-0
15 additions, 0 deletions
src/c/Material.cpp
with
15 additions
and
0 deletions
src/c/Material.cpp
+
15
−
0
View file @
9d6e678e
...
@@ -246,6 +246,21 @@ void createStaticVolumeShaderText(std::string strChans)
...
@@ -246,6 +246,21 @@ void createStaticVolumeShaderText(std::string strChans)
{
{
std
::
string
shaderText
=
""
;
std
::
string
shaderText
=
""
;
shaderText
+=
"///////////////////////////////////////////////////////////////////////////////
\n
"
;
shaderText
+=
"// Copyright 2014 Andrew Cohen, Eric Wait, and Mark Winter
\n
"
;
shaderText
+=
"// This file is part of LEVER 3-D - the tool for 5-D stem cell segmentation,
\n
"
;
shaderText
+=
"// tracking, and lineaging. See http://bioimage.coe.drexel.edu 'software' section
\n
"
;
shaderText
+=
"// for details. LEVER 3-D is free software: you can redistribute it and/or modify
\n
"
;
shaderText
+=
"// it under the terms of the GNU General Public License as published by the Free
\n
"
;
shaderText
+=
"// Software Foundation, either version 3 of the License, or (at your option) any
\n
"
;
shaderText
+=
"// later version.
\n
"
;
shaderText
+=
"// LEVER 3-D is distributed in the hope that it will be useful, but WITHOUT ANY
\n
"
;
shaderText
+=
"// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
\n
"
;
shaderText
+=
"// A PARTICULAR PURPOSE. See the GNU General Public License for more details.
\n
"
;
shaderText
+=
"// You should have received a copy of the GNU General Public License along with
\n
"
;
shaderText
+=
"// LEVer in file
\"
gnu gpl v3.txt
\"
. If not, see <http://www.gnu.org/licenses/>.
\n
"
;
shaderText
+=
"///////////////////////////////////////////////////////////////////////////////
\n
"
;
shaderText
+=
"
\n
"
;
shaderText
+=
"cbuffer ConstantPSBuffer : register( b1 )
\n
"
;
shaderText
+=
"cbuffer ConstantPSBuffer : register( b1 )
\n
"
;
shaderText
+=
"{
\n
"
;
shaderText
+=
"{
\n
"
;
shaderText
+=
" float4 transferFunctions["
+
strChans
+
"];
\n
"
;
shaderText
+=
" float4 transferFunctions["
+
strChans
+
"];
\n
"
;
...
...
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