Source/WebCore/platform/TextureMapper.cmake

@@list(APPEND WebCore_PRIVATE_FRAMEWORK_HEADERS
3434 platform/graphics/texmap/TextureMapperLayer.h
3535 platform/graphics/texmap/TextureMapperPlatformLayer.h
3636 platform/graphics/texmap/TextureMapperPlatformLayerProxy.h
37  platform/graphics/texmap/TextureMapperPlatformLayerProxyDMABuf.h
 37 # platform/graphics/texmap/TextureMapperPlatformLayerProxyDMABuf.h
3838 platform/graphics/texmap/TextureMapperPlatformLayerProxyGL.h
3939 platform/graphics/texmap/TextureMapperPlatformLayerProxyProvider.h
4040 platform/graphics/texmap/TextureMapperSolidColorLayer.h

@@if (USE_COORDINATED_GRAPHICS)
6161 platform/graphics/texmap/TextureMapperPlatformLayerBuffer.cpp
6262 platform/graphics/texmap/TextureMapperPlatformLayerDmabuf.cpp
6363 platform/graphics/texmap/TextureMapperPlatformLayerProxy.cpp
64  platform/graphics/texmap/TextureMapperPlatformLayerProxyDMABuf.cpp
 64 # platform/graphics/texmap/TextureMapperPlatformLayerProxyDMABuf.cpp
6565 platform/graphics/texmap/TextureMapperPlatformLayerProxyGL.cpp
6666
6767 platform/graphics/texmap/coordinated/CoordinatedBackingStore.cpp

Source/WebCore/platform/graphics/nicosia/texmap/NicosiaContentLayerTextureMapperImpl.cpp

3131
3232#if USE(TEXTURE_MAPPER)
3333
34 #include "TextureMapperPlatformLayerProxyDMABuf.h"
3534#include "TextureMapperPlatformLayerProxyGL.h"
3635
 36#if 0
 37#include "TextureMapperPlatformLayerProxyDMABuf.h"
 38#endif
 39
3740namespace Nicosia {
3841
 42#if 0
3943auto ContentLayerTextureMapperImpl::createFactory(Client& client) -> Factory
4044{
4145 return createFactory(client, adoptRef(*new WebCore::TextureMapperPlatformLayerProxyGL));

@@auto ContentLayerTextureMapperImpl::createFactory(Client& client, Ref<WebCore::T
4852 return makeUnique<ContentLayerTextureMapperImpl>(client, WTFMove(proxy));
4953 });
5054}
 55#else
 56auto ContentLayerTextureMapperImpl::createFactory(Client& client) -> Factory
 57{
 58 return Factory(
 59 [&client](ContentLayer&) {
 60 return makeUnique<ContentLayerTextureMapperImpl>(client, adoptRef(*new WebCore::TextureMapperPlatformLayerProxyGL));
 61 });
 62}
 63#endif
5164
5265ContentLayerTextureMapperImpl::ContentLayerTextureMapperImpl(Client& client, Ref<WebCore::TextureMapperPlatformLayerProxy>&& proxy)
5366 : m_proxy(WTFMove(proxy))