Package com.openinventor.inventor.caches
Class SoCache
java.lang.Object
com.openinventor.inventor.Inventor
com.openinventor.inventor.caches.SoBaseContextCache
com.openinventor.inventor.caches.SoCache
- All Implemented Interfaces:
SafeDisposable
- Direct Known Subclasses:
SoBoundingBoxCache
,SoNormalCache
,SoPrimitiveCountCache
,SoTangentCache
-
Nested Class Summary
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
Field Summary
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addCacheDependency
(SoState state, SoCache cache) Adds a dependency of this instance on another cache instance.void
addElement
(SoElement elt) Adds an element to elements-used list if not already there.getCachedInvalidElement
(SoState state) AssumingisValid()
returns false, this will return the first cached element that is invalid (auto-caching uses this in its heuristic).getInvalidElement
(SoState state) AssumingisValid()
returns false, this will return the first state element that is invalid (auto-caching uses this in its heuristic).void
Make this cache invalid.boolean
Returns true if cache is valid with respect to the given state.boolean
Return is the given element is valid True if the element is not monitored.Methods inherited from class com.openinventor.inventor.caches.SoBaseContextCache
dispose, isContextDependent, isDisposable, release, setContextDependent, setContextDependent
Methods inherited from class com.openinventor.inventor.Inventor
getNativeResourceHandle
-
Constructor Details
-
SoCache
Constructor. Takes the state in effect when the cache is used; it is assumed that the state is pushed before the cache is created.
-
-
Method Details
-
addCacheDependency
Adds a dependency of this instance on another cache instance. The default method takes care of adding dependencies from the child cache. -
addElement
Adds an element to elements-used list if not already there. -
isValid
Return is the given element is valid True if the element is not monitored. -
invalidate
public void invalidate()Make this cache invalid. -
getInvalidElement
AssumingisValid()
returns false, this will return the first state element that is invalid (auto-caching uses this in its heuristic). Returns NULL if the cache is not invalid because of an element or if the cache is valid. -
isValid
Returns true if cache is valid with respect to the given state. -
getCachedInvalidElement
AssumingisValid()
returns false, this will return the first cached element that is invalid (auto-caching uses this in its heuristic). Returns NULL if the cache is not invalid because of an element or if the cache is valid.
-