Searched refs:atlas (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/skia/src/gpu/
H A DGrAtlas.h31 static void FreeLList(GrAtlas* atlas) { argument
32 while (NULL != atlas) {
33 GrAtlas* next = atlas->fNext;
34 delete atlas;
35 atlas = next;
39 static void MarkAllUnused(GrAtlas* atlas) { argument
40 while (NULL != atlas) {
41 atlas->fUsed = false;
42 atlas = atlas
78 deleteAtlas(GrAtlas* atlas) argument
[all...]
H A DGrAtlas.cpp87 GrAtlas* atlas = *startAtlas; local
89 while (NULL != atlas) {
90 if (!atlas->used()) {
91 *atlasRef = atlas->fNext;
92 atlasMgr->deleteAtlas(atlas);
93 atlas = *atlasRef;
96 atlasRef = &atlas->fNext;
97 atlas = atlas->fNext;
197 GrAtlas* GrAtlasMgr::addToAtlas(GrAtlas** atlas, argument
[all...]
H A DGrTextStrike.cpp162 atlas and a position within that texture.
250 GrAtlas* atlas = fAtlasMgr->addToAtlas(&fAtlas, glyph->width(), local
254 if (NULL == atlas) {
258 glyph->fAtlas = atlas;
259 atlas->setUsed(true);
H A DGrTextStrike.h49 // returns true if an atlas was removed
71 bool purgeAtlasAtY(GrAtlas* atlas, int yCoord);
87 // remove an unused atlas and its strike (if necessary)
/external/skia/src/gpu/
H A DGrAtlas.h31 static void FreeLList(GrAtlas* atlas) { argument
32 while (NULL != atlas) {
33 GrAtlas* next = atlas->fNext;
34 delete atlas;
35 atlas = next;
39 static void MarkAllUnused(GrAtlas* atlas) { argument
40 while (NULL != atlas) {
41 atlas->fUsed = false;
42 atlas = atlas
78 deleteAtlas(GrAtlas* atlas) argument
[all...]
H A DGrAtlas.cpp87 GrAtlas* atlas = *startAtlas; local
89 while (NULL != atlas) {
90 if (!atlas->used()) {
91 *atlasRef = atlas->fNext;
92 atlasMgr->deleteAtlas(atlas);
93 atlas = *atlasRef;
96 atlasRef = &atlas->fNext;
97 atlas = atlas->fNext;
197 GrAtlas* GrAtlasMgr::addToAtlas(GrAtlas** atlas, argument
[all...]
H A DGrTextStrike.cpp162 atlas and a position within that texture.
250 GrAtlas* atlas = fAtlasMgr->addToAtlas(&fAtlas, glyph->width(), local
254 if (NULL == atlas) {
258 glyph->fAtlas = atlas;
259 atlas->setUsed(true);
H A DGrTextStrike.h49 // returns true if an atlas was removed
71 bool purgeAtlasAtY(GrAtlas* atlas, int yCoord);
87 // remove an unused atlas and its strike (if necessary)
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DTextureAtlas.java61 * <b><code>TextureAtlas</code></b> allows combining multiple textures to one texture atlas.
64 * freely chosen "map names". The textures are automatically placed on the atlas map and the
68 * <p>The first map name used is the "master map" that defines new locations on the atlas. Secondary
77 * inside the atlas is stored. A texture with an existing key name is never added more than once
78 * to the atlas. You can access the information for each texture or geometry texture via helper methods.</p>
81 * to point at the new locations of its texture inside the atlas (if the texture exists inside the atlas).</p>
84 * will not work correctly as their new coordinates leak into other parts of the atlas and thus display
87 * <p>Also note that textures are not scaled and the atlas needs to be large enough to hold all textures.
89 * atlas bein
521 applyAtlasCoords(List<Geometry> geometries, Mesh outMesh, TextureAtlas atlas) argument
[all...]
/external/ceres-solver/scripts/
H A Dceres-solver.spec28 # Use atlas for BLAS and LAPACK
29 BuildRequires: atlas-devel

Completed in 581 milliseconds