merlinvn / controlp5

Automatically exported from code.google.com/p/controlp5
0 stars 0 forks source link

ControlP5 with PeasyCam example blurry with Processing 2.05 alpha #36

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. opening the ControlP5 with PeasyCam example in Processing 2.05 alpha

What is the expected output? What do you see instead?
Expected: Sharp buttons, instead blurry Buttons

What version of the product are you using? On what operating system?
Processing 2.05 alpha on Mac OSX 10.7.3

Please provide any additional information below.

Original issue reported on code.google.com by konstant...@gmail.com on 2 Apr 2012 at 2:26

Attachments:

GoogleCodeExporter commented 8 years ago
Unfortunately this seems to be a Processing 2.05a rendering mistake, you can 
see the same behavior with the following test sketch. You might issue this 
behavior on processing's code page 
http://code.google.com/p/processing/issues/list

// faulty sharp edges with processing 2.05a P3D/OPENGL mode
// move mouse up and down to see the changing 
// behavior in sharpness of the white line which renders fine in the middle of 
the
// window but blurs towards the top and bottom of the window

void setup() {
  size(400,400,P3D);
}

void draw() {
  background(0);
  noStroke();
  fill(200);
  rect(10,mouseY,200,1);
}

Original comment by soj...@gmail.com on 9 Apr 2012 at 6:42

GoogleCodeExporter commented 8 years ago

Original comment by soj...@gmail.com on 23 Apr 2012 at 1:28

GoogleCodeExporter commented 8 years ago
Any ideas if this could work again with future Processing Updates?

Original comment by konstant...@gmail.com on 23 Apr 2012 at 7:01