HomeSort by relevance Sort by last modified time
    Searched full:atlas (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /frameworks/base/libs/hwui/
AssetAtlas.h 40 * An asset atlas holds a collection of framework bitmaps in a single OpenGL
42 * inside the atlas. The atlas is generated by the framework and bound as
49 * bitmap inside the atlas.
53 * The bitmap that generated this atlas entry.
58 * Location of the bitmap inside the atlas, in pixels.
65 * inside the atlas.
78 * correct range to sample this entry from the atlas.
83 * Atlas this entry belongs to.
85 const AssetAtlas& atlas; member in struct:android::uirenderer::AssetAtlas::Entry
    [all...]
AssetAtlas.cpp 48 ALOGW("Could not create atlas image");
88 * Delegates changes to wrapping and filtering to the base atlas texture
  /frameworks/base/core/java/android/view/
IAssetAtlas.aidl 22 * Programming interface to the system assets atlas. This atlas, when
31 * Indicates whether the atlas is compatible with the specified
32 * parent process id. If the atlas' ppid does not match, this
38 * Returns the atlas buffer (texture) or null if the atlas is
44 * Returns the map of the bitmaps stored in the atlas or null
45 * if the atlas is not available yet.
ThreadedRenderer.java 421 IAssetAtlas atlas = IAssetAtlas.Stub.asInterface(binder);
423 if (atlas.isCompatible(android.os.Process.myPpid())) {
424 GraphicBuffer buffer = atlas.getBuffer();
426 long[] map = atlas.getMap();
436 if (atlas.getClass() != binder.getClass()) {
442 Log.w(LOG_TAG, "Could not acquire atlas", e);
447 Log.d("Atlas", "Validating map...");
464 Log.w("Atlas", String.format("Pointer 0x%X, not in getPreloadedDrawables?", map[i]));
  /frameworks/base/graphics/java/android/graphics/
Atlas.java 22 public class Atlas {
25 * to rotate entries to make them fit better in the atlas.
31 * be useful if the content of the atlas will be used in OpenGL using
42 * be used by an {@link Atlas}. The best algorithm to use
44 * the atlas.
54 * Represents a bitmap packed in the atlas. Each entry has a location in
55 * pixels in the atlas and a rotation flag. If the entry was rotated, the
57 * the origin remains the same) before being rendered into the atlas.
61 * Location, in pixels, of the bitmap on the X axis in the atlas.
65 * Location, in pixels, of the bitmap on the Y axis in the atlas
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AssetAtlasService.java 23 import android.graphics.Atlas;
58 * atlas texture. The resulting texture can be shared across processes to
69 private static final String LOG_TAG = "Atlas";
75 // When set to true the content of the atlas will be saved to disk
76 // in /data/system/atlas.png. The shared GraphicBuffer may be empty
88 // number of pixels we want to be able to pack in the atlas
92 // in the atlas map. This number defines the size of the array returned
102 // This boolean is set to true if an atlas was successfully
111 // Holds the atlas' data. This buffer can be mapped to
115 // Describes how bitmaps are placed in the atlas. Each bitmap i
229 Atlas atlas = new Atlas(config.type, config.width, config.height, config.flags); local
720 Atlas atlas = new Atlas(type, width, height); local
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/res/values-lv/
strings.xml 26 <item quantity="zero" msgid="9015111147509924344">"Atlas?ts: %1$d"</item>
27 <item quantity="one" msgid="8409622005831789373">"Atlas?ta: %1$d"</item>
28 <item quantity="other" msgid="479468347731745357">"Atlas?tas: %1$d"</item>
31 <string name="announce_selection" msgid="123723511662250539">"Atlas?ta: <xliff:g id="LABEL">%1$s</xliff:g>"</string>
  /external/eigen/bench/btl/cmake/
FindATLAS.cmake 7 find_library(ATLAS_LIB atlas PATHS $ENV{ATLASDIR} ${LIB_INSTALL_DIR})
16 find_file(ATLAS_LAPACK liblapack.so.3 PATHS /usr/lib/atlas $ENV{ATLASDIR} ${LIB_INSTALL_DIR})
37 find_package_handle_standard_args(ATLAS DEFAULT_MSG ATLAS_LIBRARIES)
  /frameworks/opt/datetimepicker/res/values-lv/
strings.xml 23 <string name="select_hours" msgid="7651068754188418859">"Atlas?t stundas"</string>
24 <string name="select_minutes" msgid="8327182090226828481">"Atlas?t min?tes"</string>
29 <string name="item_is_selected" msgid="2674929164900463786">"Atlas?ts: <xliff:g id="ITEM">%1$s</xliff:g>"</string>
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrTextureStripAtlas.h 36 * Try to find an atlas with the required parameters, creates a new one if necessary
43 * Add a texture to the atlas
55 * If a regular texture access without using the atlas looks like:
59 * Then when using the atlas we'd replace it with:
64 * atlas and scaleFactor, returned by getVerticalScaleFactor(), is the y-scale of the row,
65 * relative to the height of the overall atlas texture.
75 // Key to indicate an atlas row without any meaningful data stored in it
121 * Compare two atlas rows by key, so we can sort/search by key
156 // We increment gCacheCount for each atlas
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.h 36 * Try to find an atlas with the required parameters, creates a new one if necessary
43 * Add a texture to the atlas
55 * If a regular texture access without using the atlas looks like:
59 * Then when using the atlas we'd replace it with:
64 * atlas and scaleFactor, returned by getVerticalScaleFactor(), is the y-scale of the row,
65 * relative to the height of the overall atlas texture.
75 // Key to indicate an atlas row without any meaningful data stored in it
121 * Compare two atlas rows by key, so we can sort/search by key
156 // We increment gCacheCount for each atlas
  /external/chromium_org/third_party/skia/src/gpu/
GrAtlas.cpp 207 GrPlot* GrAtlasMgr::addToAtlas(GrAtlas* atlas,
210 // iterate through entire plot list for this atlas, see if we can find a hole
212 for (int i = atlas->fPlots.count()-1; i >= 0; --i) {
213 GrPlot* plot = atlas->fPlots[i];
244 // new plot for atlas, put at end of array
245 *(atlas->fPlots.append()) = plot;
255 bool GrAtlasMgr::removePlot(GrAtlas* atlas, const GrPlot* plot) {
256 // iterate through plot list for this atlas
257 int count = atlas->fPlots.count();
259 if (plot == atlas->fPlots[i])
    [all...]
GrLayerCache.h 21 // GrAtlasLocation captures an atlased item's position in the atlas. This
48 // Atlased layers get a ref to their atlas GrTexture and their GrAtlasLocation
94 // Unlike the GrFontCache, the GrTexture atlas only has one GrAtlasMgr (for 8888)
95 // and one GrPlot (for the entire atlas). As such, the GrLayerCache
GrRectanizer.h 30 // successful the position in the atlas is returned in 'loc'.
GrAtlas.h 77 // add subimage of width, height dimensions to atlas
82 bool removePlot(GrAtlas* atlas, const GrPlot* plot);
  /external/skia/src/gpu/
GrAtlas.cpp 207 GrPlot* GrAtlasMgr::addToAtlas(GrAtlas* atlas,
210 // iterate through entire plot list for this atlas, see if we can find a hole
212 for (int i = atlas->fPlots.count()-1; i >= 0; --i) {
213 GrPlot* plot = atlas->fPlots[i];
244 // new plot for atlas, put at end of array
245 *(atlas->fPlots.append()) = plot;
255 bool GrAtlasMgr::removePlot(GrAtlas* atlas, const GrPlot* plot) {
256 // iterate through plot list for this atlas
257 int count = atlas->fPlots.count();
259 if (plot == atlas->fPlots[i])
    [all...]
GrLayerCache.h 21 // GrAtlasLocation captures an atlased item's position in the atlas. This
48 // Atlased layers get a ref to their atlas GrTexture and their GrAtlasLocation
94 // Unlike the GrFontCache, the GrTexture atlas only has one GrAtlasMgr (for 8888)
95 // and one GrPlot (for the entire atlas). As such, the GrLayerCache
GrRectanizer.h 30 // successful the position in the atlas is returned in 'loc'.
GrAtlas.h 77 // add subimage of width, height dimensions to atlas
82 bool removePlot(GrAtlas* atlas, const GrPlot* plot);
  /external/eigen/bench/btl/libs/BLAS/
CMakeLists.txt 2 find_package(ATLAS)
7 set_target_properties(btl_atlas PROPERTIES COMPILE_FLAGS "-DCBLASNAME=ATLAS -DHAS_LAPACK=1")
  /external/chromium_org/ui/android/java/strings/translations/
android_ui_strings_lv.xtb 8 <translation id="793640675459356075">Neizdev?s atv?rt atlas?to failu.</translation>
  /external/eigen/bench/btl/data/
perlib_plot_settings.txt 7 ATLAS ; with lines lw 3 lt 1 lc rgbcolor "#008000"
  /packages/screensavers/PhotoTable/res/values-lv/
strings.xml 26 <string name="need_to_configure" msgid="1269102638159389032">"Nav atlas?ts neviens fotoatt?ls."</string>
27 <string name="photodream_select_all" msgid="6364858563337927827">"Atlas?t visus"</string>
  /packages/wallpapers/LivePicker/res/values-lv/
strings.xml 22 <string name="application_name" msgid="4119979710394894209">"Main?go fona tape?u atlas?t?js"</string>
23 <string name="live_wallpaper_picker_title" msgid="4811278937634144675">"Re?llaika tapetes atlas??ana"</string>
  /frameworks/opt/colorpicker/res/values-lv/
strings.xml 21 <string name="color_swatch_description_selected" msgid="5020921249944943124">"Atlas?ta kr?sa Nr. <xliff:g id="COLOR_INDEX">%1$d</xliff:g>"</string>

Completed in 798 milliseconds

1 2 3 4 5