/hardware/google/gfxstream/host/vulkan/cereal/common/ |
D | goldfish_vk_transform.h | 43 class VkDecoderGlobalState; variable 62 void transform_tohost_VkExtent2D(VkDecoderGlobalState* resourceTracker, VkExtent2D* toTransform); 64 void transform_fromhost_VkExtent2D(VkDecoderGlobalState* resourceTracker, VkExtent2D* toTransform); 66 void transform_tohost_VkExtent3D(VkDecoderGlobalState* resourceTracker, VkExtent3D* toTransform); 68 void transform_fromhost_VkExtent3D(VkDecoderGlobalState* resourceTracker, VkExtent3D* toTransform); 70 void transform_tohost_VkOffset2D(VkDecoderGlobalState* resourceTracker, VkOffset2D* toTransform); 72 void transform_fromhost_VkOffset2D(VkDecoderGlobalState* resourceTracker, VkOffset2D* toTransform); 74 void transform_tohost_VkOffset3D(VkDecoderGlobalState* resourceTracker, VkOffset3D* toTransform); 76 void transform_fromhost_VkOffset3D(VkDecoderGlobalState* resourceTracker, VkOffset3D* toTransform); 78 void transform_tohost_VkRect2D(VkDecoderGlobalState* resourceTracker, VkRect2D* toTransform); [all …]
|
D | goldfish_vk_transform.cpp | 40 void transform_tohost_extension_struct(VkDecoderGlobalState* resourceTracker, 43 void transform_fromhost_extension_struct(VkDecoderGlobalState* resourceTracker, 47 void transform_tohost_VkExtent2D(VkDecoderGlobalState* resourceTracker, VkExtent2D* toTransform) { in transform_tohost_VkExtent2D() 52 void transform_fromhost_VkExtent2D(VkDecoderGlobalState* resourceTracker, VkExtent2D* toTransform) { in transform_fromhost_VkExtent2D() 57 void transform_tohost_VkExtent3D(VkDecoderGlobalState* resourceTracker, VkExtent3D* toTransform) { in transform_tohost_VkExtent3D() 62 void transform_fromhost_VkExtent3D(VkDecoderGlobalState* resourceTracker, VkExtent3D* toTransform) { in transform_fromhost_VkExtent3D() 67 void transform_tohost_VkOffset2D(VkDecoderGlobalState* resourceTracker, VkOffset2D* toTransform) { in transform_tohost_VkOffset2D() 72 void transform_fromhost_VkOffset2D(VkDecoderGlobalState* resourceTracker, VkOffset2D* toTransform) { in transform_fromhost_VkOffset2D() 77 void transform_tohost_VkOffset3D(VkDecoderGlobalState* resourceTracker, VkOffset3D* toTransform) { in transform_tohost_VkOffset3D() 82 void transform_fromhost_VkOffset3D(VkDecoderGlobalState* resourceTracker, VkOffset3D* toTransform) { in transform_fromhost_VkOffset3D() [all …]
|
/hardware/google/gfxstream/host/vulkan/ |
D | VulkanHandleMapping.h | 27 class VkDecoderGlobalState; variable 31 VulkanHandleMapping(VkDecoderGlobalState* state) : m_state(state) {} in VulkanHandleMapping() 43 VkDecoderGlobalState* m_state;
|
D | VkDecoderGlobalState.cpp | 350 class VkDecoderGlobalState::Impl { 7762 VkDecoderGlobalState::VkDecoderGlobalState() : mImpl(new VkDecoderGlobalState::Impl()) {} in VkDecoderGlobalState() function in gfxstream::vk::VkDecoderGlobalState 7764 VkDecoderGlobalState::~VkDecoderGlobalState() = default; 7766 static VkDecoderGlobalState* sGlobalDecoderState = nullptr; 7769 VkDecoderGlobalState* VkDecoderGlobalState::get() { in get() 7771 sGlobalDecoderState = new VkDecoderGlobalState; in get() 7776 void VkDecoderGlobalState::reset() { in reset() 7782 bool VkDecoderGlobalState::snapshotsEnabled() const { return mImpl->snapshotsEnabled(); } in snapshotsEnabled() 7784 VkDecoderGlobalState::SnapshotState VkDecoderGlobalState::getSnapshotState() const { in getSnapshotState() 7788 const gfxstream::host::FeatureSet& VkDecoderGlobalState::getFeatures() const { return mImpl->getFea… in getFeatures() [all …]
|
D | Android.bp | 58 "VkDecoderGlobalState.cpp", 73 "VkDecoderGlobalState.cpp", // took more than 400 seconds
|
D | BUILD.bazel | 18 "VkDecoderGlobalState.cpp", 33 "VkDecoderGlobalState.cpp",
|
D | VkDecoderGlobalState.h | 65 class VkDecoderGlobalState { 67 VkDecoderGlobalState(); 68 ~VkDecoderGlobalState(); 72 static VkDecoderGlobalState* get(); 810 BoxedHandleUnwrapMapping(VkDecoderGlobalState* state) : VulkanHandleMapping(state) {} in BoxedHandleUnwrapMapping() 849 BoxedHandleWrapMapping(VkDecoderGlobalState* state) : VulkanHandleMapping(state) {} in BoxedHandleWrapMapping() 900 BoxedHandleCreateMapping(VkDecoderGlobalState* state) : VulkanHandleMapping(state) {} in BoxedHandleCreateMapping() 908 BoxedHandleDestroyMapping(VkDecoderGlobalState* state) : VulkanHandleMapping(state) {} in BoxedHandleDestroyMapping() 916 BoxedHandleUnwrapAndDeleteMapping(VkDecoderGlobalState* state) : VulkanHandleMapping(state) {} in BoxedHandleUnwrapAndDeleteMapping() 931 BoxedHandleUnwrapAndDeletePreserveBoxedMapping(VkDecoderGlobalState* state) in BoxedHandleUnwrapAndDeletePreserveBoxedMapping()
|
D | meson.build | 27 'VkDecoderGlobalState.cpp',
|
D | CMakeLists.txt | 19 VkDecoderGlobalState.cpp
|
D | VkCommonOperations.cpp | 1410 VkDecoderGlobalState::reset(); in teardownGlobalVkEmulation() 2706 VkDecoderGlobalState::get()->getSnapshotState() == VkDecoderGlobalState::Loading; in updateColorBufferFromBytesLocked()
|
D | VkSubDecoder.cpp | 43 VkDecoderGlobalState* globalstate = VkDecoderGlobalState::get(); in subDecode()
|
D | VkDecoder.cpp | 69 m_state(VkDecoderGlobalState::get()), in Impl() 92 VkDecoderGlobalState* m_state; 4922 auto state = VkDecoderGlobalState::get(); in decode()
|
/hardware/google/gfxstream/host/ |
D | SyncThread.cpp | 319 auto decoder = vk::VkDecoderGlobalState::get(); in triggerWaitVkQsriWithCompletionCallback() 336 auto decoder = vk::VkDecoderGlobalState::get(); in triggerWaitVkQsri() 440 auto decoder = vk::VkDecoderGlobalState::get(); in doSyncWaitVk()
|
D | RenderControl.cpp | 326 vk::VkDecoderGlobalState::get()->getHostFeatureSupport().supportsVulkan; in shouldEnableVulkan() 330 auto supportInfo = vk::VkDecoderGlobalState::get()->getHostFeatureSupport(); in shouldEnableDeferredVulkanCommands() 336 auto supportInfo = vk::VkDecoderGlobalState::get()->getHostFeatureSupport(); in shouldEnableCreateResourcesWithRequirements()
|
D | FrameBuffer.cpp | 2327 if (m_features.VulkanSnapshots.enabled && vk::VkDecoderGlobalState::get()) { in onSave() 2328 vk::VkDecoderGlobalState::get()->save(stream); in onSave() 2604 if (m_features.VulkanSnapshots.enabled && vk::VkDecoderGlobalState::get()) { in onLoad() 2607 vk::VkDecoderGlobalState::get()->load(stream, gfxLogger, m_healthMonitor.get()); in onLoad()
|
/hardware/google/gfxstream/host/vulkan/testing/ |
D | VkDecoderTestDispatch.h | 30 : mVk(vk), mDgs(VkDecoderGlobalState::get()), mBp(bp), mDecoderContext(decoderContext) {} in VkDecoderTestDispatch() 288 VkDecoderGlobalState* mDgs;
|
D | VulkanTestHelper.cpp | 93 VkDecoderGlobalState::reset(); in destroy()
|