Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Does setScale() round to highest, lowest or closest pixel?  (Read 3665 times)

0 Members and 1 Guest are viewing this topic.

xqbt

  • Newbie
  • *
  • Posts: 30
    • View Profile
Does setScale() round to highest, lowest or closest pixel?
« on: March 17, 2016, 12:40:45 pm »
I am working with a sprite and I need to set its width in pixels to desiredWidth:
float factor = desiredWidth / sprite.getLocalBounds().width;
sprite.setScale(factor, factor);
Internally, sprite's width should cancel out with itself, leaving desiredWidth behind. But this is a float value and sprite.getLocalBounds().width is integer, so how will desiredWidth be rounded?

To me, it would make sense to round it to the closest pixel in this particular case. But what happens when width * (desiredWidth / width) yields, say, 10.4?

PS I looked through the sources, but got confused.
« Last Edit: March 17, 2016, 12:44:21 pm by xqbt »

Hapax

  • Hero Member
  • *****
  • Posts: 3370
  • My number of posts is shown in hexadecimal.
    • View Profile
    • Links
Re: Does setScale() round to highest, lowest or closest pixel?
« Reply #1 on: March 17, 2016, 01:45:34 pm »
Positions/sizes etc. aren't in pixels; they are in co-ordinates, which are abstract measurements (see sf::View tutorial) that don't match pixels. It's only when they are rendered that each which pixel is used to display it is decided.

You point about desiredWidth being a float and localBounds' width being an integer means that the localBounds' width is "promoted" to float before the division so it's just one float divided by another.
Selba Ward -SFML drawables
Cheese Map -Drawable Layered Tile Map
Kairos -Timing Library
Grambol
 *Hapaxia Links*

xqbt

  • Newbie
  • *
  • Posts: 30
    • View Profile
Re: Does setScale() round to highest, lowest or closest pixel?
« Reply #2 on: March 17, 2016, 02:49:10 pm »
It's only when they are rendered that each which pixel is used to display it is decided.
That's what I wanted to ask, how will it be decided when it is rendered?

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Re: Does setScale() round to highest, lowest or closest pixel?
« Reply #3 on: March 17, 2016, 05:22:22 pm »
It's not the job of SFML, how texels map to pixels is described by the rasterization rules of OpenGL. But honestly, I don't think you need to know these rules. What's your problem exactly?
Laurent Gomila - SFML developer

xqbt

  • Newbie
  • *
  • Posts: 30
    • View Profile
Re: Does setScale() round to highest, lowest or closest pixel?
« Reply #4 on: March 17, 2016, 08:09:01 pm »
Hello!
Well, here is my concern. After executing this:
int desired width = 10;
float factor = desiredWidth / sprite.getLocalBounds().width;
sprite.setScale(factor, factor);
I just want to be sure that
sprite.getLocalBounds().width
will now be exactly equal to desiredWidth.

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Re: Does setScale() round to highest, lowest or closest pixel?
« Reply #5 on: March 17, 2016, 09:13:25 pm »
Of course it is. Why do you think it could be different? Did you have any problem?
Laurent Gomila - SFML developer

xqbt

  • Newbie
  • *
  • Posts: 30
    • View Profile
Re: Does setScale() round to highest, lowest or closest pixel?
« Reply #6 on: March 17, 2016, 10:37:02 pm »
Of course it is. Why do you think it could be different? Did you have any problem?
OK, cool! Well, I did not have any problems, but here is the thought which troubled me. Suppose we take a factor that is, say, not very nice - say PI. Then, I suppose, somewhere internally, sprite width is multiplied by PI, yielding another float. Now, this float needs to be integer (since it shows amount of pixels). Would not it make sense to ceil this float value?
If we multiply not by PI, but by desiredWidth/spriteWidth instead, we will get a float which is very close to, but not exactly (since it is a float), desired width. It might be a liitle low or a little high. Well, if we use ceil and it is a little high, we get one pixel more than needed.
But apparently rounding is used, but that was the source of my confusion.

Hapax

  • Hero Member
  • *****
  • Posts: 3370
  • My number of posts is shown in hexadecimal.
    • View Profile
    • Links
Re: Does setScale() round to highest, lowest or closest pixel?
« Reply #7 on: March 18, 2016, 01:33:11 am »
I suppose, somewhere internally, sprite width is multiplied by PI, yielding another float.
Right.

Now, this float needs to be integer (since it shows amount of pixels).
Not actually true. The float "width" is given directly to OpenGL and it decides how many pixels it wants to use depending on its current state (e.g. its view).

But apparently rounding is used, but that was the source of my confusion.
It's actually not. At least not until it's rasterized by OpenGL. At that point, it decides on how the pixels look, which also takes into consideration anti-aliasing so that a width of 10.5 would be 10 pixels and a semi-transparent pixel.
If anti-aliasing is turned off, it will be rounding somewhat inside OpenGL, yes.
Selba Ward -SFML drawables
Cheese Map -Drawable Layered Tile Map
Kairos -Timing Library
Grambol
 *Hapaxia Links*

xqbt

  • Newbie
  • *
  • Posts: 30
    • View Profile
Re: Does setScale() round to highest, lowest or closest pixel?
« Reply #8 on: March 18, 2016, 06:17:42 pm »
Hapax, thank you for the explanation!
The float "width" is given directly to OpenGL and it decides how many pixels it wants to use depending on its current state (e.g. its view)
But does OpenGL decide what will be in sprite.getLocalBounds().width?

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Re: Does setScale() round to highest, lowest or closest pixel?
« Reply #9 on: March 18, 2016, 06:41:44 pm »
Quote
But does OpenGL decide what will be in sprite.getLocalBounds().width?
No, sprite.getLocalBounds().width simply returns sprite.getTextureRect().width (don't hesitate to look at the source code). And the texture rect is set by you, so you have everything under control.
Laurent Gomila - SFML developer

xqbt

  • Newbie
  • *
  • Posts: 30
    • View Profile
Re: Does setScale() round to highest, lowest or closest pixel?
« Reply #10 on: March 19, 2016, 01:54:39 am »
Oh, dear, getGlobal/LocalBounds() actually return FloatRect! I was thinking IntRects  :P Now all is clear.
Thank you, Laurent and Hapax!

 

anything