| 70 | } |
| 71 | |
| 72 | void setEventMask(GLXDrawable draw, unsigned long eventMask) |
| 73 | { |
| 74 | if(!draw) THROW("Invalid argument"); |
| 75 | GLXDrawableAttribs *attribs = HASH::find(draw, NULL); |
| 76 | if(attribs) attribs->eventMask = eventMask; |
| 77 | } |
| 78 | |
| 79 | unsigned long getEventMask(GLXDrawable draw) |
| 80 | { |
no test coverage detected