Searched defs:newTexture (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DImage11.cpp445 ID3D11Texture3D *newTexture = NULL; local
465 result = device->CreateTexture3D(&desc, initialData.data(), &newTexture);
469 result = device->CreateTexture3D(&desc, NULL, &newTexture);
479 mStagingTexture = newTexture;
484 ID3D11Texture2D *newTexture = NULL; local
506 result = device->CreateTexture2D(&desc, initialData.data(), &newTexture);
510 result = device->CreateTexture2D(&desc, NULL, &newTexture);
520 mStagingTexture = newTexture;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DImage9.cpp170 IDirect3DTexture9 *newTexture = NULL; local
185 poolToUse, &newTexture, NULL);
194 newTexture->GetSurfaceLevel(levelToFetch, &newSurface);
195 SafeRelease(newTexture);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DDrawingBuffer.cpp246 TextureInfo newTexture; local
247 newTexture.textureId = createColorTexture();
248 allocateTextureMemory(&newTexture, m_size);
250 if (!newTexture.textureId)
253 frontColorBufferMailbox = createNewMailbox(newTexture);

Completed in 383 milliseconds