Searched defs:texDesc (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrTextureStripAtlas.cpp194 GrTextureDesc texDesc; local
195 texDesc.fWidth = fDesc.fWidth;
196 texDesc.fHeight = fDesc.fHeight;
197 texDesc.fConfig = fDesc.fConfig;
205 fTexture = fDesc.fContext->findAndRefTexture(texDesc, cacheID, &params);
207 fTexture = fDesc.fContext->createTexture(&params, texDesc, cacheID, NULL, 0);
/external/skia/src/gpu/effects/
H A DGrTextureStripAtlas.cpp194 GrTextureDesc texDesc; local
195 texDesc.fWidth = fDesc.fWidth;
196 texDesc.fHeight = fDesc.fHeight;
197 texDesc.fConfig = fDesc.fConfig;
205 fTexture = fDesc.fContext->findAndRefTexture(texDesc, cacheID, &params);
207 fTexture = fDesc.fContext->createTexture(&params, texDesc, cacheID, NULL, 0);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DRenderTarget11.cpp24 D3D11_TEXTURE1D_DESC texDesc; local
25 texture1D->GetDesc(&texDesc);
28 *mipLevels = texDesc.MipLevels;
37 D3D11_TEXTURE2D_DESC texDesc; local
38 texture2D->GetDesc(&texDesc);
41 *mipLevels = texDesc.MipLevels;
42 *samples = texDesc.SampleDesc.Count > 1 ? texDesc.SampleDesc.Count : 0;
50 D3D11_TEXTURE3D_DESC texDesc; local
51 texture3D->GetDesc(&texDesc);
[all...]
H A DTextureStorage11.cpp412 D3D11_TEXTURE2D_DESC texDesc; local
413 mTexture->GetDesc(&texDesc);
414 mMipLevels = texDesc.MipLevels;
415 mTextureFormat = texDesc.Format;
416 mTextureWidth = texDesc.Width;
417 mTextureHeight = texDesc.Height;
/external/deqp/modules/glshared/
H A DglsFboUtil.cpp536 const string texDesc = cfg.textures.empty() local
539 log << TestLog::Section("Textures", texDesc);
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurMaskFilter.cpp710 GrTextureDesc texDesc; local
714 texDesc.fWidth = profile_size;
715 texDesc.fHeight = 1;
716 texDesc.fConfig = kAlpha_8_GrPixelConfig;
728 *blurProfileTexture = context->findAndRefTexture(texDesc, blurProfileKey, &params);
735 *blurProfileTexture = context->createTexture(&params, texDesc, blurProfileKey,
888 GrTextureDesc texDesc; local
889 texDesc.fWidth = texSide;
890 texDesc.fHeight = texSide;
891 texDesc
[all...]
/external/skia/src/effects/
H A DSkBlurMaskFilter.cpp698 GrTextureDesc texDesc; local
702 texDesc.fWidth = profile_size;
703 texDesc.fHeight = 1;
704 texDesc.fConfig = kAlpha_8_GrPixelConfig;
716 *blurProfileTexture = context->findAndRefTexture(texDesc, blurProfileKey, &params);
723 *blurProfileTexture = context->createTexture(&params, texDesc, blurProfileKey,
876 GrTextureDesc texDesc; local
877 texDesc.fWidth = texSide;
878 texDesc.fHeight = texSide;
879 texDesc
[all...]

Completed in 1279 milliseconds