diff options
Diffstat (limited to 'cocoa/PlatCocoa.h')
| -rw-r--r-- | cocoa/PlatCocoa.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/cocoa/PlatCocoa.h b/cocoa/PlatCocoa.h index 040821cb8..f8a941f95 100644 --- a/cocoa/PlatCocoa.h +++ b/cocoa/PlatCocoa.h @@ -75,11 +75,13 @@ private:  public:  	SurfaceImpl(); +	SurfaceImpl(const SurfaceImpl *surface, int width, int height);  	~SurfaceImpl() override;  	void Init(WindowID wid) override;  	void Init(SurfaceID sid, WindowID wid) override;  	void InitPixMap(int width, int height, Surface *surface_, WindowID wid) override; +	std::unique_ptr<Surface> AllocatePixMap(int width, int height) override;  	CGContextRef GetContext() { return gc; }  	void SetMode(SurfaceMode mode) override; | 
