orca/src/app/osx_app.h

88 lines
1.7 KiB
C
Raw Normal View History

2022-08-14 16:19:40 +00:00
/************************************************************//**
*
* @file: osx_app.h
* @author: Martin Fouilleul
* @date: 12/02/2021
* @revision:
*
*****************************************************************/
#ifndef __OSX_APP_H_
#define __OSX_APP_H_
#include"mp_app.h"
This commit restructures the codebase to melt the milepost platform layer into the main orca codebase. Here's a list of commits squashed in this update: - move angle files to ext/ and pull includes/libs from there when needed - remove milepost/ext/angle_headers - Collapsed milepost/ext into ext - Collapse milepost/scripts into scripts/ - collapse milepost/resources into resources/. WARN: this temporarily breaks milepost's native examples - collapse milepost/test into test/ - renamed test/ to tests/ - build milepost directly into build/bin - remove unused GLES and KHR folders from sdk/ - reorganizing milepost directory tree into app, graphics, platfrom, ui, util - collapse milepost/src to src/ - Move all native examples to sketches/ and remove milepost repo - Moving sketches resources into their own shared folder separate from the runtime's resource folder - Moving all binding code to src/wasmbind - Moving all binding code to src/wasmbind - pong: fix typo in error log - fixing log parameter order - add error logs to mg_image_create_* - Fix build scripts on windows - fixed include mistake after rebase - collapsing milepost.{h|c|m} to orca.{h|c|m} and moving from sdk/ to src/ - rename orca_app.h/main.c to runtime.h/c - collapsed sdk/ to src/ - put old sdk files into their respective dirs - renamed canvas_api.json to surface_api.json - moved all stb headers in ext/stb/ - remove unused OpenSansLatinSubset.ttf font - moving cstdlib to src/wasmlibc and removing some duplicates with src/platform - move libc stdarg and string functions from platform/ to wasmlibc/ - rename wasmlibc to libc-shim to reflect non-completeness - Expose abort/assert variadic functions and macros to orca apps, and forward libc-shim abort/assert to these - move Orca API runtime implementations to runtime_xxx - fix missing math constants when including math.h with msvc in graphics_common.c - Change name of runtime to orca_runtime. When bundling on Windows, change name of runtime executable to the name of the app.
2023-08-09 11:06:32 +00:00
#include"graphics/graphics.h"
2022-08-14 16:19:40 +00:00
#ifdef __OBJC__
#import<Cocoa/Cocoa.h>
#else
#define NSWindow void
#define NSView void
#define NSObject void
#define NSTimer void
#define NSCursor void
#define CALayer void
#define CAContext void
#endif
2022-08-14 16:19:40 +00:00
#include<Carbon/Carbon.h>
typedef struct osx_window_data
{
2022-08-14 16:19:40 +00:00
NSWindow* nsWindow;
NSView* nsView;
NSObject* nsWindowDelegate;
} osx_window_data;
2022-08-14 16:19:40 +00:00
#define MP_PLATFORM_WINDOW_DATA osx_window_data osx;
2022-08-14 16:19:40 +00:00
const u32 MP_APP_MAX_VIEWS = 128;
typedef struct osx_app_data
2022-08-14 16:19:40 +00:00
{
NSTimer* frameTimer;
NSCursor* cursor;
TISInputSourceRef kbLayoutInputSource;
void* kbLayoutUnicodeData;
id kbLayoutListener;
} osx_app_data;
2022-08-14 16:19:40 +00:00
#define MP_PLATFORM_APP_DATA osx_app_data osx;
2022-08-14 16:19:40 +00:00
//-----------------------------------------------
// Surface layer
//-----------------------------------------------
#ifdef __OBJC__
//NOTE: these private interfaces for surface sharing need to be declared explicitly here
typedef uint32_t CGSConnectionID;
CGSConnectionID CGSMainConnectionID(void);
typedef uint32_t CAContextID;
@interface CAContext : NSObject
{
}
+ (id)contextWithCGSConnection:(CAContextID)contextId options:(NSDictionary*)optionsDict;
@property(readonly) CAContextID contextId;
@property(retain) CALayer *layer;
@end
@interface CALayerHost : CALayer
{
}
@property CAContextID contextId;
@end
#endif
typedef struct mp_layer
{
CALayer* caLayer;
CAContext* caContext;
} mp_layer;
2022-08-14 16:19:40 +00:00
#endif //__OSX_APP_H_