HomeSort by relevance Sort by last modified time
    Searched refs:layerProperties (Results 1 - 6 of 6) sorted by null

  /external/deqp/external/vulkancts/framework/vulkan/
vkQueryUtil.cpp 264 bool isCompatible (const VkLayerProperties& layerProperties, const RequiredLayer& required)
266 if (required.name != layerProperties.layerName)
269 if (required.minSpecVersion && required.minSpecVersion.get() > layerProperties.specVersion)
272 if (required.maxSpecVersion && required.maxSpecVersion.get() < layerProperties.specVersion)
275 if (required.minImplVersion && required.minImplVersion.get() > layerProperties.implementationVersion)
278 if (required.maxImplVersion && required.maxImplVersion.get() < layerProperties.implementationVersion)
vkQueryUtil.hpp 96 bool isCompatible (const VkLayerProperties& layerProperties, const RequiredLayer& required);
  /frameworks/base/libs/hwui/pipeline/skia/
RenderNodeDrawable.cpp 140 static bool layerNeedsPaint(const LayerProperties& properties,
175 const LayerProperties& layerProperties = properties.layerProperties();
181 if (layerNeedsPaint(layerProperties, alphaMultiplier, &tmpPaint)) {
205 bool needsLayer = layerNeedsPaint(layerProperties, alphaMultiplier, &paint);
  /frameworks/base/libs/hwui/
RecordedOp.h 515 , alpha(node.properties().layerProperties().alpha() / 255.0f)
516 , mode(node.properties().layerProperties().xferMode())
517 , colorFilter(node.properties().layerProperties().colorFilter()) {}
525 // pointer to object owned by either LayerProperties, or a recorded Paint object in a
RenderProperties.cpp 33 LayerProperties::LayerProperties() {
37 LayerProperties::~LayerProperties() {
41 void LayerProperties::reset() {
46 bool LayerProperties::setColorFilter(SkColorFilter* filter) {
52 bool LayerProperties::setFromPaint(const SkPaint* paint) {
60 LayerProperties& LayerProperties::operator=(const LayerProperties& other)
    [all...]
RenderProperties.h 70 class ANDROID_API LayerProperties {
118 LayerProperties& operator=(const LayerProperties& other);
121 LayerProperties();
122 ~LayerProperties();
590 const LayerProperties& layerProperties() const {
594 LayerProperties& mutateLayerProperties() {
656 LayerProperties mLayerProperties;

Completed in 114 milliseconds