Searched defs:transforms (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DUtilities.java256 * Updates {@param transforms} to be the same size as {@param tasks}.
258 public static void matchTaskListSize(List<Task> tasks, List<TaskViewTransform> transforms) { argument
259 // We can reuse the task transforms where possible to reduce object allocation
260 int taskTransformCount = transforms.size();
263 // If there are less transforms than tasks, then add as many transforms as necessary
265 transforms.add(new TaskViewTransform());
268 // If there are more transforms than tasks, then just subset the transform list
269 transforms.subList(taskCount, taskTransformCount).clear();
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp244 list<uint32_t> transforms; member in struct:meas
473 measPtr->transforms = supportedTransforms(format->format);
474 testPrintI(" transforms: %s",
475 transformList2str(measPtr->transforms).c_str());
669 // Measures what transforms (i.e. flip horizontal, rotate 180) are
/frameworks/native/opengl/libagl/
H A Dcontext.h613 transform_state_t transforms; member in struct:android::gl::ogles_context_t

Completed in 440 milliseconds