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

Author Topic: texture.update() crash  (Read 3624 times)

0 Members and 1 Guest are viewing this topic.

Foaly

  • Sr. Member
  • ****
  • Posts: 453
    • View Profile
texture.update() crash
« on: January 23, 2013, 10:08:05 pm »
Hi there!
I am trying to fill a texture with some gray color. My very simple test code crashes... The code:
#include <SFML/Graphics.hpp>

int main()
{
    sf::RenderWindow window(sf::VideoMode(500, 500), "SFML works!");
    window.setFramerateLimit(60);

    sf::Uint8 pixelBuffer [250000];

    sf::Texture texture;
    texture.create(500, 500);


    while (window.isOpen())
    {
        sf::Event event;
        while (window.pollEvent(event))
        {
            if(event.type == sf::Event::Closed)
                window.close();

            if(event.type == sf::Event::KeyReleased && event.key.code == sf::Keyboard::Escape)
                window.close();

        }


        for(int i = 0; i < 249999; i++)
        {
            sf::Uint8 color = 128;
            pixelBuffer[i] = (color << 16) | (color << 8) | color;
        }
        texture.update(pixelBuffer, 500, 500, 0, 0);  //<---- crash happens here


        window.clear();
        window.draw(sf::Sprite(texture));
        window.display();
    }

    return 0;
}
 
I get a SIGSEGV fault. I haven't used the update() method of sf::Texture before, so I don't really know if I handle everything correct. Does somebody know what I'm doing wrong? I'm using the latest source with MinGW 4.7.2 on windows 7.
Thanks, Foaly

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10936
    • View Profile
    • development blog
    • Email
Re: texture.update() crash
« Reply #1 on: January 23, 2013, 10:19:13 pm »
What happens if you insert this, before calling update:

if(sf::Texture::getMaximumSize() < 250000/4)
    return -1;

Your GPU most probably doesn't support textures of size 6250px. ;)

The question is, if there should be an assert at least in debug mode, that checks for the value, rather than letting SFML crash...
Quote from: Documentation
No additional check is performed on the size of the pixel array or the bounds of the area to update, passing invalid arguments will lead to an undefined behaviour.

Then again maybe it's just your false calucaltions, because one pixel consists of 4 sf::Uint8 (R G B A), so you for a 500x500px = 25000px image you'll need a array of 4x500x500 = 1000000 uint8.

« Last Edit: January 23, 2013, 10:27:54 pm by eXpl0it3r »
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

Foaly

  • Sr. Member
  • ****
  • Posts: 453
    • View Profile
Re: texture.update() crash
« Reply #2 on: January 23, 2013, 10:25:34 pm »
If I insert your code the program returns -1 of course. But I'm not trying to make a texture of size 6250px. I want a 500x500 texture. I guess I mixed up some math... What did I do wrong though?

The question is, if there should be an assert at least in debug mode, that checks for the value, rather than letting SFML crash...
I'd say so! (for debug that is)

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10936
    • View Profile
    • development blog
    • Email
Re: texture.update() crash
« Reply #3 on: January 23, 2013, 10:28:22 pm »
See above (was too fast and then too slow)... ;D
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

Foaly

  • Sr. Member
  • ****
  • Posts: 453
    • View Profile
Re: texture.update() crash
« Reply #4 on: January 23, 2013, 10:33:35 pm »
Haha awesome thanks! That was it! Makes total sense now that you explain it. Thank you very much.

I know the doc says, that passing invalid arguments results in undefined behaviour, but I think it would be a good idea to add an assert in debug mode.

Foaly

  • Sr. Member
  • ****
  • Posts: 453
    • View Profile
Re: texture.update() crash
« Reply #5 on: January 24, 2013, 11:08:03 am »
After reading your explanation and the doc again I'm still a little bit confused. The "pixel" array doesn't actually contain pixels, does it? It contains the pixel components in uint8 in the order RGBA for each pixel, right? If that's the case then I think the parameter should be renamed to pixelComponents or something like that. Also the (otherwise awesome) doc should make this a bit clearer. Right now it's says: "it must contain 32-bits RGBA pixels" maybe it could say something like: "it must contain an array of pixel components of sf::uint8. Four components per pixel in the order RGBA." I think this would clear things up :)

edit: also does this mean that I should fill the array like this, if I want a medium gray texture?
for(int i = 0; i < 249999; i += 4)
{
    sf::Uint8 color = 128;
    pixelBuffer[i] = color;     // r
    pixelBuffer[i +1] = color;  // g
    pixelBuffer[i + 2] = color; // b
    pixelBuffer[i + 3] = 255;   // a
}
texture.update(pixelBuffer, 500, 500, 0, 0);
« Last Edit: January 24, 2013, 11:23:30 am by Foaly »

Foaly

  • Sr. Member
  • ****
  • Posts: 453
    • View Profile
Re: texture.update() crash
« Reply #6 on: January 31, 2013, 05:30:14 pm »
Where my assumptions right? Also am I the only one who is confused by the documentation of this method?

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10936
    • View Profile
    • development blog
    • Email
Re: texture.update() crash
« Reply #7 on: January 31, 2013, 05:36:47 pm »
it must contain 32-bits RGBA pixels
Which already implies that you need 4*8 bits = 4*sf::Uint8, it's clear enough imho. ;)

edit: also does this mean that I should fill the array like this, if I want a medium gray texture?
Should be correct. Also you could've just tested it... ;)
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6286
  • Thor Developer
    • View Profile
    • Bromeon
Re: texture.update() crash
« Reply #8 on: January 31, 2013, 06:13:15 pm »
The "pixel" array doesn't actually contain pixels, does it? It contains the pixel components in uint8 in the order RGBA for each pixel, right?
What is a pixel, if not an RGBA value?
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

Foaly

  • Sr. Member
  • ****
  • Posts: 453
    • View Profile
Re: texture.update() crash
« Reply #9 on: February 04, 2013, 08:09:38 pm »
Alright well i guess I just got it wrong then... If it's clear to eveybody else then it's fine.
I did test the code, but i got some wierd vertical lines. I can't find it anymore though, so i can't post it.

 

anything