Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.84 KB

SDL_uikitmetalview.h

File metadata and controls

59 lines (42 loc) · 1.84 KB
 
Aug 28, 2017
Aug 28, 2017
1
2
/*
Simple DirectMedia Layer
Jan 5, 2019
Jan 5, 2019
3
Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
Aug 28, 2017
Aug 28, 2017
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
/*
* @author Mark Callow, www.edgewise-consulting.com.
*
* Thanks to Alex Szpakowski, @slime73 on GitHub, for his gist showing
* how to add a CAMetalLayer backed view.
*/
Aug 28, 2017
Aug 28, 2017
29
30
#ifndef SDL_uikitmetalview_h_
#define SDL_uikitmetalview_h_
Aug 28, 2017
Aug 28, 2017
31
Aug 5, 2019
Aug 5, 2019
32
33
#include "../SDL_sysvideo.h"
#include "SDL_uikitwindow.h"
Aug 28, 2017
Aug 28, 2017
34
Aug 5, 2019
Aug 5, 2019
35
#if SDL_VIDEO_DRIVER_UIKIT && (SDL_VIDEO_VULKAN || SDL_VIDEO_METAL)
Dec 8, 2017
Dec 8, 2017
36
Aug 28, 2017
Aug 28, 2017
37
38
39
40
41
42
#import <UIKit/UIKit.h>
#import <Metal/Metal.h>
#import <QuartzCore/CAMetalLayer.h>
#define METALVIEW_TAG 255
Dec 7, 2017
Dec 7, 2017
43
@interface SDL_uikitmetalview : SDL_uikitview
Aug 28, 2017
Aug 28, 2017
44
45
- (instancetype)initWithFrame:(CGRect)frame
Feb 21, 2018
Feb 21, 2018
46
scale:(CGFloat)scale;
Aug 28, 2017
Aug 28, 2017
47
48
49
@end
Aug 5, 2019
Aug 5, 2019
50
51
SDL_MetalView UIKit_Metal_CreateView(_THIS, SDL_Window * window);
void UIKit_Metal_DestroyView(_THIS, SDL_MetalView view);
Aug 28, 2017
Aug 28, 2017
52
Aug 5, 2019
Aug 5, 2019
53
void UIKit_Metal_GetDrawableSize(SDL_Window * window, int * w, int * h);
Aug 28, 2017
Aug 28, 2017
54
Aug 5, 2019
Aug 5, 2019
55
#endif /* SDL_VIDEO_DRIVER_UIKIT && (SDL_VIDEO_VULKAN || SDL_VIDEO_METAL) */
Dec 8, 2017
Dec 8, 2017
56
Aug 28, 2017
Aug 28, 2017
57
58
59
#endif /* SDL_uikitmetalview_h_ */
/* vi: set ts=4 sw=4 expandtab: */