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

/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DTexture.cpp1155 GLint Texture::creationLevels(GLsizei width, GLsizei height, GLint maxlevel) const function in class:gl::Texture
1168 GLint Texture::creationLevels(GLsizei size, GLint maxlevel) const function in class:gl::Texture
1170 return creationLevels(size, size, maxlevel);
1515 HRESULT result = device->CreateTexture(mWidth, mHeight, creationLevels(mWidth, mHeight, 0), 0, format, D3DPOOL_DEFAULT, &texture, NULL);
1566 HRESULT result = device->CreateTexture(mWidth, mHeight, creationLevels(mWidth, mHeight, 0), D3DUSAGE_RENDERTARGET, format, D3DPOOL_DEFAULT, &texture, NULL);
1953 HRESULT result = device->CreateCubeTexture(mWidth, creationLevels(mWidth, 0), 0, format, D3DPOOL_DEFAULT, &texture, NULL);
2007 HRESULT result = device->CreateCubeTexture(mWidth, creationLevels(mWidth, 0), D3DUSAGE_RENDERTARGET, format, D3DPOOL_DEFAULT, &texture, NULL);

Completed in 23 milliseconds