/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Texture.h | 104 class TextureState final : private angle::NonCopyable 107 TextureState(TextureType type); 108 ~TextureState(); 184 friend bool operator==(const TextureState &a, const TextureState &b); 253 bool operator==(const TextureState &a, const TextureState &b); 254 bool operator!=(const TextureState &a, const TextureState &b); 340 const TextureState &getState() const { return mState; } in getState() 355 const TextureState &getTextureState() const; 665 TextureState mState; 701 inline bool operator==(const TextureState &a, const TextureState &b) [all …]
|
D | Texture.cpp | 136 TextureState::TextureState(TextureType type) in TextureState() function in gl::TextureState 158 TextureState::~TextureState() {} in ~TextureState() 160 bool TextureState::swizzleRequired() const in swizzleRequired() 165 GLuint TextureState::getEffectiveBaseLevel() const in getEffectiveBaseLevel() 179 GLuint TextureState::getEffectiveMaxLevel() const in getEffectiveMaxLevel() 191 GLuint TextureState::getMipmapMaxLevel() const in getMipmapMaxLevel() 210 bool TextureState::setBaseLevel(GLuint baseLevel) in setBaseLevel() 220 bool TextureState::setMaxLevel(GLuint maxLevel) in setMaxLevel() 235 bool TextureState::isCubeComplete() const in isCubeComplete() 262 const ImageDesc &TextureState::getBaseLevelDesc() const in getBaseLevelDesc() [all …]
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | Texture.h | 48 enum class TextureState { OwnedInternal, OwnedExternal, Destroyed }; enum 50 TextureBase(DeviceBase* device, const TextureDescriptor* descriptor, TextureState state); 74 TextureState GetTextureState() const; 100 TextureBase(DeviceBase* device, TextureState state); 114 TextureState mState;
|
D | Texture.cpp | 453 TextureState state) in TextureBase() 477 TextureBase::TextureBase(DeviceBase* device, TextureState state) in TextureBase() 487 mState = TextureState::Destroyed; in DestroyImpl() 560 TextureBase::TextureState TextureBase::GetTextureState() const { in GetTextureState() 609 DAWN_INVALID_IF(mState == TextureState::Destroyed, "Destroyed texture %s used in a submit.", in ValidateCanUseInSubmitNow()
|
D | SwapChain.cpp | 286 TextureBase::TextureState::Destroyed); in ~NewSwapChainBase() 353 TextureBase::TextureState::Destroyed); in APIPresent()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cSparseTextureTests.hpp | 48 struct TextureState struct 77 …static void getTextureLevelSize(GLint target, TextureState& state, GLint level, GLint& width, GLin… 235 TextureState mState;
|
/third_party/skia/third_party/externals/angle2/src/tests/ |
D | angle_unittests_utils.h | 38 TextureImpl *createTexture(const gl::TextureState &data) override { return nullptr; } in createTexture() 91 MOCK_METHOD1(createTexture, TextureImpl *(const gl::TextureState &));
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | TextureImpl.h | 34 class TextureState; variable 44 TextureImpl(const gl::TextureState &state); 247 const gl::TextureState &mState;
|
D | GLImplFactory.h | 69 virtual TextureImpl *createTexture(const gl::TextureState &state) = 0;
|
D | TextureImpl_mock.h | 143 gl::TextureState mMockState;
|
D | TextureImpl.cpp | 13 TextureImpl::TextureImpl(const gl::TextureState &state) : mState(state) {} in TextureImpl()
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/ |
D | DestroyObjectTests.cpp | 55 AcquireRef(new TextureMock(&mDevice, TextureBase::TextureState::OwnedInternal)); in GetTexture() 471 TextureMock textureMock(&mDevice, TextureBase::TextureState::OwnedInternal); in TEST_F() 479 TextureMock textureMock(&mDevice, TextureBase::TextureState::OwnedExternal); in TEST_F() 493 new TextureMock(&mDevice, TextureBase::TextureState::OwnedInternal); in TEST_F() 507 new TextureMock(&mDevice, TextureBase::TextureState::OwnedExternal); in TEST_F() 562 new TextureMock(&mDevice, TextureBase::TextureState::OwnedInternal); in TEST_F()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
D | TextureD3D.h | 35 TextureD3D(const gl::TextureState &data, RendererD3D *renderer); 218 TextureD3D_2D(const gl::TextureState &data, RendererD3D *renderer); 352 TextureD3D_Cube(const gl::TextureState &data, RendererD3D *renderer); 482 TextureD3D_3D(const gl::TextureState &data, RendererD3D *renderer); 614 TextureD3D_2DArray(const gl::TextureState &data, RendererD3D *renderer); 752 TextureD3DImmutableBase(const gl::TextureState &data, RendererD3D *renderer); 807 TextureD3D_External(const gl::TextureState &data, RendererD3D *renderer); 849 TextureD3D_2DMultisample(const gl::TextureState &data, RendererD3D *renderer); 894 TextureD3D_2DMultisampleArray(const gl::TextureState &data, RendererD3D *renderer);
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/mocks/ |
D | TextureMock.h | 27 TextureMock(DeviceBase* device, TextureBase::TextureState state) in TextureMock()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
D | TextureGL.cpp | 130 : Texture(device, descriptor, GenTexture(device->gl), TextureState::OwnedInternal) { in Texture() 185 TextureState state) in Texture() 195 if (GetTextureState() == TextureState::OwnedInternal) { in DestroyImpl() 539 if (GetTexture()->GetTextureState() == Texture::TextureState::Destroyed) { in TextureView()
|
D | SwapChainGL.cpp | 44 TextureBase::TextureState::OwnedExternal); in GetNextTextureImpl()
|
D | TextureGL.h | 33 TextureState state);
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
D | VertexProcessor.hpp | 86 struct TextureState struct 93 TextureState textureState[8];
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | TextureVk.cpp | 596 AcquireRef(new Texture(device, descriptor, TextureState::OwnedInternal)); in Create() 608 AcquireRef(new Texture(device, textureDescriptor, TextureState::OwnedInternal)); in CreateFromExternal() 618 AcquireRef(new Texture(device, descriptor, TextureState::OwnedExternal)); in CreateForSwapChain() 623 Texture::Texture(Device* device, const TextureDescriptor* descriptor, TextureState state) in Texture() 841 if (GetTextureState() == TextureState::OwnedInternal) { in DestroyImpl() 1305 if (GetTexture()->GetTextureState() == Texture::TextureState::Destroyed) { in Initialize()
|
D | TextureVk.h | 103 Texture(Device* device, const TextureDescriptor* descriptor, TextureState state);
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/null/ |
D | DeviceNull.cpp | 168 return AcquireRef(new Texture(this, descriptor, TextureBase::TextureState::OwnedInternal)); in CreateTextureImpl() 423 new Texture(GetDevice(), &textureDesc, TextureBase::TextureState::OwnedInternal)); in GetCurrentTextureViewImpl()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
D | TextureD3D12.h | 91 Texture(Device* device, const TextureDescriptor* descriptor, TextureState state);
|
D | TextureD3D12.cpp | 508 AcquireRef(new Texture(device, descriptor, TextureState::OwnedInternal)); in Create() 528 AcquireRef(new Texture(device, descriptor, TextureState::OwnedExternal)); in CreateExternalImage() 550 AcquireRef(new Texture(device, descriptor, TextureState::OwnedExternal)); in Create() 648 Texture::Texture(Device* device, const TextureDescriptor* descriptor, TextureState state) in Texture()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/ |
D | TextureMTL.mm | 423 AcquireRef(new Texture(device, descriptor, TextureState::OwnedInternal)); 437 AcquireRef(new Texture(device, textureDescriptor, TextureState::OwnedInternal)); 447 AcquireRef(new Texture(device, descriptor, TextureState::OwnedInternal)); 735 if (GetTexture()->GetTextureState() == Texture::TextureState::Destroyed) {
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/ |
D | TextureNULL.h | 21 TextureNULL(const gl::TextureState &state);
|