aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/native/macosx/ContextUpdater.m
blob: 8596977222ab731f1ef4e88edcffd5049b03ebbf (plain)
1
2
3
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#import "ContextUpdater.h"
#import <pthread.h>

@implementation ContextUpdater
{
}

static NSOpenGLContext *theContext;
static pthread_mutex_t resourceLock = PTHREAD_MUTEX_INITIALIZER;

static void printLockDebugInfo(char *message, char *func, int line)
{
    fprintf(stderr, "%s in function: \"%s\" at line: %d\n", message, func, line);
    fflush(stderr);
}

+ (void) lock
{
    if (theContext != NULL)
    {
        pthread_mutex_lock(&resourceLock);
    }
}

+ (void) lockInFunction:(char *)func atLine:(int)line
{
    if (theContext != NULL)
    {
        printLockDebugInfo("locked  ", func, line);
        [self lock];
    }
}

+ (void) unlock
{
    if (theContext != NULL)
    {
        pthread_mutex_unlock(&resourceLock);
    }
}

+ (void) unlockInFunction:(char *)func atLine:(int)line
{
    if (theContext != NULL)
    {
        printLockDebugInfo("unlocked", func, line);
        [self unlock];
    }
}

- (void) registerFor:(NSOpenGLContext *)context with: (NSView *)view
{
    if (view != NULL)
    {
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(update:) name:NSViewGlobalFrameDidChangeNotification object: view];
        theContext = context;
    }
}

- (void) update:(NSNotification *)notification
{
    [ContextUpdater lock];
    
    [theContext update];
    
    [ContextUpdater unlock];
}

- (id) init
{    
    theContext = NULL;
    
    return [super init];
}

- (void) dealloc
{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
    
    [super dealloc];
}

@end