Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
2108e9de
Commit
2108e9de
authored
11 years ago
by
katharine@exodusviewer.com
Browse files
Options
Downloads
Patches
Plain Diff
OPEN-149: fix documentation of LLColor4 constructor for F32 vector
parent
96f0d930
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/contributions.txt
+1
-0
1 addition, 0 deletions
doc/contributions.txt
indra/llmath/v4color.h
+1
-1
1 addition, 1 deletion
indra/llmath/v4color.h
with
2 additions
and
1 deletion
doc/contributions.txt
+
1
−
0
View file @
2108e9de
...
...
@@ -688,6 +688,7 @@ Kagehi Kohn
Kaimen Takahe
Katharine Berry
STORM-1900
OPEN-149
Keklily Longfall
Ken Lavender
Ken March
...
...
This diff is collapsed.
Click to expand it.
indra/llmath/v4color.h
+
1
−
1
View file @
2108e9de
...
...
@@ -50,7 +50,7 @@ class LLColor4
LLColor4
(
F32
r
,
F32
g
,
F32
b
);
// Initializes LLColor4 to (r, g, b, 1)
LLColor4
(
F32
r
,
F32
g
,
F32
b
,
F32
a
);
// Initializes LLColor4 to (r. g, b, a)
LLColor4
(
U32
clr
);
// Initializes LLColor4 to (r=clr>>24, etc))
LLColor4
(
const
F32
*
vec
);
// Initializes LLColor4 to (vec[0]. vec[1], vec[2],
1
)
LLColor4
(
const
F32
*
vec
);
// Initializes LLColor4 to (vec[0]. vec[1], vec[2],
vec[3]
)
LLColor4
(
const
LLColor3
&
vec
,
F32
a
=
1.
f
);
// Initializes LLColor4 to (vec, a)
explicit
LLColor4
(
const
LLSD
&
sd
);
explicit
LLColor4
(
const
LLColor4U
&
color4u
);
// "explicit" to avoid automatic conversion
...
...
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