HomeSort by relevance Sort by last modified time
    Searched refs:gpu (Results 1 - 25 of 176) sorted by null

1 2 3 4 5 6 7 8

  /external/autotest/client/site_tests/graphics_dEQP/
diff.sh 5 for gpu in ${gpus[*]}
7 rm expectations/${gpu}/*.json
8 cat expectations/${gpu}/* | sort > /tmp/${gpu}.sorted
9 cat expectations/${gpu}/* | sort | uniq > /tmp/${gpu}.sorted_uniq
10 diff /tmp/${gpu}.sorted /tmp/${gpu}.sorted_uniq > ${gpu}.diff
  /external/skia/src/gpu/vk/
GrVkUniformBuffer.h 19 static GrVkUniformBuffer* Create(GrVkGpu* gpu, size_t size, bool dynamic);
21 void* map(const GrVkGpu* gpu) {
22 return this->vkMap(gpu);
24 void unmap(const GrVkGpu* gpu) {
25 this->vkUnmap(gpu);
27 bool updateData(const GrVkGpu* gpu, const void* src, size_t srcSizeInBytes) {
28 return this->vkUpdateData(gpu, src, srcSizeInBytes);
30 void release(const GrVkGpu* gpu) {
31 this->vkRelease(gpu);
GrVkBuffer.cpp 13 #define VK_CALL(GPU, X) GR_VK_CALL(GPU->vkInterface(), X)
21 const GrVkBuffer::Resource* GrVkBuffer::Create(const GrVkGpu* gpu, const Desc& desc) {
54 err = VK_CALL(gpu, CreateBuffer(gpu->device(), &bufInfo, nullptr, &buffer));
62 if (!GrVkMemory::AllocAndBindBufferMemory(gpu,
66 VK_CALL(gpu, DestroyBuffer(gpu->device(), buffer, nullptr));
72 VK_CALL(gpu, DestroyBuffer(gpu->device(), buffer, nullptr))
    [all...]
GrVkCommandBuffer.h 23 static GrVkCommandBuffer* Create(const GrVkGpu* gpu, VkCommandPool cmdPool);
26 void begin(const GrVkGpu* gpu);
27 void end(const GrVkGpu* gpu);
33 void beginRenderPass(const GrVkGpu* gpu,
36 void endRenderPass(const GrVkGpu* gpu);
38 void submitToQueue(const GrVkGpu* gpu, VkQueue queue, GrVkGpu::SyncQueue sync);
39 bool finished(const GrVkGpu* gpu) const;
45 void bindPipeline(const GrVkGpu* gpu) const;
46 void bindDynamicState(const GrVkGpu* gpu) const;
47 void bindDescriptorSet(const GrVkGpu* gpu) const
    [all...]
GrVkCommandBuffer.cpp 18 GrVkCommandBuffer* GrVkCommandBuffer::Create(const GrVkGpu* gpu, VkCommandPool cmdPool) {
28 VkResult err = GR_VK_CALL(gpu->vkInterface(), AllocateCommandBuffers(gpu->device(),
49 void GrVkCommandBuffer::freeGPUData(const GrVkGpu* gpu) const {
53 fTrackedResources[i]->unref(gpu);
58 GR_VK_CALL(gpu->vkInterface(), DestroyFence(gpu->device(), fSubmitFence, nullptr));
61 GR_VK_CALL(gpu->vkInterface(), FreeCommandBuffers(gpu->device(), gpu->cmdPool()
    [all...]
GrVkImageView.cpp 12 const GrVkImageView* GrVkImageView::Create(GrVkGpu* gpu, VkImage image, VkFormat format,
36 VkResult err = GR_VK_CALL(gpu->vkInterface(), CreateImageView(gpu->device(), &viewInfo,
45 void GrVkImageView::freeGPUData(const GrVkGpu* gpu) const {
46 GR_VK_CALL(gpu->vkInterface(), DestroyImageView(gpu->device(), fImageView, nullptr));
GrVkImage.cpp 13 #define VK_CALL(GPU, X) GR_VK_CALL(GPU->vkInterface(), X)
15 void GrVkImage::setImageLayout(const GrVkGpu* gpu, VkImageLayout newLayout,
42 gpu->addImageMemoryBarrier(srcStageMask, dstStageMask, byRegion, &imageMemoryBarrier);
47 const GrVkImage::Resource* GrVkImage::CreateResource(const GrVkGpu* gpu,
81 err = VK_CALL(gpu, CreateImage(gpu->device(), &imageCreateInfo, nullptr, &image));
84 if (!GrVkMemory::AllocAndBindImageMemory(gpu, image, imageDesc.fMemProps, &alloc)) {
85 VK_CALL(gpu, DestroyImage(gpu->device(), image, nullptr))
    [all...]
GrVkTexture.cpp 13 #define VK_CALL(GPU, X) GR_VK_CALL(GPU->vkInterface(), X)
16 GrVkTexture::GrVkTexture(GrVkGpu* gpu,
21 : GrSurface(gpu, lifeCycle, desc)
23 , INHERITED(gpu, lifeCycle, desc)
29 GrVkTexture::GrVkTexture(GrVkGpu* gpu,
35 : GrSurface(gpu, lifeCycle, desc)
37 , INHERITED(gpu, lifeCycle, desc)
41 GrVkTexture* GrVkTexture::Create(GrVkGpu* gpu,
47 const GrVkImageView* imageView = GrVkImageView::Create(gpu, image, format
    [all...]
GrVkRenderTarget.cpp 18 #define VK_CALL(GPU, X) GR_VK_CALL(GPU->vkInterface(), X)
22 GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu,
29 : GrSurface(gpu, lifeCycle, desc)
32 , GrRenderTarget(gpu, lifeCycle, desc, kUnified_SampleConfig)
41 this->createFramebuffer(gpu);
48 GrVkRenderTarget::GrVkRenderTarget(GrVkGpu* gpu,
56 : GrSurface(gpu, lifeCycle, desc)
59 , GrRenderTarget(gpu, lifeCycle, desc, kUnified_SampleConfig)
68 this->createFramebuffer(gpu);
294 GrVkGpu* gpu = this->getVkGpu(); local
    [all...]
GrVkMemory.h 17 * Allocates vulkan device memory and binds it to the gpu's device for the given object.
20 bool AllocAndBindBufferMemory(const GrVkGpu* gpu,
25 bool AllocAndBindImageMemory(const GrVkGpu* gpu,
GrVkSampler.h 21 static GrVkSampler* Create(const GrVkGpu* gpu, const GrTextureAccess& textureAccess);
28 void freeGPUData(const GrVkGpu* gpu) const override;
GrVkTextureRenderTarget.cpp 15 #define VK_CALL(GPU, X) GR_VK_CALL(GPU->vkInterface(), X)
18 GrVkTextureRenderTarget::Create(GrVkGpu* gpu,
26 const GrVkImageView* imageView = GrVkImageView::Create(gpu, image, format,
52 msaaImageResource = GrVkImage::CreateResource(gpu, msImageDesc);
55 imageView->unref(gpu);
68 resolveAttachmentView = GrVkImageView::Create(gpu, image, pixelFormat,
71 msaaImageResource->unref(gpu);
72 imageView->unref(gpu);
89 colorAttachmentView = GrVkImageView::Create(gpu, colorImage, pixelFormat
    [all...]
GrVkBuffer.h 32 void addMemoryBarrier(const GrVkGpu* gpu,
61 void freeGPUData(const GrVkGpu* gpu) const;
67 static const Resource* Create(const GrVkGpu* gpu,
74 void* vkMap(const GrVkGpu* gpu);
75 void vkUnmap(const GrVkGpu* gpu);
76 bool vkUpdateData(const GrVkGpu* gpu, const void* src, size_t srcSizeInBytes);
79 void vkRelease(const GrVkGpu* gpu);
GrVkDescriptorPool.cpp 14 GrVkDescriptorPool::GrVkDescriptorPool(const GrVkGpu* gpu, const DescriptorTypeCounts& typeCounts)
38 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), CreateDescriptorPool(gpu->device(),
48 void GrVkDescriptorPool::reset(const GrVkGpu* gpu) {
49 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), ResetDescriptorPool(gpu->device(), fDescPool, 0));
52 void GrVkDescriptorPool::freeGPUData(const GrVkGpu* gpu) const {
55 GR_VK_CALL(gpu->vkInterface(), DestroyDescriptorPool(gpu->device(), fDescPool, nullptr));
GrVkDescriptorPool.h 36 explicit GrVkDescriptorPool(const GrVkGpu* gpu, const DescriptorTypeCounts& typeCounts);
40 void reset(const GrVkGpu* gpu);
47 void freeGPUData(const GrVkGpu* gpu) const override;
GrVkStencilAttachment.cpp 14 #define VK_CALL(GPU, X) GR_VK_CALL(GPU->vkInterface(), X)
16 GrVkStencilAttachment::GrVkStencilAttachment(GrVkGpu* gpu,
22 : INHERITED(gpu, lifeCycle, desc.fWidth, desc.fHeight, format.fStencilBits, desc.fSamples)
31 GrVkStencilAttachment* GrVkStencilAttachment::Create(GrVkGpu* gpu,
48 const GrVkImage::Resource* imageResource = GrVkImage::CreateResource(gpu, imageDesc);
53 const GrVkImageView* imageView = GrVkImageView::Create(gpu, imageResource->fImage,
57 imageResource->unref(gpu);
61 GrVkStencilAttachment* stencil = new GrVkStencilAttachment(gpu, lifeCycle, format, imageDesc,
63 imageResource->unref(gpu);
84 GrVkGpu* gpu = this->getVkGpu(); local
    [all...]
GrVkUniformBuffer.cpp 12 GrVkUniformBuffer* GrVkUniformBuffer::Create(GrVkGpu* gpu, size_t size, bool dynamic) {
21 const GrVkBuffer::Resource* bufferResource = GrVkBuffer::Create(gpu, desc);
28 bufferResource->unref(gpu);
GrVkImageView.h 24 static const GrVkImageView* Create(GrVkGpu* gpu, VkImage image, VkFormat format, Type viewType);
34 void freeGPUData(const GrVkGpu* gpu) const override;
  /external/skia/src/gpu/
GrBatchFlushState.cpp 13 GrBatchFlushState::GrBatchFlushState(GrGpu* gpu, GrResourceProvider* resourceProvider)
14 : fGpu(gpu)
15 , fUploader(gpu)
17 , fVertexPool(gpu)
18 , fIndexPool(gpu)
GrTransferBuffer.h 59 GrTransferBuffer(GrGpu* gpu, size_t gpuMemorySize)
60 : INHERITED(gpu, kUncached_LifeCycle)
  /external/skia/src/gpu/gl/
GrGLPathRange.cpp 14 GrGLPathRange::GrGLPathRange(GrGLGpu* gpu, PathGenerator* pathGenerator, const GrStrokeInfo& stroke)
15 : INHERITED(gpu, pathGenerator),
17 fBasePathID(gpu->glPathRendering()->genPaths(this->getNumPaths())),
23 GrGLPathRange::GrGLPathRange(GrGLGpu* gpu,
28 : INHERITED(gpu, numPaths),
54 GrGLGpu* gpu = static_cast<GrGLGpu*>(this->getGpu()); local
55 if (nullptr == gpu) {
62 GR_GL_CALL_RET(gpu->glInterface(), isPath, IsPath(fBasePathID + index)));
66 GrGLPath::InitPathObjectEmptyPath(gpu, fBasePathID + index);
68 GrGLPath::InitPathObjectPathData(gpu, fBasePathID + index, origSkPath)
    [all...]
GrGLBufferImpl.h 45 void release(GrGLGpu* gpu);
51 void* map(GrGLGpu* gpu);
52 void unmap(GrGLGpu* gpu);
54 bool updateData(GrGLGpu* gpu, const void* src, size_t srcSizeInBytes);
GrGLTextureRenderTarget.h 28 GrGLTextureRenderTarget(GrGLGpu* gpu,
32 : GrSurface(gpu, texIDDesc.fLifeCycle, desc)
33 , GrGLTexture(gpu, desc, texIDDesc, GrGLTexture::kDerived)
34 , GrGLRenderTarget(gpu, desc, rtIDDesc, GrGLRenderTarget::kDerived) {
  /external/chromium-trace/catapult/tracing/tracing/ui/extras/chrome/gpu/
state_view.css 6 .tr-ui-e-chrome-gpu-state-snapshot-view {
12 .tr-ui-e-chrome-gpu-state-snapshot-view img {
  /external/skia/experimental/fiddle/
fiddle_main.h 19 , gpu(g)
25 bool gpu; member in struct:DrawOptions

Completed in 321 milliseconds

1 2 3 4 5 6 7 8