forked from mirrors/gecko-dev
		
	 126bd9e1a4
			
		
	
	
		126bd9e1a4
		
	
	
	
	
		
			
			This patch was generated automatically by the "modeline.py" script, available here: https://github.com/amccreight/moz-source-tools/blob/master/modeline.py For every file that is modified in this patch, the changes are as follows: (1) The patch changes the file to use the exact C++ mode lines from the Mozilla coding style guide, available here: https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Coding_Style#Mode_Line (2) The patch deletes any blank lines between the mode line & the MPL boilerplate comment. (3) If the file previously had the mode lines and MPL boilerplate in a single contiguous C++ comment, then the patch splits them into separate C++ comments, to match the boilerplate in the coding style. MozReview-Commit-ID: 77D61xpSmIl --HG-- extra : rebase_source : c6162fa3cf539a07177a19838324bf368faa162b
		
			
				
	
	
		
			100 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 | |
| /* vim: set ts=8 sts=2 et sw=2 tw=80: */
 | |
| /* This Source Code Form is subject to the terms of the Mozilla Public
 | |
|  * License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
|  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 | |
| 
 | |
| #include "MacIOSurfaceTextureHostBasic.h"
 | |
| #include "mozilla/gfx/MacIOSurface.h"
 | |
| #include "MacIOSurfaceHelpers.h"
 | |
| 
 | |
| namespace mozilla {
 | |
| namespace layers {
 | |
| 
 | |
| MacIOSurfaceTextureSourceBasic::MacIOSurfaceTextureSourceBasic(MacIOSurface* aSurface)
 | |
|   : mSurface(aSurface)
 | |
| {
 | |
|   MOZ_COUNT_CTOR(MacIOSurfaceTextureSourceBasic);
 | |
| }
 | |
| 
 | |
| MacIOSurfaceTextureSourceBasic::~MacIOSurfaceTextureSourceBasic()
 | |
| {
 | |
|   MOZ_COUNT_DTOR(MacIOSurfaceTextureSourceBasic);
 | |
| }
 | |
| 
 | |
| gfx::IntSize
 | |
| MacIOSurfaceTextureSourceBasic::GetSize() const
 | |
| {
 | |
|   return gfx::IntSize(mSurface->GetDevicePixelWidth(),
 | |
|                       mSurface->GetDevicePixelHeight());
 | |
| }
 | |
| 
 | |
| gfx::SurfaceFormat
 | |
| MacIOSurfaceTextureSourceBasic::GetFormat() const
 | |
| {
 | |
|   // Set the format the same way as CreateSourceSurfaceFromMacIOSurface.
 | |
|   return mSurface->GetFormat() == gfx::SurfaceFormat::NV12
 | |
|     ? gfx::SurfaceFormat::B8G8R8X8 : gfx::SurfaceFormat::B8G8R8A8;
 | |
| }
 | |
| 
 | |
| MacIOSurfaceTextureHostBasic::MacIOSurfaceTextureHostBasic(
 | |
|     TextureFlags aFlags,
 | |
|     const SurfaceDescriptorMacIOSurface& aDescriptor
 | |
| )
 | |
|   : TextureHost(aFlags)
 | |
| {
 | |
|   mSurface = MacIOSurface::LookupSurface(aDescriptor.surfaceId(),
 | |
|                                          aDescriptor.scaleFactor(),
 | |
|                                          !aDescriptor.isOpaque());
 | |
| }
 | |
| 
 | |
| gfx::SourceSurface*
 | |
| MacIOSurfaceTextureSourceBasic::GetSurface(gfx::DrawTarget* aTarget)
 | |
| {
 | |
|   if (!mSourceSurface) {
 | |
|     mSourceSurface = CreateSourceSurfaceFromMacIOSurface(mSurface);
 | |
|   }
 | |
|   return mSourceSurface;
 | |
| }
 | |
| 
 | |
| bool
 | |
| MacIOSurfaceTextureHostBasic::Lock()
 | |
| {
 | |
|   if (!mProvider) {
 | |
|     return false;
 | |
|   }
 | |
| 
 | |
|   if (!mTextureSource) {
 | |
|     mTextureSource = new MacIOSurfaceTextureSourceBasic(mSurface);
 | |
|   }
 | |
|   return true;
 | |
| }
 | |
| 
 | |
| void
 | |
| MacIOSurfaceTextureHostBasic::SetTextureSourceProvider(TextureSourceProvider* aProvider)
 | |
| {
 | |
|   if (!aProvider->AsCompositor() || !aProvider->AsCompositor()->AsBasicCompositor()) {
 | |
|     mTextureSource = nullptr;
 | |
|     return;
 | |
|   }
 | |
| 
 | |
|   mProvider = aProvider;
 | |
| 
 | |
|   if (mTextureSource) {
 | |
|     mTextureSource->SetTextureSourceProvider(aProvider);
 | |
|   }
 | |
| }
 | |
| 
 | |
| gfx::SurfaceFormat
 | |
| MacIOSurfaceTextureHostBasic::GetFormat() const {
 | |
|   return mSurface->HasAlpha() ? gfx::SurfaceFormat::R8G8B8A8 : gfx::SurfaceFormat::B8G8R8X8;
 | |
| }
 | |
| 
 | |
| gfx::IntSize
 | |
| MacIOSurfaceTextureHostBasic::GetSize() const {
 | |
|   return gfx::IntSize(mSurface->GetDevicePixelWidth(),
 | |
|                       mSurface->GetDevicePixelHeight());
 | |
| }
 | |
| 
 | |
| } // namespace layers
 | |
| } // namespace mozilla
 |