HomeSort by relevance Sort by last modified time
    Searched defs:Asset (Results 1 - 3 of 3) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
Asset.java 33 package com.jme3.asset;
36 * Implementing the asset interface allows use of smart asset management.
38 * Smart asset management requires cooperation from the {@link AssetKey}.
41 * create a clone of the asset and cannot return the same reference,
44 * If the {@link AssetManager#loadAsset(com.jme3.asset.AssetKey) } method
45 * is called twice with the same asset key (equals() wise, not necessarily reference wise)
46 * then both assets will have the same asset key set (reference wise) via
47 * {@link Asset#setKey(com.jme3.asset.AssetKey) }, then this asset ke
    [all...]
  /frameworks/base/libs/androidfw/
Asset.cpp 18 // Provide access to a read-only asset.
21 #define LOG_TAG "asset"
24 #include <androidfw/Asset.h>
50 static Asset* gHead = NULL;
51 static Asset* gTail = NULL;
53 int32_t Asset::getGlobalCount()
59 String8 Asset::getAssetAllocations()
63 Asset* cur = gHead;
79 Asset::Asset(void
    [all...]
  /frameworks/base/include/androidfw/
Asset.h 18 // Class providing access to a read-only asset. Asset objects are NOT
41 * "Asset" is the base class for all types of assets. The classes below
45 class Asset {
47 virtual ~Asset(void);
52 /* used when opening an asset */
80 * Close the asset, freeing all associated resources.
100 * Open a new file descriptor that can be used to read this asset.
102 * asset is compressed).
107 * Return whether this asset's buffer is allocated in RAM (not mmapped)
    [all...]

Completed in 55 milliseconds