HomeSort by relevance Sort by last modified time
    Searched defs:mipLevels (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
TextureD3D.cpp 208 int TextureD3D::mipLevels() const
495 int levelCount = mipLevels();
990 int levelCount = mipLevels();
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
RenderTarget11.cpp 19 static bool getTextureProperties(ID3D11Resource *resource, unsigned int *mipLevels, unsigned int *samples)
28 *mipLevels = texDesc.MipLevels;
41 *mipLevels = texDesc.MipLevels;
54 *mipLevels = texDesc.MipLevels;
118 unsigned int mipLevels, samples;
119 getTextureProperties(resource, &mipLevels, &samples);
121 return D3D11CalcSubresource(mipSlice, arraySlice, mipLevels);
    [all...]
TextureStorage11.h 83 virtual ID3D11ShaderResourceView *createSRV(int baseLevel, int mipLevels, DXGI_FORMAT format, ID3D11Resource *texture) = 0;
119 SRVKey(int baseLevel = 0, int mipLevels = 0, bool swizzle = false);
124 int mipLevels;
179 virtual ID3D11ShaderResourceView *createSRV(int baseLevel, int mipLevels, DXGI_FORMAT format, ID3D11Resource *texture);
215 virtual ID3D11ShaderResourceView *createSRV(int baseLevel, int mipLevels, DXGI_FORMAT format, ID3D11Resource *texture);
254 virtual ID3D11ShaderResourceView *createSRV(int baseLevel, int mipLevels, DXGI_FORMAT format, ID3D11Resource *texture);
295 virtual ID3D11ShaderResourceView *createSRV(int baseLevel, int mipLevels, DXGI_FORMAT format, ID3D11Resource *texture);
TextureStorage11.cpp 50 TextureStorage11::SRVKey::SRVKey(int baseLevel, int mipLevels, bool swizzle)
51 : baseLevel(baseLevel), mipLevels(mipLevels), swizzle(swizzle)
58 mipLevels == rhs.mipLevels &&
200 unsigned int mipLevels = mipmapping ? (samplerState.maxLevel - samplerState.baseLevel) : 1;
202 // Make sure there's 'mipLevels' mipmap levels below the base level (offset by the top level, which corresponds to GL level 0)
203 mipLevels = std::min(mipLevels, mMipLevels - mTopLevel - samplerState.baseLevel);
210 SRVKey key(samplerState.baseLevel, mipLevels, swizzleRequired)
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
Texture.cpp 172 int Texture::mipLevels() const
372 int levelCount = mipLevels();
636 int levelCount = mipLevels();
790 int levelCount = mipLevels();
948 int levelCount = mipLevels();

Completed in 481 milliseconds