HomeSort by relevance Sort by last modified time
    Searched defs:Layer (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/native/vulkan/libvulkan/
layers_extensions.h 25 struct Layer;
29 LayerRef(const Layer* layer);
36 operator const Layer*() const { return layer_; }
42 const Layer* layer_;
48 const Layer& GetLayer(uint32_t index);
49 const Layer* FindLayer(const char* name);
51 const VkLayerProperties& GetLayerProperties(const Layer& layer);
52 bool IsLayerGlobal(const Layer& layer)
    [all...]
layers_extensions.cpp 54 struct Layer {
58 // true if the layer intercepts vkCreateDevice and device commands
90 std::vector<Layer>& instance_layers) const;
92 void* GetGPA(const Layer& layer,
107 ALOGV("opening layer library '%s'", path_.c_str());
108 // Libraries in the system layer library dir can't be loaded into
125 ALOGE("failed to load layer library '%s': %s", path_.c_str(),
137 ALOGV("closing layer library '%s'", path_.c_str());
144 std::vector<Layer>& instance_layers) const
215 Layer layer; local
443 auto layer = local
    [all...]
  /frameworks/base/libs/hwui/
GpuMemoryTracker.h 36 Layer,
Layer.cpp 17 #include "Layer.h"
30 ATRACE_FORMAT("%s HW Layer DisplayList %s %ux%u", \
38 Layer::Layer(Type layerType, RenderState& renderState, uint32_t layerWidth, uint32_t layerHeight)
39 : GpuMemoryTracker(GpuObjectType::Layer)
54 Layer::~Layer() {
66 void Layer::onGlContextLost() {
71 uint32_t Layer::computeIdealWidth(uint32_t layerWidth) {
75 uint32_t Layer::computeIdealHeight(uint32_t layerHeight)
    [all...]
Layer.h 56 * A layer has dimensions and is backed by an OpenGL texture or FBO.
58 class Layer : public VirtualLightRefBase, GpuMemoryTracker {
65 // layer lifecycle, controlled from outside
76 Layer(Type type, RenderState& renderState, uint32_t layerWidth, uint32_t layerHeight);
77 ~Layer();
90 * Sets this layer's region to a rectangle. Computes the appropriate
100 const float height = layer.getHeight();
105 regionRect.translate(layer.left, layer.top);
124 * Resize the layer and its texture if needed
306 Rect layer; member in class:android::uirenderer::Layer
    [all...]