Home
last modified time | relevance | path

Searched defs:gpu (Results 1 – 25 of 322) sorted by relevance

12345678910>>...13

/third_party/flutter/skia/src/gpu/vk/
DGrVkCommandBuffer.cpp80 void GrVkCommandBuffer::releaseResources(GrVkGpu* gpu) { in releaseResources()
113 void GrVkCommandBuffer::pipelineBarrier(const GrVkGpu* gpu, in pipelineBarrier()
171 void GrVkCommandBuffer::submitPipelineBarriers(const GrVkGpu* gpu) { in submitPipelineBarriers()
203 void GrVkCommandBuffer::bindInputBuffer(GrVkGpu* gpu, uint32_t binding, in bindInputBuffer()
222 void GrVkCommandBuffer::bindIndexBuffer(GrVkGpu* gpu, const GrVkIndexBuffer* ibuffer) { in bindIndexBuffer()
237 void GrVkCommandBuffer::clearAttachments(const GrVkGpu* gpu, in clearAttachments()
265 void GrVkCommandBuffer::bindDescriptorSets(const GrVkGpu* gpu, in bindDescriptorSets()
284 void GrVkCommandBuffer::bindPipeline(const GrVkGpu* gpu, const GrVkPipeline* pipeline) { in bindPipeline()
292 void GrVkCommandBuffer::drawIndexed(const GrVkGpu* gpu, in drawIndexed()
309 void GrVkCommandBuffer::draw(const GrVkGpu* gpu, in draw()
[all …]
DGrVkDescriptorSetManager.cpp19 GrVkDescriptorSetManager* GrVkDescriptorSetManager::CreateUniformManager(GrVkGpu* gpu) { in CreateUniformManager()
33 GrVkGpu* gpu, VkDescriptorType type, const GrVkUniformHandler& uniformHandler) { in CreateSamplerManager()
45 GrVkGpu* gpu, VkDescriptorType type, const SkTArray<uint32_t>& visibilities) { in CreateSamplerManager()
55 GrVkGpu* gpu, VkDescriptorType type, in GrVkDescriptorSetManager()
78 const GrVkDescriptorSet* GrVkDescriptorSetManager::getDescriptorSet(GrVkGpu* gpu, in getDescriptorSet()
100 void GrVkDescriptorSetManager::release(GrVkGpu* gpu) { in release()
191 GrVkGpu* gpu, in DescriptorPoolManager()
278 void GrVkDescriptorSetManager::DescriptorPoolManager::getNewPool(GrVkGpu* gpu) { in getNewPool()
294 void GrVkDescriptorSetManager::DescriptorPoolManager::getNewDescriptorSet(GrVkGpu* gpu, in getNewDescriptorSet()
317 void GrVkDescriptorSetManager::DescriptorPoolManager::freeGPUResources(GrVkGpu* gpu) { in freeGPUResources()
DGrVkUniformBuffer.h23 void* map(GrVkGpu* gpu) { in map()
26 void unmap(GrVkGpu* gpu) { in unmap()
31 bool updateData(GrVkGpu* gpu, const void* src, size_t srcSizeInBytes, in updateData()
35 void release(const GrVkGpu* gpu) { this->vkRelease(gpu); } in release()
52 GrVkUniformBuffer(GrVkGpu* gpu, const GrVkBuffer::Desc& desc, in GrVkUniformBuffer()
DGrVkCommandPool.cpp14 GrVkCommandPool* GrVkCommandPool::Create(const GrVkGpu* gpu) { in Create()
35 GrVkCommandPool::GrVkCommandPool(const GrVkGpu* gpu, VkCommandPool commandPool) in GrVkCommandPool()
41 GrVkGpu* gpu) { in findOrCreateSecondaryCommandBuffer()
62 void GrVkCommandPool::reset(GrVkGpu* gpu) { in reset()
69 void GrVkCommandPool::releaseResources(GrVkGpu* gpu) { in releaseResources()
DGrVkBuffer.cpp22 const GrVkBuffer::Resource* GrVkBuffer::Create(const GrVkGpu* gpu, const Desc& desc) { in Create()
84 void GrVkBuffer::addMemoryBarrier(const GrVkGpu* gpu, in addMemoryBarrier()
114 void GrVkBuffer::vkRelease(const GrVkGpu* gpu) { in vkRelease()
149 void GrVkBuffer::internalMap(GrVkGpu* gpu, size_t size, bool* createdNewBuffer) { in internalMap()
188 void GrVkBuffer::copyCpuDataToGpuBuffer(GrVkGpu* gpu, const void* src, size_t size) { in copyCpuDataToGpuBuffer()
217 void GrVkBuffer::internalUnmap(GrVkGpu* gpu, size_t size) { in internalUnmap()
242 bool GrVkBuffer::vkUpdateData(GrVkGpu* gpu, const void* src, size_t srcSizeInBytes, in vkUpdateData()
DGrVkMemory.cpp33 bool GrVkMemory::AllocAndBindBufferMemory(const GrVkGpu* gpu, in AllocAndBindBufferMemory()
76 void GrVkMemory::FreeBufferMemory(const GrVkGpu* gpu, GrVkBuffer::Type type, in FreeBufferMemory()
88 bool GrVkMemory::AllocAndBindImageMemory(const GrVkGpu* gpu, in AllocAndBindImageMemory()
125 void GrVkMemory::FreeImageMemory(const GrVkGpu* gpu, bool linearTiling, in FreeImageMemory()
135 void* GrVkMemory::MapAlloc(const GrVkGpu* gpu, const GrVkAlloc& alloc) { in MapAlloc()
159 void GrVkMemory::UnmapAlloc(const GrVkGpu* gpu, const GrVkAlloc& alloc) { in UnmapAlloc()
191 void GrVkMemory::FlushMappedAlloc(const GrVkGpu* gpu, const GrVkAlloc& alloc, VkDeviceSize offset, in FlushMappedAlloc()
210 void GrVkMemory::InvalidateMappedAlloc(const GrVkGpu* gpu, const GrVkAlloc& alloc, in InvalidateMappedAlloc()
DGrVkRenderTarget.cpp25 GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu, in GrVkRenderTarget()
52 GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu, in GrVkRenderTarget()
79 GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu, in GrVkRenderTarget()
98 GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu, in GrVkRenderTarget()
115 GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu, in GrVkRenderTarget()
134 sk_sp<GrVkRenderTarget> GrVkRenderTarget::MakeWrappedRenderTarget(GrVkGpu* gpu, in MakeWrappedRenderTarget()
211 GrVkGpu* gpu, const GrSurfaceDesc& desc, const GrVkDrawableInfo& vkInfo) { in MakeSecondaryCBRenderTarget()
243 void GrVkRenderTarget::createFramebuffer(GrVkGpu* gpu) { in createFramebuffer()
308 GrVkGpu* gpu = this->getVkGpu(); in releaseInternalObjects() local
DGrVkImage.cpp87 void GrVkImage::setImageLayout(const GrVkGpu* gpu, VkImageLayout newLayout, in setImageLayout()
156 bool GrVkImage::InitImageInfo(const GrVkGpu* gpu, const ImageDesc& imageDesc, GrVkImageInfo* info) { in InitImageInfo()
221 void GrVkImage::DestroyImageInfo(const GrVkGpu* gpu, GrVkImageInfo* info) { in DestroyImageInfo()
232 void GrVkImage::prepareForPresent(GrVkGpu* gpu) { in prepareForPresent()
243 void GrVkImage::prepareForExternal(GrVkGpu* gpu) { in prepareForExternal()
248 void GrVkImage::releaseImage(GrVkGpu* gpu) { in releaseImage()
328 void GrVkImage::setCurrentQueueFamilyToGraphicsQueue(GrVkGpu* gpu) { in setCurrentQueueFamilyToGraphicsQueue()
DGrVkTextureRenderTarget.cpp21 GrVkTextureRenderTarget::GrVkTextureRenderTarget(GrVkGpu* gpu, in GrVkTextureRenderTarget()
44 GrVkTextureRenderTarget::GrVkTextureRenderTarget(GrVkGpu* gpu, in GrVkTextureRenderTarget()
61 GrVkTextureRenderTarget::GrVkTextureRenderTarget(GrVkGpu* gpu, in GrVkTextureRenderTarget()
83 GrVkTextureRenderTarget::GrVkTextureRenderTarget(GrVkGpu* gpu, in GrVkTextureRenderTarget()
109 static Views create_views(GrVkGpu* gpu, const GrSurfaceDesc& desc, int sampleCnt, in create_views()
176 GrVkGpu* gpu, in MakeNewTextureRenderTarget()
209 GrVkGpu* gpu, in MakeWrappedTextureRenderTarget()
/third_party/skia/src/gpu/vk/
DGrVkCommandBuffer.cpp42 void GrVkCommandBuffer::freeGPUData(const GrGpu* gpu, VkCommandPool cmdPool) const { in freeGPUData() argument
76 void GrVkCommandBuffer::pipelineBarrier(const GrVkGpu* gpu, in pipelineBarrier()
146 void GrVkCommandBuffer::submitPipelineBarriers(const GrVkGpu* gpu, bool forSelfDependency) { in submitPipelineBarriers()
177 void GrVkCommandBuffer::bindInputBuffer(GrVkGpu* gpu, uint32_t binding, in bindInputBuffer()
196 void GrVkCommandBuffer::bindIndexBuffer(GrVkGpu* gpu, sk_sp<const GrBuffer> buffer) { in bindIndexBuffer()
210 void GrVkCommandBuffer::clearAttachments(const GrVkGpu* gpu, in clearAttachments()
241 void GrVkCommandBuffer::bindDescriptorSets(const GrVkGpu* gpu, in bindDescriptorSets()
259 void GrVkCommandBuffer::bindPipeline(const GrVkGpu* gpu, sk_sp<const GrVkPipeline> pipeline) { in bindPipeline()
267 void GrVkCommandBuffer::pushConstants(const GrVkGpu* gpu, VkPipelineLayout layout, in pushConstants()
282 void GrVkCommandBuffer::drawIndexed(const GrVkGpu* gpu, in drawIndexed()
[all …]
DGrVkImage.cpp18 sk_sp<GrVkImage> GrVkImage::MakeStencil(GrVkGpu* gpu, in MakeStencil()
36 sk_sp<GrVkImage> GrVkImage::MakeMSAA(GrVkGpu* gpu, in MakeMSAA()
62 sk_sp<GrVkImage> GrVkImage::MakeTexture(GrVkGpu* gpu, in MakeTexture()
92 static bool make_views(GrVkGpu* gpu, in make_views()
130 sk_sp<GrVkImage> GrVkImage::Make(GrVkGpu* gpu, in Make()
175 sk_sp<GrVkImage> GrVkImage::MakeWrapped(GrVkGpu* gpu, in MakeWrapped()
207 GrVkImage::GrVkImage(GrVkGpu* gpu, in GrVkImage()
233 GrVkImage::GrVkImage(GrVkGpu* gpu, in GrVkImage()
259 void GrVkImage::init(GrVkGpu* gpu, bool forSecondaryCB) { in init()
368 void GrVkImage::setImageLayoutAndQueueIndex(const GrVkGpu* gpu, in setImageLayoutAndQueueIndex()
[all …]
DGrVkDescriptorSetManager.cpp19 GrVkDescriptorSetManager* GrVkDescriptorSetManager::CreateUniformManager(GrVkGpu* gpu) { in CreateUniformManager()
28 GrVkGpu* gpu, VkDescriptorType type, const GrVkUniformHandler& uniformHandler) { in CreateSamplerManager()
39 GrVkDescriptorSetManager* GrVkDescriptorSetManager::CreateZeroSamplerManager(GrVkGpu* gpu) { in CreateZeroSamplerManager()
45 GrVkDescriptorSetManager* GrVkDescriptorSetManager::CreateInputManager(GrVkGpu* gpu) { in CreateInputManager()
64 static bool get_layout_and_desc_count(GrVkGpu* gpu, in get_layout_and_desc_count()
188 GrVkGpu* gpu, VkDescriptorType type, in Create()
210 GrVkGpu* gpu, VkDescriptorType type, VkDescriptorSetLayout descSetLayout, in GrVkDescriptorSetManager()
226 const GrVkDescriptorSet* GrVkDescriptorSetManager::getDescriptorSet(GrVkGpu* gpu, in getDescriptorSet()
250 void GrVkDescriptorSetManager::release(GrVkGpu* gpu) { in release()
310 bool GrVkDescriptorSetManager::DescriptorPoolManager::getNewPool(GrVkGpu* gpu) { in getNewPool()
[all …]
DGrVkMemory.cpp16 bool GrVkMemory::AllocAndBindBufferMemory(GrVkGpu* gpu, in AllocAndBindBufferMemory()
52 void GrVkMemory::FreeBufferMemory(const GrVkGpu* gpu, const GrVkAlloc& alloc) { in FreeBufferMemory()
58 bool GrVkMemory::AllocAndBindImageMemory(GrVkGpu* gpu, in AllocAndBindImageMemory()
106 void GrVkMemory::FreeImageMemory(const GrVkGpu* gpu, const GrVkAlloc& alloc) { in FreeImageMemory()
112 void* GrVkMemory::MapAlloc(GrVkGpu* gpu, const GrVkAlloc& alloc) { in MapAlloc()
124 void GrVkMemory::UnmapAlloc(const GrVkGpu* gpu, const GrVkAlloc& alloc) { in UnmapAlloc()
153 void GrVkMemory::FlushMappedAlloc(GrVkGpu* gpu, const GrVkAlloc& alloc, VkDeviceSize offset, in FlushMappedAlloc()
165 void GrVkMemory::InvalidateMappedAlloc(GrVkGpu* gpu, const GrVkAlloc& alloc, in InvalidateMappedAlloc()
DGrVkCommandPool.cpp15 GrVkCommandPool* GrVkCommandPool::Create(GrVkGpu* gpu) { in Create()
43 GrVkCommandPool::GrVkCommandPool(GrVkGpu* gpu, VkCommandPool commandPool, in GrVkCommandPool()
53 GrVkGpu* gpu) { in findOrCreateSecondaryCommandBuffer()
79 void GrVkCommandPool::reset(GrVkGpu* gpu) { in reset()
/third_party/skia/src/gpu/d3d/
DGrD3DDescriptorTableManager.cpp12 GrD3DDescriptorTableManager::GrD3DDescriptorTableManager(GrD3DGpu* gpu) in GrD3DDescriptorTableManager()
17 GrD3DDescriptorTableManager::createShaderViewTable(GrD3DGpu* gpu, unsigned int size) { in createShaderViewTable()
23 GrD3DGpu* gpu, unsigned int size) { in createSamplerTable()
28 void GrD3DDescriptorTableManager::prepForSubmit(GrD3DGpu* gpu) { in prepForSubmit()
53 GrD3DGpu* gpu, D3D12_DESCRIPTOR_HEAP_TYPE type, unsigned int descriptorCount) { in Make()
81 GrD3DDescriptorTableManager::HeapPool::HeapPool(GrD3DGpu* gpu, D3D12_DESCRIPTOR_HEAP_TYPE heapType) in HeapPool()
89 GrD3DGpu* gpu, unsigned int count) { in allocateTable()
121 void GrD3DDescriptorTableManager::HeapPool::prepForSubmit(GrD3DGpu* gpu) { in prepForSubmit()
DGrD3DCpuDescriptorManager.cpp12 GrD3DCpuDescriptorManager::GrD3DCpuDescriptorManager(GrD3DGpu* gpu) in GrD3DCpuDescriptorManager()
19 GrD3DGpu* gpu, ID3D12Resource* textureResource) { in createRenderTargetView()
31 GrD3DGpu* gpu, ID3D12Resource* textureResource) { in createDepthStencilView()
43 GrD3DGpu* gpu, ID3D12Resource* bufferResource, size_t offset, size_t size) { in createConstantBufferView()
54 GrD3DGpu* gpu, ID3D12Resource* resource, in createShaderResourceView()
71 GrD3DGpu* gpu, ID3D12Resource* resource, unsigned int mipSlice) { in createUnorderedAccessView()
93 GrD3DGpu* gpu, in createSampler()
123 GrD3DGpu* gpu, D3D12_DESCRIPTOR_HEAP_TYPE type, unsigned int numDescriptors) { in Make()
150 GrD3DCpuDescriptorManager::HeapPool::HeapPool(GrD3DGpu* gpu, D3D12_DESCRIPTOR_HEAP_TYPE heapType) in HeapPool()
159 GrD3DGpu* gpu) { in allocateHandle()
DGrD3DTexture.cpp17 GrD3DTexture::GrD3DTexture(GrD3DGpu* gpu, in GrD3DTexture()
35 GrD3DTexture::GrD3DTexture(GrD3DGpu* gpu, SkISize dimensions, const GrD3DTextureResourceInfo& info, in GrD3DTexture()
52 GrD3DTexture::GrD3DTexture(GrD3DGpu* gpu, in GrD3DTexture()
65 sk_sp<GrD3DTexture> GrD3DTexture::MakeNewTexture(GrD3DGpu* gpu, SkBudgeted budgeted, in MakeNewTexture()
89 sk_sp<GrD3DTexture> GrD3DTexture::MakeWrappedTexture(GrD3DGpu* gpu, in MakeWrappedTexture()
111 sk_sp<GrD3DTexture> GrD3DTexture::MakeAliasingTexture(GrD3DGpu* gpu, in MakeAliasingTexture()
136 GrD3DGpu* gpu = this->getD3DGpu(); in onRelease() local
144 GrD3DGpu* gpu = this->getD3DGpu(); in onAbandon() local
DGrD3DTextureResource.cpp13 void GrD3DTextureResource::setResourceState(const GrD3DGpu* gpu, in setResourceState()
31 bool GrD3DTextureResource::InitTextureResourceInfo(GrD3DGpu* gpu, const D3D12_RESOURCE_DESC& desc, in InitTextureResourceInfo()
64 GrD3DGpu* gpu, SkISize dimensions, int sampleCnt, const GrD3DTextureResourceInfo& info, in CreateMSAA()
107 void GrD3DTextureResource::prepareForPresent(GrD3DGpu* gpu) { in prepareForPresent()
111 void GrD3DTextureResource::releaseResource(GrD3DGpu* gpu) { in releaseResource()
DGrD3DAttachment.cpp12 GrD3DAttachment::GrD3DAttachment(GrD3DGpu* gpu, in GrD3DAttachment()
28 sk_sp<GrD3DAttachment> GrD3DAttachment::MakeStencil(GrD3DGpu* gpu, in MakeStencil()
68 GrD3DGpu* gpu = this->getD3DGpu(); in onRelease() local
75 GrD3DGpu* gpu = this->getD3DGpu(); in onAbandon() local
DGrD3DRenderTarget.cpp20 GrD3DRenderTarget::GrD3DRenderTarget(GrD3DGpu* gpu, in GrD3DRenderTarget()
43 GrD3DRenderTarget::GrD3DRenderTarget(GrD3DGpu* gpu, in GrD3DRenderTarget()
64 GrD3DRenderTarget::GrD3DRenderTarget(GrD3DGpu* gpu, in GrD3DRenderTarget()
80 GrD3DRenderTarget::GrD3DRenderTarget(GrD3DGpu* gpu, in GrD3DRenderTarget()
92 GrD3DGpu* gpu, SkISize dimensions, int sampleCnt, const GrD3DTextureResourceInfo& info, in MakeWrappedRenderTarget()
153 GrD3DGpu* gpu = this->getD3DGpu(); in releaseInternalObjects() local
/third_party/mesa3d/src/virtio/vulkan/
Dvn_renderer_virtgpu.c165 sim_syncobj_create(struct virtgpu *gpu, bool signaled) in sim_syncobj_create()
210 sim_syncobj_destroy(struct virtgpu *gpu, uint32_t syncobj_handle) in sim_syncobj_destroy()
296 sim_syncobj_lookup(struct virtgpu *gpu, uint32_t syncobj_handle) in sim_syncobj_lookup()
311 sim_syncobj_reset(struct virtgpu *gpu, uint32_t syncobj_handle) in sim_syncobj_reset()
325 sim_syncobj_query(struct virtgpu *gpu, in sim_syncobj_query()
342 sim_syncobj_signal(struct virtgpu *gpu, in sim_syncobj_signal()
358 sim_syncobj_submit(struct virtgpu *gpu, in sim_syncobj_submit()
407 sim_syncobj_wait(struct virtgpu *gpu, in sim_syncobj_wait()
454 sim_syncobj_export(struct virtgpu *gpu, uint32_t syncobj_handle) in sim_syncobj_export()
472 sim_syncobj_import(struct virtgpu *gpu, uint32_t syncobj_handle, int fd) in sim_syncobj_import()
[all …]
/third_party/skia/src/gpu/mock/
DGrMockTexture.h18 GrMockTexture(GrMockGpu* gpu, in GrMockTexture()
28 GrMockTexture(GrMockGpu* gpu, in GrMockTexture()
56 GrMockTexture(GrMockGpu* gpu, const SkISize& dimensions, GrProtected isProtected, in GrMockTexture()
82 GrMockRenderTarget(GrMockGpu* gpu, in GrMockRenderTarget()
95 GrMockRenderTarget(GrMockGpu* gpu, Wrapped, SkISize dimensions, int sampleCnt, in GrMockRenderTarget()
137 GrMockRenderTarget(GrMockGpu* gpu, in GrMockRenderTarget()
155 GrMockTextureRenderTarget(GrMockGpu* gpu, in GrMockTextureRenderTarget()
170 GrMockTextureRenderTarget(GrMockGpu* gpu, in GrMockTextureRenderTarget()
/third_party/flutter/skia/src/gpu/mock/
DGrMockTexture.h20 GrMockTexture(GrMockGpu* gpu, SkBudgeted budgeted, const GrSurfaceDesc& desc, in GrMockTexture()
27 GrMockTexture(GrMockGpu* gpu, const GrSurfaceDesc& desc, GrProtected isProtected, in GrMockTexture()
52 GrMockTexture(GrMockGpu* gpu, const GrSurfaceDesc& desc, GrProtected isProtected, in GrMockTexture()
79 GrMockRenderTarget(GrMockGpu* gpu, SkBudgeted budgeted, const GrSurfaceDesc& desc, in GrMockRenderTarget()
88 GrMockRenderTarget(GrMockGpu* gpu, Wrapped, const GrSurfaceDesc& desc, int sampleCnt, in GrMockRenderTarget()
124 GrMockRenderTarget(GrMockGpu* gpu, const GrSurfaceDesc& desc, int sampleCnt, in GrMockRenderTarget()
139 GrMockTextureRenderTarget(GrMockGpu* gpu, SkBudgeted budgeted, const GrSurfaceDesc& desc, in GrMockTextureRenderTarget()
150 GrMockTextureRenderTarget(GrMockGpu* gpu, const GrSurfaceDesc& desc, int sampleCnt, in GrMockTextureRenderTarget()
/third_party/libdrm/etnaviv/
Detnaviv_gpu.c49 struct etna_gpu *gpu; in etna_gpu_new() local
76 drm_public void etna_gpu_del(struct etna_gpu *gpu) in etna_gpu_del()
81 drm_public int etna_gpu_get_param(struct etna_gpu *gpu, enum etna_param_id param, in etna_gpu_get_param()
/third_party/mesa3d/src/etnaviv/drm/
Detnaviv_gpu.c49 struct etna_gpu *gpu; in etna_gpu_new() local
76 void etna_gpu_del(struct etna_gpu *gpu) in etna_gpu_del()
81 int etna_gpu_get_param(struct etna_gpu *gpu, enum etna_param_id param, in etna_gpu_get_param()

12345678910>>...13