Home
last modified time | relevance | path

Searched refs:accessHints (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DFrameType.java345 int accessHints = writer.mAccessHints | reader.mAccessHints; in tryMergeBuffers() local
346 return FrameType.fetchType(writer.mElementId, writer.mDimensions, accessHints); in tryMergeBuffers()
404 private static FrameType fetchType(int elementId, int dimensions, int accessHints) { in fetchType() argument
405 return fetchType(elementId, dimensions, accessHints, null); in fetchType()
413 int elementId, int dimensions, int accessHints, Class<?> clazz) { in fetchType() argument
414 String typeKey = FrameType.keyValueForType(elementId, dimensions, accessHints, clazz); in fetchType()
417 type = new FrameType(elementId, dimensions, accessHints, clazz); in fetchType()
423 private FrameType(int elementId, int dimensions, int accessHints, Class<?> clazz) { in FrameType() argument
427 mAccessHints = accessHints; in FrameType()