aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/native/macosx/ContextUpdater.m
blob: e0668352ce88c0664fd628feceea133e2dccf133 (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
84
85
86
87
88
89
#import "ContextUpdater.h"
#import <pthread.h>

@implementation ContextUpdater
{
}

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(NULL);
}

- (void) lock
{
    pthread_mutex_lock(&resourceLock);
}

- (void) lockInFunction:(char *)func atLine:(int)line
{
    printLockDebugInfo("locked  ", func, line);
    [self lock];
}

- (void) unlock
{
    pthread_mutex_unlock(&resourceLock);
}

- (void) unlockInFunction:(char *)func atLine:(int)line
{
    printLockDebugInfo("unlocked", func, line);
    [self unlock];
}

- (void) update:(NSNotification *)notification
{
    [self lock];
    
    NSRect r = [view frame];
    if(viewRect.origin.x != r.origin.x || 
       viewRect.origin.y != r.origin.y || 
       viewRect.size.width != r.size.width ||
       viewRect.size.height != r.size.height) {
        viewUpdated = TRUE;
        viewRect = r;
    }

    [self unlock];
}

- (BOOL) needsUpdate
{
    BOOL r;
    [self lock];
    
    r = viewUpdated;
    viewUpdated = FALSE;
    
    [self unlock];

    return r;
}

- (id) initWithContext:(NSOpenGLContext *)context view: (NSView *)nsView
{
    ctx = context;
    view = nsView;
    [ctx retain];
    [view retain];
    viewRect = [view frame];
    viewUpdated = TRUE;
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(update:) name:NSViewGlobalFrameDidChangeNotification object: view];

    return [super init];
}

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

@end