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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Prado

Pages: [1]
1
And if something goes wrong, is it reversible?

3
Because those are the only ones I can find on the net.

4
Graphics card:

          Card name: Mobile Intel(R) 945 Express Chipset Family
       Manufacturer: Intel Corporation
          Chip type: Intel(R) GMA 950
           DAC type: Internal
         Device Key: Enum\PCI\VEN_8086&DEV_27A2&SUBSYS_30AA103C&REV_03
     Display Memory: 256 MB
   Dedicated Memory: 0 MB
      Shared Memory: 256 MB
       Current Mode: 1024 x 768 (32 bit) (60Hz)
       Monitor Name: Monitor GenĂ©rico PnP
      Monitor Model: unknown
         Monitor Id: QDS0025
        Native Mode: 1024 x 768(p) (60.004Hz)
        Output Type: Internal
        Driver Name: igdumd32.dll
Driver File Version: 8.14.0010.1930 (English)
     Driver Version: 8.15.10.1930
        DDI Version: 9Ex
       Driver Model: WDDM 1.0
  Driver Attributes: Final Retail
   Driver Date/Size: 9/23/2009 18:18:08, 3829760 bytes
        WHQL Logo'd: n/a
    WHQL Date Stamp: n/a
  Device Identifier: {D7B78E66-64E2-11CF-0674-A010A2C2C535}
          Vendor ID: 0x8086
          Device ID: 0x27A2
          SubSys ID: 0x30AA103C
        Revision ID: 0x0003

here's a screenshot:

http://i.imgur.com/f81Q6EP.png

5
Processor: Intel(R) Core(TM)2 CPU      T5500 @1.66 GHz 1.67 GHz

RAM memory: 2 GB

OS: Windows 7 Professional 32 bits

Console output? There's no console window

6
I installed SFML in my CodeBlocks, following all instructions from here:

http://www.sfml-dev.org/tutorials/2.2/start-cb.php

This code should display a window with a green circle(I'm using dinamic library, and I put all necessary dll in the exe folder)

#include <SFML/Graphics.hpp>

int main()
{
    sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
    sf::CircleShape shape(100.f);
    shape.setFillColor(sf::Color::Green);

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

        window.clear();
        window.draw(shape);
        window.display();
    }

    return 0;
}

But what I get is a transparent window, without the circle. What is wrong?

I hope that it isn't my computer that can't run OpenGl

Pages: [1]
anything