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 - przemo_li

Pages: [1]
1
General discussions / SFML 2 Release?
« on: November 05, 2011, 02:50:09 pm »
I've seen some changes on SDL 1.3 page.

I hope SFML will be ready before next SDL release!

2
General discussions / SFML 2 ready for production?
« on: August 08, 2011, 10:49:38 am »
So if I want SFML to handle everything else than graphic (where OpenGL will do its job) than 2.0 is ready for the task?

3
General discussions / OpenGL
« on: July 16, 2011, 04:50:39 pm »
http://stackoverflow.com/questions/3439229/opengl-4-x-learning-resources/

Here are posted resources for learning "modern" OpenGL.

Usually, next OpenGL bring just new stuff, but since OpenGL 3.2 there is "core" profile that removes much old stuff.

SuperBible is best source. (however i do not like it) and
openglbook.com is also good!

4
General discussions / SFML 2 ready for production?
« on: July 16, 2011, 04:44:32 pm »
How much more work is there left (till API freeze)?

5
Window / OpenGL 2 context?
« on: August 27, 2010, 09:45:45 am »
Sorry. It was late.

"Te same komendy, działają dla tutoriala o OpenGL. Co jest nie tak? (ati 5740, OGL 4.0 compatibility profile, catalyst 10.7)"

Translate as:

This build commands work fine for OGL tutorial. What is wrong? (ati 5740, OGL 4.0 compatibility profile, catalyst 10.7)

6
Window / OpenGL 2 context?
« on: August 26, 2010, 07:51:03 pm »
Code: [Select]
#include <SFML/OpenGL.hpp>
#include <SFML/Window.hpp>

int main()
{
    sf::ContextSettings settings;
    settings.MajorVersion = 2;
    settings.MinorVersion = 0;

    sf::Window window(sf::VideoMode(800, 600), "SFML test", sf::Style::Default, settings);

    const GLubyte* version = glGetString(GL_VERSION);
    return 0;
}


Code: [Select]
przemoli@przemoli-laptop:~/Programowanie/OGLProjekt$ g++ -c ogl_version.cpp -I/home/przemoli/Programowanie/sfml2/include
przemoli@przemoli-laptop:~/Programowanie/OGLProjekt$ g++ -o ogl_version ogl_version.o -lsfml2-window -lsfml2-system -lGLU -L/home/przemoli/Programowanie/sfml2/lib/
przemoli@przemoli-laptop:~/Programowanie/OGLProjekt$ /lib/ld-linux.so.2 --library-path /home/przemoli/Programowanie/sfml2/lib/ ./ogl_version
XIO:  fatal IO error 11 (Resource temporarily unavailable) on X server "� Ъ�
"
      after 115 requests (114 known processed) with 0 events remaining.


Te same komendy, działają dla tutoriala o OpenGL. Co jest nie tak? (ati 5740, OGL 4.0 compatibility profile, catalyst 10.7)

Pages: [1]