HomeSort by relevance Sort by last modified time
    Searched refs:rtDesc (Results 1 - 3 of 3) sorted by null

  /external/skia/src/gpu/gl/
GrGLTexture.cpp 19 const GrGLRenderTarget::Desc* rtDesc) {
30 if (NULL != rtDesc) {
39 (gpu, *rtDesc, vp, fTexIDObj, this));
51 const GrGLRenderTarget::Desc& rtDesc)
53 this->init(gpu, textureDesc, &rtDesc);
GrGLTexture.h 68 const GrGLRenderTarget::Desc& rtDesc);
106 const GrGLRenderTarget::Desc* rtDesc);
  /external/skia/src/gpu/
GrContext.cpp 292 GrTextureDesc rtDesc = desc;
293 rtDesc.fFlags = rtDesc.fFlags |
296 rtDesc.fWidth = GrNextPow2(GrMax(desc.fWidth, 64));
297 rtDesc.fHeight = GrNextPow2(GrMax(desc.fHeight, 64));
299 GrTexture* texture = fGpu->createTexture(rtDesc, NULL, 0);
328 rtDesc.fFlags = kNone_GrTextureFlags;
330 rtDesc.fWidth = GrNextPow2(desc.fWidth);
331 rtDesc.fHeight = GrNextPow2(desc.fHeight);
333 SkAutoSMalloc<128*128*4> stretchedPixels(bpp * rtDesc.fWidth * rtDesc.fHeight)
    [all...]

Completed in 185 milliseconds