| 
									
										
										
										
											2024-06-20 21:33:34 +03:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/Forward.h>
 | 
					
						
							|  |  |  | #include <AK/Noncopyable.h>
 | 
					
						
							| 
									
										
										
										
											2024-06-25 16:43:39 +02:00
										 |  |  | #include <AK/OwnPtr.h>
 | 
					
						
							| 
									
										
										
										
											2024-06-20 21:33:34 +03:00
										 |  |  | #include <LibCore/MachPort.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Core { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class IOSurfaceHandle { | 
					
						
							|  |  |  |     AK_MAKE_NONCOPYABLE(IOSurfaceHandle); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     IOSurfaceHandle(IOSurfaceHandle&& other); | 
					
						
							|  |  |  |     IOSurfaceHandle& operator=(IOSurfaceHandle&& other); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     static IOSurfaceHandle create(int width, int height); | 
					
						
							|  |  |  |     static IOSurfaceHandle from_mach_port(MachPort const& port); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     MachPort create_mach_port() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     size_t width() const; | 
					
						
							|  |  |  |     size_t height() const; | 
					
						
							|  |  |  |     size_t bytes_per_element() const; | 
					
						
							| 
									
										
										
										
											2024-06-25 16:43:39 +02:00
										 |  |  |     size_t bytes_per_row() const; | 
					
						
							| 
									
										
										
										
											2024-06-20 21:33:34 +03:00
										 |  |  |     void* data() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-26 17:56:55 +02:00
										 |  |  |     void* core_foundation_pointer() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-20 21:33:34 +03:00
										 |  |  |     ~IOSurfaceHandle(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     struct IOSurfaceRefWrapper; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     IOSurfaceHandle(OwnPtr<IOSurfaceRefWrapper>&&); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     OwnPtr<IOSurfaceRefWrapper> m_ref_wrapper; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |