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
refs:WrapMode
(Results
1 - 4
of
4
) sorted by relevance
/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/
H
A
D
gltf2_data_structures.h
152
enum class
WrapMode
: int { CLAMP_TO_EDGE = 33071, MIRRORED_REPEAT = 33648, REPEAT = 10497 };
class in GLTF2::AttributeType::RenderMode::FilterMode
357
WrapMode
wrapS =
WrapMode
::REPEAT;
358
WrapMode
wrapT =
WrapMode
::REPEAT;
H
A
D
gltf2_loader.cpp
949
bool ParseWrapMode(LoadResult& loadResult,
WrapMode
& out, const json::value& jsonData, const string& wrapModeName)
952
if (!ParseOptionalNumber(loadResult, value, jsonData, wrapModeName, static_cast<int>(
WrapMode
::REPEAT))) {
956
out = (
WrapMode
)value;
959
case
WrapMode
::CLAMP_TO_EDGE:
960
case
WrapMode
::MIRRORED_REPEAT:
961
case
WrapMode
::REPEAT:
984
WrapMode
wrapS;
989
WrapMode
wrapT;
H
A
D
gltf2_exporter.cpp
138
GLTF2::
WrapMode
GetWrapMode(SamplerAddressMode mode)
in GetWrapMode()
145
return GLTF2::
WrapMode
::CLAMP_TO_EDGE;
in GetWrapMode()
148
return GLTF2::
WrapMode
::MIRRORED_REPEAT;
in GetWrapMode()
151
return GLTF2::
WrapMode
::REPEAT;
in GetWrapMode()
1959
if (sampler->wrapS !=
WrapMode
::REPEAT) {
in ExportSamplers()
1962
if (sampler->wrapT !=
WrapMode
::REPEAT) {
in ExportSamplers()
H
A
D
gltf2_importer.cpp
1784
SamplerAddressMode ConvertToCoreWrapMode(GLTF2::
WrapMode
mode)
in ConvertToCoreWrapMode()
1788
case GLTF2::
WrapMode
::CLAMP_TO_EDGE:
in ConvertToCoreWrapMode()
1791
case GLTF2::
WrapMode
::MIRRORED_REPEAT:
in ConvertToCoreWrapMode()
1794
case GLTF2::
WrapMode
::REPEAT:
in ConvertToCoreWrapMode()
Completed in 14 milliseconds