- Turning off the depth test means that pixels will be drawn to in the order that they’re drawn instead of the order of depth.
- Draw a point with anti-aliasing/smoothing that’s red and has a requested width of 20
- Draw a point as above, but blue with a smaller width of 10
Because #3 was issued after #2 and we turned off depth testing in #1, the blue point is drawn on top of the red point. There is an implementation-specific maximum point width, so if 10 is the max then the red point will actually only be drawn with a width of 10. This means that all of the blue pixels fall completely on top of the red pixels so you only see the blue point.
So it can be expected, but depending on the computer it may not always be the same (for example the max width might be 5 somewhere).
Also, this is off the top of my head, so if this is for homework, use at your own risk and try to verify the results first.