forked from mirrors/gecko-dev
		
	 7aea8e97e7
			
		
	
	
		7aea8e97e7
		
	
	
	
	
		
			
			Note: Sorry in advance that this patch is so big. Unfortunately splitting it up would create lots of redundant changes. This should be the last big refactoring for the Wayland compositor backend for now. Up until now SurfacePoolWayland was a pool of actual `wl_surface`s, as before bug 1718569 we had no direct access to `wl_buffer`s when using EGL. However, the way `SurfacePoolCA` manages native surfaces is closer to what in Wayland terminology would be a buffer pool: buffers are heavy-weight and expansive to allocate, while `wl_surface` objects are cheap to recreate. So instead of having a pool of surfaces, each of them having its own pool of buffers, make `wl_surface`s part of tiles and make `SurfacePoolWayland` manage `wl_buffer`s (in the form of SHM- or DMABuf buffers). This will allow us to share buffers (especially depth buffers) more efficiently, reducing VRAM usage and allocation times. Apart from that it will also simplify our tile management logic. Most importantly, we'll need to reorder `wl_surface`s less often and less complex (no `place_below` the parent surface) and can also drop reattaching subsurfaces to compositors. Especially the former will likely decrease CPU time in compositors. Overall this patch makes `NativeLayerWayland` behave more like `NativeLayerCA` while taking in lessons learned from `WindowSurfaceWaylandMB`. Differential Revision: https://phabricator.services.mozilla.com/D119993
		
			
				
	
	
		
			139 lines
		
	
	
	
		
			4.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			139 lines
		
	
	
	
		
			4.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 | |
|  *
 | |
|  * 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/. */
 | |
| 
 | |
| #ifndef _MOZILLA_WIDGET_GTK_WAYLAND_BUFFER_H
 | |
| #define _MOZILLA_WIDGET_GTK_WAYLAND_BUFFER_H
 | |
| 
 | |
| #include "DMABufSurface.h"
 | |
| #include "GLContext.h"
 | |
| #include "MozFramebuffer.h"
 | |
| #include "mozilla/gfx/2D.h"
 | |
| #include "mozilla/gfx/Types.h"
 | |
| #include "mozilla/Mutex.h"
 | |
| #include "nsTArray.h"
 | |
| #include "nsWaylandDisplay.h"
 | |
| 
 | |
| namespace mozilla::widget {
 | |
| 
 | |
| // Allocates and owns shared memory for Wayland drawing surface
 | |
| class WaylandShmPool {
 | |
|  public:
 | |
|   NS_INLINE_DECL_THREADSAFE_REFCOUNTING(WaylandShmPool);
 | |
| 
 | |
|   static RefPtr<WaylandShmPool> Create(
 | |
|       const RefPtr<nsWaylandDisplay>& aWaylandDisplay, int aSize);
 | |
| 
 | |
|   wl_shm_pool* GetShmPool() { return mShmPool; };
 | |
|   void* GetImageData() { return mImageData; };
 | |
| 
 | |
|  private:
 | |
|   explicit WaylandShmPool(int aSize);
 | |
|   ~WaylandShmPool();
 | |
| 
 | |
|   wl_shm_pool* mShmPool;
 | |
|   int mShmPoolFd;
 | |
|   int mAllocatedSize;
 | |
|   void* mImageData;
 | |
| };
 | |
| 
 | |
| class WaylandBuffer {
 | |
|  public:
 | |
|   NS_INLINE_DECL_THREADSAFE_REFCOUNTING(WaylandBuffer);
 | |
| 
 | |
|   void AttachAndCommit(wl_surface* aSurface);
 | |
|   virtual wl_buffer* GetWlBuffer() = 0;
 | |
|   virtual already_AddRefed<gfx::DrawTarget> Lock() { return nullptr; };
 | |
|   virtual void* GetImageData() { return nullptr; }
 | |
|   virtual GLuint GetTexture() { return 0; }
 | |
|   virtual void DestroyGLResources(){};
 | |
| 
 | |
|   LayoutDeviceIntSize GetSize() { return mSize; };
 | |
|   bool IsMatchingSize(const LayoutDeviceIntSize& aSize) {
 | |
|     return aSize == mSize;
 | |
|   }
 | |
|   bool IsAttached() { return mAttached; }
 | |
|   static gfx::SurfaceFormat GetSurfaceFormat() { return mFormat; }
 | |
| 
 | |
|   static void BufferReleaseCallbackHandler(void* aData, wl_buffer* aBuffer);
 | |
|   void SetBufferReleaseFunc(void (*aBufferReleaseFunc)(void* aData,
 | |
|                                                        wl_buffer* aBuffer)) {
 | |
|     mBufferReleaseFunc = aBufferReleaseFunc;
 | |
|   }
 | |
|   void SetBufferReleaseData(void* aBufferReleaseData) {
 | |
|     mBufferReleaseData = aBufferReleaseData;
 | |
|   }
 | |
| 
 | |
|  protected:
 | |
|   explicit WaylandBuffer(const LayoutDeviceIntSize& aSize);
 | |
|   virtual ~WaylandBuffer() = default;
 | |
| 
 | |
|   void BufferReleaseCallbackHandler(wl_buffer* aBuffer);
 | |
| 
 | |
|   LayoutDeviceIntSize mSize;
 | |
|   bool mAttached = false;
 | |
|   void (*mBufferReleaseFunc)(void* aData, wl_buffer* aBuffer) = nullptr;
 | |
|   void* mBufferReleaseData = nullptr;
 | |
|   static gfx::SurfaceFormat mFormat;
 | |
| };
 | |
| 
 | |
| // Holds actual graphics data for wl_surface
 | |
| class WaylandBufferSHM final : public WaylandBuffer {
 | |
|  public:
 | |
|   static RefPtr<WaylandBufferSHM> Create(const LayoutDeviceIntSize& aSize);
 | |
| 
 | |
|   wl_buffer* GetWlBuffer() override { return mWLBuffer; };
 | |
|   already_AddRefed<gfx::DrawTarget> Lock() override;
 | |
|   void* GetImageData() override { return mShmPool->GetImageData(); }
 | |
| 
 | |
|   void Clear();
 | |
|   size_t GetBufferAge() { return mBufferAge; };
 | |
|   RefPtr<WaylandShmPool> GetShmPool() { return mShmPool; }
 | |
| 
 | |
|   void IncrementBufferAge() { mBufferAge++; };
 | |
|   void ResetBufferAge() { mBufferAge = 0; };
 | |
| 
 | |
| #ifdef MOZ_LOGGING
 | |
|   void DumpToFile(const char* aHint);
 | |
| #endif
 | |
| 
 | |
|  private:
 | |
|   explicit WaylandBufferSHM(const LayoutDeviceIntSize& aSize);
 | |
|   ~WaylandBufferSHM() override;
 | |
| 
 | |
|   // WaylandShmPoolMB provides actual shared memory we draw into
 | |
|   RefPtr<WaylandShmPool> mShmPool;
 | |
| 
 | |
|   // wl_buffer is a wayland object that encapsulates the shared memory
 | |
|   // and passes it to wayland compositor by wl_surface object.
 | |
|   wl_buffer* mWLBuffer = nullptr;
 | |
| 
 | |
|   size_t mBufferAge = 0;
 | |
| 
 | |
| #ifdef MOZ_LOGGING
 | |
|   static int mDumpSerial;
 | |
|   static char* mDumpDir;
 | |
| #endif
 | |
| };
 | |
| 
 | |
| class WaylandBufferDMABUF final : public WaylandBuffer {
 | |
|  public:
 | |
|   static RefPtr<WaylandBufferDMABUF> Create(const LayoutDeviceIntSize& aSize,
 | |
|                                             gl::GLContext* aGL);
 | |
| 
 | |
|   wl_buffer* GetWlBuffer() override { return mDMABufSurface->GetWlBuffer(); };
 | |
|   GLuint GetTexture() override { return mDMABufSurface->GetTexture(); };
 | |
|   void DestroyGLResources() override { mDMABufSurface->ReleaseTextures(); };
 | |
| 
 | |
|  private:
 | |
|   explicit WaylandBufferDMABUF(const LayoutDeviceIntSize& aSize);
 | |
|   ~WaylandBufferDMABUF() = default;
 | |
| 
 | |
|   RefPtr<DMABufSurfaceRGBA> mDMABufSurface;
 | |
| };
 | |
| 
 | |
| }  // namespace mozilla::widget
 | |
| 
 | |
| #endif  // _MOZILLA_WIDGET_GTK_WAYLAND_BUFFER_H
 |