| 62 | } |
| 63 | |
| 64 | Display *getCurrentDisplay(GLXDrawable draw) |
| 65 | { |
| 66 | if(!draw) THROW("Invalid argument"); |
| 67 | GLXDrawableAttribs *attribs = HASH::find(draw, NULL); |
| 68 | if(attribs) return attribs->dpy; |
| 69 | return NULL; |
| 70 | } |
| 71 | |
| 72 | void setEventMask(GLXDrawable draw, unsigned long eventMask) |
| 73 | { |
no test coverage detected