| Index: content/common/gpu/image_transport_surface_linux.cc
|
| diff --git a/content/common/gpu/image_transport_surface_linux.cc b/content/common/gpu/image_transport_surface_linux.cc
|
| index b9a97db72b4b0f9128a7ecf37d9edea54ade20f0..ff3a8d5e9381e374033754a44edaad000563f0e6 100644
|
| --- a/content/common/gpu/image_transport_surface_linux.cc
|
| +++ b/content/common/gpu/image_transport_surface_linux.cc
|
| @@ -14,7 +14,8 @@ scoped_refptr<gfx::GLSurface> ImageTransportSurface::CreateSurface(
|
| GpuCommandBufferStub* stub,
|
| const gfx::GLSurfaceHandle& handle) {
|
| scoped_refptr<gfx::GLSurface> surface;
|
| - if (handle.transport_type == gfx::TEXTURE_TRANSPORT) {
|
| + if (handle.transport_type == gfx::TEXTURE_TRANSPORT ||
|
| + handle.transport_type == gfx::TEXTURE_TRANSPORT_NO_PARTIAL_SWAP) {
|
| DCHECK(!handle.handle);
|
| surface = new TextureImageTransportSurface(manager, stub, handle);
|
| } else {
|
|
|