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

1 23 4 5 6 7 8

  /external/skia/src/gpu/vk/
GrVkFramebuffer.h 23 static GrVkFramebuffer* Create(GrVkGpu* gpu,
38 void freeGPUData(const GrVkGpu* gpu) const override;
GrVkPipeline.h 25 static GrVkPipeline* Create(GrVkGpu* gpu,
42 void freeGPUData(const GrVkGpu* gpu) const override;
GrVkTransferBuffer.h 20 static GrVkTransferBuffer* Create(GrVkGpu* gpu, size_t size, GrVkBuffer::Type type);
27 GrVkTransferBuffer(GrVkGpu* gpu, const GrVkBuffer::Desc& desc,
GrVkProgramBuilder.h 41 GrVkGpu* gpu() const { return fGpu; } function in class:GrVkProgramBuilder
55 static bool CreateVkShaderModule(const GrVkGpu* gpu,
GrVkStencilAttachment.h 27 static GrVkStencilAttachment* Create(GrVkGpu* gpu, GrGpuResource::LifeCycle lifeCycle,
45 GrVkStencilAttachment(GrVkGpu* gpu,
GrVkImage.h 39 void freeGPUData(const GrVkGpu* gpu) const override;
65 void setImageLayout(const GrVkGpu* gpu, VkImageLayout newLayout,
95 static const Resource* CreateResource(const GrVkGpu* gpu, const ImageDesc& imageDesc);
99 void releaseImage(const GrVkGpu* gpu);
GrVkRenderTarget.h 70 GrVkRenderTarget(GrVkGpu* gpu,
78 GrVkRenderTarget(GrVkGpu* gpu,
87 GrVkRenderTarget(GrVkGpu* gpu,
93 GrVkRenderTarget(GrVkGpu* gpu,
121 void createFramebuffer(GrVkGpu* gpu);
  /external/vulkan-validation-layers/demos/
vulkaninfo.c 92 struct app_gpu *gpu; /* point back to the GPU */ member in struct:app_dev
408 vkGetPhysicalDeviceFormatProperties(dev->gpu->obj, fmt,
421 struct app_gpu *gpu, char *layer_name, uint32_t *extension_count,
429 err = vkEnumerateDeviceExtensionProperties(gpu->obj, layer_name,
437 err = vkEnumerateDeviceExtensionProperties(gpu->obj, layer_name,
446 static void app_dev_init(struct app_dev *dev, struct app_gpu *gpu) {
470 err = vkEnumerateDeviceLayerProperties(gpu->obj, &count, NULL);
485 err = vkEnumerateDeviceLayerProperties(gpu->obj, &count,
490 gpu->device_layer_count = count
    [all...]
  /external/skia/src/gpu/gl/
GrGLPath.cpp 91 inline bool init_path_object_for_general_path(GrGLGpu* gpu, GrGLuint pathID,
178 GR_GL_CALL(gpu->glInterface(), PathCommands(pathID, pathCommands.count(), &pathCommands[0],
201 bool GrGLPath::InitPathObjectPathDataCheckingDegenerates(GrGLGpu* gpu, GrGLuint pathID,
203 return init_path_object_for_general_path<true>(gpu, pathID, skPath);
206 void GrGLPath::InitPathObjectPathData(GrGLGpu* gpu,
235 GR_GL_CALL(gpu->glInterface(), PathCommands(pathID, pathCommands.count(), &pathCommands[0],
241 SkAssertResult(init_path_object_for_general_path<false>(gpu, pathID, skPath));
244 void GrGLPath::InitPathObjectStroke(GrGLGpu* gpu, GrGLuint pathID, const GrStrokeInfo& stroke) {
248 GR_GL_CALL(gpu->glInterface(),
250 GR_GL_CALL(gpu->glInterface()
    [all...]
GrGLPathRendering.cpp 19 #define GL_CALL(X) GR_GL_CALL(this->gpu()->glInterface(), X)
20 #define GL_CALL_RET(RET, X) GR_GL_CALL_RET(this->gpu()->glInterface(), RET, X)
64 GrGLPathRendering::GrGLPathRendering(GrGLGpu* gpu)
65 : GrPathRendering(gpu)
67 const GrGLInterface* glInterface = gpu->glInterface();
91 return new GrGLPath(this->gpu(), inPath, stroke);
96 return new GrGLPathRange(this->gpu(), pathGenerator, stroke);
100 GrGLGpu* gpu = this->gpu(); local
101 SkASSERT(gpu->caps()->shaderCaps()->pathRenderingSupport())
312 inline GrGLGpu* GrGLPathRendering::gpu() { function in class:GrGLPathRendering
    [all...]
GrGLRenderTarget.cpp 19 GrGLRenderTarget::GrGLRenderTarget(GrGLGpu* gpu,
23 : GrSurface(gpu, idDesc.fLifeCycle, desc)
24 , INHERITED(gpu, idDesc.fLifeCycle, desc, idDesc.fSampleConfig, stencil) {
29 GrGLRenderTarget::GrGLRenderTarget(GrGLGpu* gpu, const GrSurfaceDesc& desc, const IDDesc& idDesc,
31 : GrSurface(gpu, idDesc.fLifeCycle, desc)
32 , INHERITED(gpu, idDesc.fLifeCycle, desc, idDesc.fSampleConfig) {
52 GrGLRenderTarget* GrGLRenderTarget::CreateWrapped(GrGLGpu* gpu,
65 sb = new GrGLStencilAttachment(gpu, sbDesc, desc.fWidth, desc.fHeight,
68 return (new GrGLRenderTarget(gpu, desc, idDesc, sb));
76 GrGLGpu* gpu = this->getGLGpu() local
    [all...]
GrGLStencilAttachment.h 32 GrGLStencilAttachment(GrGpu* gpu,
37 : GrStencilAttachment(gpu, idDesc.fLifeCycle, width, height, format.fStencilBits, sampleCnt)
  /external/skia/src/gpu/
GrPathRange.cpp 11 GrPathRange::GrPathRange(GrGpu* gpu,
13 : INHERITED(gpu, kCached_LifeCycle),
21 GrPathRange::GrPathRange(GrGpu* gpu,
23 : INHERITED(gpu, kCached_LifeCycle),
GrResourceProvider.cpp 22 GrResourceProvider::GrResourceProvider(GrGpu* gpu, GrResourceCache* cache, GrSingleOwner* owner)
23 : INHERITED(gpu, cache, owner) {
75 SkASSERT(this->gpu()->pathRendering());
76 return this->gpu()->pathRendering()->createPath(path, stroke);
81 SkASSERT(this->gpu()->pathRendering());
82 return this->gpu()->pathRendering()->createPathRange(gen, stroke);
88 SkASSERT(this->gpu()->pathRendering());
89 return this->gpu()->pathRendering()->createGlyphs(tf, desc, stroke);
118 return this->gpu()->createIndexBuffer(size, dynamic);
147 return this->gpu()->createVertexBuffer(size, dynamic)
    [all...]
GrGeometryBuffer.h 102 GrGeometryBuffer(GrGpu* gpu, size_t gpuMemorySize, bool dynamic, bool cpuBacked)
103 : INHERITED(gpu, kCached_LifeCycle)
GrPath.h 22 GrPath(GrGpu* gpu, const SkPath& skPath, const GrStrokeInfo& stroke)
23 : INHERITED(gpu, kCached_LifeCycle)
GrBufferAllocPool.h 62 * @param gpu The GrGpu used to create the buffers.
68 GrBufferAllocPool(GrGpu* gpu,
136 * @param gpu The GrGpu used to create the vertex buffers.
138 GrVertexBufferAllocPool(GrGpu* gpu);
180 * @param gpu The GrGpu used to create the index buffers.
182 GrIndexBufferAllocPool(GrGpu* gpu);
GrGpuResource.cpp 16 static inline GrResourceCache* get_resource_cache(GrGpu* gpu) {
17 SkASSERT(gpu);
18 SkASSERT(gpu->getContext());
19 SkASSERT(gpu->getContext()->getResourceCache());
20 return gpu->getContext()->getResourceCache();
23 GrGpuResource::GrGpuResource(GrGpu* gpu, LifeCycle lifeCycle)
24 : fGpu(gpu)
  /external/skia/bench/
GrResourceCacheBench.cpp 26 BenchResource (GrGpu* gpu)
27 : INHERITED(gpu, kCached_LifeCycle) {
44 static void populate_cache(GrGpu* gpu, int resourceCount, int keyData32Count) {
48 GrGpuResource* resource = new BenchResource(gpu);
86 GrGpu* gpu = context->getGpu(); variable
89 populate_cache(gpu, CACHE_SIZE_COUNT, fKeyData32Count);
132 GrGpu* gpu = fContext->getGpu(); variable
134 populate_cache(gpu, CACHE_SIZE_COUNT, fKeyData32Count);
  /external/skia/tests/
VkUploadPixelsTests.cpp 9 // This is a GPU-backend specific test. It relies on static intializers to work
54 GrVkGpu* gpu = static_cast<GrVkGpu*>(context->getGpu()); local
55 gpu->discard(NULL);
86 GrTexture* tex0 = gpu->createTexture(surfDesc, SkBudgeted::kNo, srcBuffer, 0);
89 gpu->readPixels(tex0, 0, 0, kWidth, kHeight, config, dstBuffer, 0);
98 gpu->readPixels(tex0, 2, 10, 10, 2, config, dstBuffer, 0);
111 GrTexture* tex1 = gpu->createTexture(surfDesc, SkBudgeted::kNo, srcBuffer, 0);
114 gpu->readPixels(tex1, 0, 0, kWidth, kHeight, config, dstBuffer, 0);
123 gpu->readPixels(tex1, 5, 4, 4, 5, config, dstBuffer, 0);
  /external/skia/tools/flags/
SkCommonFlags.h 17 DECLARE_bool(gpu); variable
  /external/skia/src/gpu/gl/builders/
GrGLProgramBuilder.cpp 28 #define GL_CALL(X) GR_GL_CALL(this->gpu()->glInterface(), X)
29 #define GL_CALL_RET(R, X) GR_GL_CALL_RET(this->gpu()->glInterface(), R, X)
31 GrGLProgram* GrGLProgramBuilder::CreateProgram(const DrawArgs& args, GrGLGpu* gpu) {
36 GrGLProgramBuilder builder(gpu, args);
45 gpu->glCaps().maxFragmentTextureUnits())) {
55 GrGLProgramBuilder::GrGLProgramBuilder(GrGLGpu* gpu, const DrawArgs& args)
57 , fGpu(gpu)
108 GrGLGpu* gpu = this->gpu(); local
109 GrGLuint shaderId = GrGLCompileAndAttachShader(gpu->glContext()
    [all...]
  /external/skia/include/gpu/
GrTextureProvider.h 106 GrTextureProvider(GrGpu* gpu, GrResourceCache* cache, GrSingleOwner* singleOwner);
147 GrGpu* gpu() { return fGpu; } function in class:GrTextureProvider
148 const GrGpu* gpu() const { return fGpu; } function in class:GrTextureProvider
  /device/google/marlin/
thermal-engine-marlin.conf 42 [VIRTUAL-SS-GPU-SKIN]
45 device gpu
58 actions cluster0+cluster1+gpu
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
system_info.py 24 gpu (object containing GPUInfo's required attributes)
26 return cls(attrs["model_name"], attrs["gpu"])
39 def gpu(self): member in class:SystemInfo

Completed in 610 milliseconds

1 23 4 5 6 7 8