Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
defs:ImColor
(Results
1 - 2
of
2
) sorted by relevance
/third_party/mesa3d/src/imgui/
H
A
D
imgui.h
1701
struct
ImColor
struct
1705
ImColor
() { Value.x = Value.y = Value.z = Value.w = 0.0f; }
in ImColor()
function
1706
ImColor
(int r, int g, int b, int a = 255) { float sc = 1.0f/255.0f; Value.x = (float)r * sc; Value.y = (float)g * sc; Value.z = (float)b * sc; Value.w = (float)a * sc; }
in ImColor()
function
1707
ImColor
(ImU32 rgba) { float sc = 1.0f/255.0f; Value.x = (float)((rgba>>IM_COL32_R_SHIFT)&0xFF) * sc; Value.y = (float)((rgba>>IM_COL32_G_SHIFT)&0xFF) * sc; Value.z = (float)((rgba>>IM_COL32_B_SHIFT)&0xFF) * sc; Value.w = (float)((rgba>>IM_COL32_A_SHIFT)&0xFF) * sc; }
in ImColor()
function
1708
ImColor
(floa
in ImColor()
function
1709
ImColor
(const ImVec4& col) { Value = col; }
ImColor()
function
[all...]
/third_party/skia/third_party/externals/imgui/
H
A
D
imgui.h
2238
struct
ImColor
struct
2242
ImColor
() { Value.x = Value.y = Value.z = Value.w = 0.0f; }
in ImColor()
function
2243
ImColor
(int r, int g, int b, int a = 255) { float sc = 1.0f / 255.0f; Value.x = (float)r * sc; Value.y = (float)g * sc; Value.z = (float)b * sc; Value.w = (float)a * sc; }
in ImColor()
function
2244
ImColor
(ImU3
in ImColor()
function
2245
ImColor
(float r, float g, float b, float a = 1.0f) { Value.x = r; Value.y = g; Value.z = b; Value.w = a; }
ImColor()
function
2246
ImColor
(const ImVec4& col) { Value = col; }
ImColor()
function
[all...]
Completed in 18 milliseconds