/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | CommandProcessor.cpp | 120 void CommandProcessorTask::initProcessCommands(bool hasProtectedContent, in initProcessCommands() argument 127 mHasProtectedContent = hasProtectedContent; in initProcessCommands() 219 bool hasProtectedContent, in initFlushAndQueueSubmit() argument 234 mHasProtectedContent = hasProtectedContent; in initFlushAndQueueSubmit() 239 bool hasProtectedContent, in initOneOffQueueSubmit() argument 252 mHasProtectedContent = hasProtectedContent; in initOneOffQueueSubmit() 289 CommandBatch::CommandBatch() : commandPool(nullptr), hasProtectedContent(false) {} in CommandBatch() 305 std::swap(hasProtectedContent, other.hasProtectedContent); in operator =() 313 hasProtectedContent = false; in destroy() 466 this, task->hasProtectedContent(), task->getPriority(), task->getWaitSemaphores(), in processTask() [all …]
|
D | CommandProcessor.h | 88 void initProcessCommands(bool hasProtectedContent, 101 bool hasProtectedContent, 109 bool hasProtectedContent, 135 bool hasProtectedContent() const { return mHasProtectedContent; } in hasProtectedContent() function 202 bool hasProtectedContent; member 287 bool hasProtectedContent, 297 bool hasProtectedContent, 319 bool hasProtectedContent, 322 bool hasProtectedContent, 352 bool hasProtectedContent, [all …]
|
D | SurfaceVk.cpp | 124 bool hasProtectedContent, in InitImageHelper() argument 145 hasProtectedContent ? VK_IMAGE_CREATE_PROTECTED_BIT : vk::kVkImageCreateFlagsNone; in InitImageHelper() 149 gl::LevelIndex(0), 1, 1, isRobustResourceInitEnabled, hasProtectedContent)); in InitImageHelper() 302 bool hasProtectedContent) in initialize() argument 305 isRobustResourceInitEnabled, hasProtectedContent, &image)); in initialize() 309 if (hasProtectedContent) in initialize() 314 image.initMemory(displayVk, hasProtectedContent, renderer->getMemoryProperties(), flags)); in initialize() 370 samples, robustInit, mState.hasProtectedContent())); in initializeImpl() 379 robustInit, mState.hasProtectedContent())); in initializeImpl() 599 (void)renderer->finish(displayVk, mState.hasProtectedContent()); in destroy() [all …]
|
D | RendererVk.h | 295 bool hasProtectedContent, 307 bool hasProtectedContent, 426 bool hasProtectedContent, 442 angle::Result finish(vk::Context *context, bool hasProtectedContent); 446 bool hasProtectedContent, 450 bool hasProtectedContent,
|
D | MemoryObjectVk.cpp | 205 bool hasProtectedContent = mProtectedMemory; in createImage() local 210 layerCount, contextVk->isRobustResourceInitEnabled(), hasProtectedContent)); in createImage() 254 VkMemoryPropertyFlags flags = hasProtectedContent ? VK_MEMORY_PROPERTY_PROTECTED_BIT : 0; in createImage()
|
D | VulkanSecondaryCommandBuffer.cpp | 23 bool hasProtectedContent) in InitializeCommandPool() argument 29 if (hasProtectedContent) in InitializeCommandPool()
|
D | PersistentCommandPool.cpp | 26 bool hasProtectedContent, in init() argument 38 if (hasProtectedContent) in init()
|
D | RendererVk.cpp | 3130 bool hasProtectedContent, in queueSubmitOneOff() argument 3147 context, hasProtectedContent, priority, primary.getHandle(), waitSemaphore, in queueSubmitOneOff() 3154 context, hasProtectedContent, priority, primary.getHandle(), waitSemaphore, in queueSubmitOneOff() 3339 bool hasProtectedContent, in getCommandBufferOneOff() argument 3347 (hasProtectedContent ? VK_COMMAND_POOL_CREATE_PROTECTED_BIT : 0); in getCommandBufferOneOff() 3379 bool hasProtectedContent, in submitFrame() argument 3396 context, hasProtectedContent, contextPriority, waitSemaphores, waitSemaphoreStageMasks, in submitFrame() 3406 context, hasProtectedContent, contextPriority, waitSemaphores, waitSemaphoreStageMasks, in submitFrame() 3473 angle::Result RendererVk::finish(vk::Context *context, bool hasProtectedContent) in finish() argument 3508 bool hasProtectedContent, in flushRenderPassCommands() argument [all …]
|
D | PersistentCommandPool.h | 31 angle::Result init(vk::Context *context, bool hasProtectedContent, uint32_t queueFamilyIndex);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Image.cpp | 141 bool ImageSibling::hasProtectedContent() const in hasProtectedContent() function in egl::ImageSibling 143 return mTargetOf.get() && mTargetOf->hasProtectedContent(); in hasProtectedContent() 214 bool ExternalImageSibling::hasProtectedContent() const in hasProtectedContent() function in egl::ExternalImageSibling 216 return mImplementation->hasProtectedContent(); in hasProtectedContent() 266 hasProtectedContent(static_cast<bool>(attribs.get(EGL_PROTECTED_CONTENT_EXT, EGL_FALSE))) in ImageState() 431 bool Image::hasProtectedContent() const in hasProtectedContent() function in egl::Image 433 return mState.hasProtectedContent; in hasProtectedContent() 448 mState.hasProtectedContent = externalSibling->hasProtectedContent(); in initialize()
|
D | Image.h | 55 bool hasProtectedContent() const override; 104 bool hasProtectedContent() const override; 143 bool hasProtectedContent; member 169 bool hasProtectedContent() const;
|
D | Renderbuffer.cpp | 95 void RenderbufferState::setProtectedContent(bool hasProtectedContent) in setProtectedContent() argument 97 mHasProtectedContent = hasProtectedContent; in setProtectedContent() 188 mState.setProtectedContent(image->hasProtectedContent()); in setStorageEGLImageTarget()
|
D | Surface.h | 52 bool hasProtectedContent() const; 137 bool hasProtectedContent() const override;
|
D | Surface.cpp | 51 bool SurfaceState::hasProtectedContent() const in hasProtectedContent() function in egl::SurfaceState 648 bool Surface::hasProtectedContent() const in hasProtectedContent() function in egl::Surface 650 return mState.hasProtectedContent(); in hasProtectedContent()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/android/ |
D | HardwareBufferImageSiblingVkAndroid.cpp | 281 if (hasProtectedContent()) in initImpl() 301 robustInitEnabled, hasProtectedContent())); in initImpl() 321 (hasProtectedContent() ? VK_MEMORY_PROPERTY_PROTECTED_BIT : 0); in initImpl() 399 bool HardwareBufferImageSiblingVkAndroid::hasProtectedContent() const in hasProtectedContent() function in rx::HardwareBufferImageSiblingVkAndroid
|
D | HardwareBufferImageSiblingVkAndroid.h | 36 bool hasProtectedContent() const override;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/linux/ |
D | DmaBufImageSiblingVkLinux.cpp | 375 vk::kVkImageCreateFlagsNone | (hasProtectedContent() ? VK_IMAGE_CREATE_PROTECTED_BIT : 0); in initImpl() 460 gl::LevelIndex(0), 1, 1, kIsRobustInitEnabled, hasProtectedContent())); in initImpl() 467 (hasProtectedContent() ? VK_MEMORY_PROPERTY_PROTECTED_BIT : 0); in initImpl() 530 bool DmaBufImageSiblingVkLinux::hasProtectedContent() const in hasProtectedContent() function in rx::DmaBufImageSiblingVkLinux
|
D | DmaBufImageSiblingVkLinux.h | 32 bool hasProtectedContent() const override;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/android/ |
D | NativeBufferImageSiblingAndroid.h | 31 bool hasProtectedContent() const override;
|
D | NativeBufferImageSiblingAndroid.cpp | 55 bool NativeBufferImageSiblingAndroid::hasProtectedContent() const in hasProtectedContent() function in rx::NativeBufferImageSiblingAndroid
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/ |
D | DmaBufImageSiblingEGL.h | 31 bool hasProtectedContent() const override;
|
D | DmaBufImageSiblingEGL.cpp | 57 bool DmaBufImageSiblingEGL::hasProtectedContent() const in hasProtectedContent() function in rx::DmaBufImageSiblingEGL
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | ImageImpl.h | 43 virtual bool hasProtectedContent() const = 0;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | ExternalImageSiblingImpl11.h | 33 bool hasProtectedContent() const override;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
D | ImageMtl.h | 40 bool hasProtectedContent() const override;
|