| 77 | } |
| 78 | |
| 79 | unsigned long getEventMask(GLXDrawable draw) |
| 80 | { |
| 81 | if(!draw) THROW("Invalid argument"); |
| 82 | GLXDrawableAttribs *attribs = HASH::find(draw, NULL); |
| 83 | if(attribs) return attribs->eventMask; |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | void remove(GLXDrawable draw) |
| 88 | { |
no test coverage detected