Searched defs:gpu (Results 1 - 21 of 21) sorted by relevance

/external/skia/src/gpu/
H A DGrResource.cpp13 GrResource::GrResource(GrGpu* gpu) { argument
14 fGpu = gpu;
H A DGrStencilBuffer.cpp32 // long has a gpu ptr (gets nulled in GrResource::release()) and can't
49 GrGpu* gpu = this->getGpu(); local
50 if (NULL != gpu) {
51 GrAssert(NULL != gpu->getContext());
52 gpu->getContext()->unlockStencilBuffer(fCacheEntry);
H A DGrVertexBuffer.h18 GrVertexBuffer(GrGpu* gpu, size_t sizeInBytes, bool dynamic) argument
19 : INHERITED(gpu, sizeInBytes, dynamic) {}
H A DGrGeometryBuffer.h78 GrGeometryBuffer(GrGpu* gpu, size_t sizeInBytes, bool dynamic) argument
79 : INHERITED(gpu)
H A DGrIndexBuffer.h27 GrIndexBuffer(GrGpu* gpu, size_t sizeInBytes, bool dynamic) argument
28 : INHERITED(gpu, sizeInBytes, dynamic) {}
H A DGrPathRendererChain.cpp51 GrGpu* gpu = fOwner->getGpu(); local
52 bool twoSided = gpu->getCaps().fTwoSidedStencilSupport;
53 bool wrapOp = gpu->getCaps().fStencilWrapOpsSupport;
H A DGrStencilBuffer.h67 GrStencilBuffer(GrGpu* gpu, int width, int height, int bits, int sampleCnt) argument
68 : GrResource(gpu)
H A DGrTextStrike.cpp18 GrFontCache::GrFontCache(GrGpu* gpu) : fGpu(gpu) { argument
19 gpu->ref();
H A DGrAtlas.cpp130 GrAtlasMgr::GrAtlasMgr(GrGpu* gpu) { argument
131 fGpu = gpu;
132 gpu->ref();
H A DGrBufferAllocPool.cpp25 GrBufferAllocPool::GrBufferAllocPool(GrGpu* gpu, argument
32 GrAssert(NULL != gpu);
33 fGpu = gpu;
362 GrVertexBufferAllocPool::GrVertexBufferAllocPool(GrGpu* gpu, argument
366 : GrBufferAllocPool(gpu,
423 GrIndexBufferAllocPool::GrIndexBufferAllocPool(GrGpu* gpu, argument
427 : GrBufferAllocPool(gpu,
H A DGrInOrderDrawBuffer.cpp19 GrInOrderDrawBuffer::GrInOrderDrawBuffer(const GrGpu* gpu, argument
30 fCaps = gpu->getCaps();
H A DGrAAHairLinePathRenderer.cpp82 GrGpu* gpu = context->getGpu(); local
83 GrIndexBuffer* qIdxBuf = gpu->createIndexBuffer(kQuadIdxSBufize, false);
164 // maybe different when do this using gpu (geo or tess shaders)
H A DGrContext.cpp29 // When we're using coverage AA but the blend is incompatible (given gpu
160 // returns true if this is a "special" texture because of gpu NPOT limitations
161 bool gen_texture_key_values(const GrGpu* gpu, argument
173 GrAssert(gpu->getCaps().fMaxTextureSize <= SK_MaxU16);
181 if (!gpu->getCaps().fNPOTTextureTileSupport) {
415 inline void gen_scratch_tex_key_values(const GrGpu* gpu, argument
424 gen_texture_key_values(gpu, NULL, descKey, desc.fWidth,
1944 GrContext::GrContext(GrGpu* gpu) { argument
1945 fGpu = gpu;
/external/skia/src/gpu/gl/
H A DGrGLRenderTarget.cpp30 GrGLRenderTarget::GrGLRenderTarget(GrGpuGL* gpu, argument
35 : INHERITED(gpu,
54 GrGLRenderTarget::GrGLRenderTarget(GrGpuGL* gpu, argument
57 : INHERITED(gpu,
H A DGrGLTexture.cpp27 void GrGLTexture::init(GrGpuGL* gpu, argument
48 fRenderTarget = new GrGLRenderTarget(gpu, *rtDesc, vp, fTexIDObj, this);
52 GrGLTexture::GrGLTexture(GrGpuGL* gpu, argument
54 : INHERITED(gpu,
58 this->init(gpu, textureDesc, NULL);
61 GrGLTexture::GrGLTexture(GrGpuGL* gpu, argument
64 : INHERITED(gpu,
68 this->init(gpu, textureDesc, &rtDesc);
H A DGrGLStencilBuffer.h27 GrGLStencilBuffer(GrGpu* gpu, GrGLint rbid, argument
31 : GrStencilBuffer(gpu, width, height, format.fStencilBits, sampleCnt)
H A DGrGLIndexBuffer.cpp18 GrGLIndexBuffer::GrGLIndexBuffer(GrGpuGL* gpu, argument
22 : INHERITED(gpu, sizeInBytes, dynamic)
118 // flushing the gpu past draws consuming the old contents.
H A DGrGLVertexBuffer.cpp18 GrGLVertexBuffer::GrGLVertexBuffer(GrGpuGL* gpu, argument
22 : INHERITED(gpu, sizeInBytes, dynamic)
114 // flushing the gpu past draws consuming the old contents.
/external/skia/include/gpu/
H A DGrTexture.h124 GrTexture(GrGpu* gpu, argument
128 : INHERITED(gpu)
H A DGrRenderTarget.h175 GrRenderTarget(GrGpu* gpu, argument
181 : INHERITED(gpu)
/external/qemu/android/
H A Dmain.c1102 if (opts->gpu) {
1103 const char* gpu = opts->gpu; local
1104 if (!strcmp(gpu,"on") || !strcmp(gpu,"enable")) {
1106 } else if (!strcmp(gpu,"off") || !strcmp(gpu,"disable")) {
1108 } else if (!strcmp(gpu,"auto")) {
1111 derror("Invalid value for -gpu <mode> parameter: %s\n", gpu);
[all...]

Completed in 1038 milliseconds