icecat: add release icecat-140.9.0-1gnu1 for ecne
This commit is contained in:
parent
8eb1f1732f
commit
a5f93cb214
1197 changed files with 30593 additions and 15344 deletions
|
|
@ -81,6 +81,11 @@ already_AddRefed<TextureHost> CreateTextureHostOGL(
|
|||
#endif
|
||||
|
||||
case SurfaceDescriptor::TEGLImageDescriptor: {
|
||||
if (aDeallocator && !aDeallocator->IsSameProcess()) {
|
||||
gfxCriticalError()
|
||||
<< "EGLImageDescriptor must only be used in same process";
|
||||
return nullptr;
|
||||
}
|
||||
const EGLImageDescriptor& desc = aDesc.get_EGLImageDescriptor();
|
||||
result = new EGLImageTextureHost(aFlags, (EGLImage)desc.image(),
|
||||
(EGLSync)desc.fence(), desc.size(),
|
||||
|
|
@ -109,6 +114,11 @@ already_AddRefed<TextureHost> CreateTextureHostOGL(
|
|||
#endif
|
||||
|
||||
case SurfaceDescriptor::TSurfaceDescriptorSharedGLTexture: {
|
||||
if (aDeallocator && !aDeallocator->IsSameProcess()) {
|
||||
gfxCriticalError() << "SurfaceDescriptorSharedGLTexture must only be "
|
||||
"used in same process";
|
||||
return nullptr;
|
||||
}
|
||||
const auto& desc = aDesc.get_SurfaceDescriptorSharedGLTexture();
|
||||
result =
|
||||
new GLTextureHost(aFlags, desc.texture(), desc.target(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue