~ubuntu-branches/ubuntu/trusty/psychtoolbox-3/trusty-proposed

« back to all changes in this revision

Viewing changes to PsychSourceGL/Source/Common/Screen/WindowHelpers.h

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2013-11-19 23:34:50 UTC
  • mfrom: (3.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20131119233450-f7nf92vb8qavjmk8
Tags: 3.0.11.20131017.dfsg1-3
Upload to unsable since fresh glew has arrived to sid!

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#ifndef PSYCH_IS_INCLUDED_WindowHelpers
27
27
#define PSYCH_IS_INCLUDED_WindowHelpers
28
28
 
29
 
int                             PsychGetColorSizeFromWindowRecord(PsychWindowRecordType *windowRecord);
30
 
 
31
 
 
32
29
int                                     PsychGetWindowDepthValueFromWindowRecord(PsychWindowRecordType *windowRecord);
33
30
void                            PsychSetTextColorInWindowRecord(PsychColorType *textColor,  PsychWindowRecordType *winRec);
34
31
void                            PsychSetTextBackgroundColorInWindowRecord(PsychColorType *textColor,  PsychWindowRecordType *winRec);
38
35
int                                     PsychGetNumPlanesFromWindowRecord(PsychWindowRecordType *windowRecord);
39
36
void                            PsychSetWindowRecordValid(PsychWindowRecordType *winRec);
40
37
void                            PsychCheckIfWindowRecordIsValid(PsychWindowRecordType *winRec);
41
 
psych_bool                              PsychIsOnscreenWindow(PsychWindowRecordType *windowRecord);
42
 
psych_bool                              PsychIsOffscreenWindow(PsychWindowRecordType *windowRecord);
43
 
psych_bool                              PsychIsTexture(PsychWindowRecordType *windowRecord);
44
 
psych_bool                              PsychIsMatlabOnscreenWindow(PsychWindowRecordType *windowRecord);
45
 
 
46
 
 
 
38
psych_bool                      PsychIsOnscreenWindow(PsychWindowRecordType *windowRecord);
 
39
psych_bool                      PsychIsOffscreenWindow(PsychWindowRecordType *windowRecord);
 
40
psych_bool                      PsychIsTexture(PsychWindowRecordType *windowRecord);
 
41
psych_bool                      PsychIsMatlabOnscreenWindow(PsychWindowRecordType *windowRecord);
47
42
 
48
43
//end include once
49
44
#endif
50
 
 
51
 
 
52
 
 
53