pshaughn

Results 41 comments of pshaughn

I notice that p5's approach is actually more complex than you're expressing here. For exmaple, p5 has one API for mouse coordinates and another API for touch coordinates, with no...

I don't think it's possible to do this directly, at least not portably. The framebuffer being written into is up to the GPU renderer to manage, and I don't think...

https://github.com/servo/ipc-channel/blob/84a1483420ba60110c2388aaa3062511339976d1/src/platform/unix/mod.rs#L1018-L1025 If the error we get is an EINTR coming from here, we should retry the recvmsg, not abort. From what I'm reading, EINTR can happen here at random when...

I jammed an assert that it wasn't EINTR in there and started running the test from #179 in a loop in a bunch of terminals but I'm not getting either...

Most of the times I've seen this error in WPT tests, it's been a response header that Servo interpreted as CORS-disallowed or otherwise unacceptable. And unfortunately it IS supposed to...

Given the gamepad specification: "A user agent MUST dispatch this event type to indicate the user has connected a gamepad. If a gamepad was already connected when the page was...

WPT tests for the Fetch API care about this.

SDL f8f8d87bfaf3d8557a5c13e0072964a537569b6c and SDL_image 979f0173086bb3a09bfb2f3ec2131c0355bedfaf

I'm sorry, but I haven't been able to come up with a reproducer for this inconsistency (I'd observed it in the course of quite a large program). For reference, the...

WPT expects ARIA to at least exist on the DOM level even if it the test harness has no way of looking at the UI-facing aspects; dom/nodes/aria-attribute-reflection.tentative.html and dom/nodes/aria-element-reflection.tentative.html each...