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:atlasDimensions
(Results
1 - 7
of
7
) sorted by relevance
/third_party/skia/src/gpu/effects/
H
A
D
GrDistanceFieldGeoProc.cpp
38
const SkISize&
atlasDimensions
= dfa8gp.fAtlasDimensions;
variable
39
SkASSERT(SkIsPow2(
atlasDimensions
.fWidth) && SkIsPow2(
atlasDimensions
.fHeight));
41
if (fAtlasDimensions !=
atlasDimensions
) {
43
1.0f /
atlasDimensions
.fWidth,
44
1.0f /
atlasDimensions
.fHeight);
45
fAtlasDimensions =
atlasDimensions
;
335
const SkISize&
atlasDimensions
= dfpgp.fAtlasDimensions;
variable
336
SkASSERT(SkIsPow2(
atlasDimensions
.fWidth) && SkIsPow2(
atlasDimensions
610
const SkISize&
atlasDimensions
= dflcd.fAtlasDimensions;
global()
variable
[all...]
H
A
D
GrBitmapTextGeoProc.cpp
31
const SkISize&
atlasDimensions
= btgp.fAtlasDimensions;
variable
32
SkASSERT(SkIsPow2(
atlasDimensions
.fWidth) && SkIsPow2(
atlasDimensions
.fHeight));
34
if (fAtlasDimensions !=
atlasDimensions
) {
36
1.0f /
atlasDimensions
.fWidth,
37
1.0f /
atlasDimensions
.fHeight);
38
fAtlasDimensions =
atlasDimensions
;
/third_party/skia/src/gpu/text/
H
A
D
GrAtlasManager.cpp
312
SkISize
atlasDimensions
= fAtlasConfig.
atlasDimensions
(format);
local
319
atlasDimensions
.width(),
atlasDimensions
.height(),
/third_party/skia/src/gpu/
H
A
D
GrDrawOpAtlas.cpp
735
SkISize GrDrawOpAtlasConfig::
atlasDimensions
(GrMaskFormat type) const {
in atlasDimensions()
function in GrDrawOpAtlasConfig
747
SkISize
atlasDimensions
= this->
atlasDimensions
(type);
in plotDimensions()
local
754
int plotWidth =
atlasDimensions
.width() >= 1024 ? 512 : 256;
in plotDimensions()
755
int plotHeight =
atlasDimensions
.height() >= 1024 ? 512 : 256;
in plotDimensions()
759
int plotWidth =
atlasDimensions
.width() >= 2048 ? 512 : 256;
in plotDimensions()
760
int plotHeight =
atlasDimensions
.height() >= 2048 ? 512 : 256;
in plotDimensions()
H
A
D
GrDrawOpAtlas.h
589
SkISize
atlasDimensions
(GrMaskFormat type) const;
/third_party/skia/src/gpu/ops/
H
A
D
SmallPathAtlasMgr.cpp
58
SkISize size = atlasConfig.
atlasDimensions
(kA8_GrMaskFormat);
in initAtlas()
/third_party/skia/tests/
H
A
D
DrawOpAtlasTest.cpp
257
REPORTER_ASSERT(reporter, config.
atlasDimensions
(maskFormat) == expectedDimensions);
in test_atlas_config()
Completed in 10 milliseconds