Re: [AD] Missing field in keyboard and mouse events |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
- To: Coordination of admins/developers of the game programming library Allegro <alleg-developers@xxxxxxxxxx>
- Subject: Re: [AD] Missing field in keyboard and mouse events
- From: Elias Pschernig <elias@xxxxxxxxxx>
- Date: Tue, 12 Aug 2008 13:34:12 +0200
On Tue, 2008-08-12 at 21:18 +1000, Peter Wang wrote:
> On 2008-08-12, Elias Pschernig <elias@xxxxxxxxxx> wrote:
> > This reminds me, currently this is done for each event in
> > xglx/xsystem.c:
> >
> > // FIXME: With many windows, it's bad to loop through them all,
> > // maybe can come up with a better system here.
> > for (i = 0; i < _al_vector_size(&s->system.displays); i++) {
> > ALLEGRO_DISPLAY_XGLX **dptr = _al_vector_ref(&s->system.displays, i);
> > d = *dptr;
> > if (d->window == event.xany.window) {
> > break;
> > }
> > }
> >
> > But with typically 1 or at most 2 windows, I guess we need no FIXME there..
>
> Eh, for a small number of windows it might even be optimal.
>
Ok. I'll try and fill in the display field for all X11 events now then.
--
Elias Pschernig <elias@xxxxxxxxxx>