author | Ryan VanderMeulen <ryanvm@gmail.com> |
Fri, 05 Jun 2015 11:31:16 -0400 | |
changeset 247416 | c986df6d8b8c |
parent 247415 | ab595285aa97 |
child 247418 | cffc40f56130 |
push id | 60698 |
push user | ryanvm@gmail.com |
push date | 2015-06-05 15:31 +0000 |
treeherder | mozilla-inbound@c986df6d8b8c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1170143 |
milestone | 41.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/gfx/layers/d3d11/TextureD3D11.cpp +++ b/gfx/layers/d3d11/TextureD3D11.cpp @@ -560,17 +560,17 @@ DXGIYCbCrTextureClient::Create(ISurfaceA HANDLE aHandleY, HANDLE aHandleCb, HANDLE aHandleCr, const gfx::IntSize& aSize, const gfx::IntSize& aSizeY, const gfx::IntSize& aSizeCbCr) { if (!aHandleY || !aHandleCb || !aHandleCr || - !aTextureY, || !aTextureCb || !aTextureCr) { + !aTextureY || !aTextureCb || !aTextureCr) { return nullptr; } RefPtr<DXGIYCbCrTextureClient> texture = new DXGIYCbCrTextureClient(aAllocator, aFlags); texture->mHandles[0] = aHandleY; texture->mHandles[1] = aHandleCb; texture->mHandles[2] = aHandleCr;