Calling exit() using FX2D renderer doesn't stop program

Hi,

Does the same happen with

void setup() {
  size(100, 100, FX2D);
}
void draw() {
}
void keyPressed() {
  exit();
}

? I can’t test because FX2D doesn’t work at all for me.