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.


Topics - Juanxo

Pages: [1]
1
Graphics / Error when compiling sfml-graphics
« on: August 24, 2010, 09:02:26 pm »
Hi:

First, congrats to switch to cmake.
I'm trying to build sfml with cmake, and I'm getting errors when building Graphics subsystem

Code: [Select]

1>------ Build started: Project: sfml-graphics, Configuration: Debug Win32 ------
1>  ImageLoader.cpp
1>..\..\..\..\src\SFML\Graphics\ImageLoader.cpp(35): fatal error C1083: Cannot open include file: 'png.h': No such file or directory


I'm using vs2010 and Win7.

Am i doing something wrong, or it's a bug?

Thx

Edit: I forgot to post in Graphics subforum. Sorry

2
Window / Problem with anonymous enum in WindowStyle (Ubuntu)
« on: June 20, 2010, 09:37:35 am »
hey all:

first sorry if this bug has been already reported.

while i was compiling one project with sfml 1.6, i get an error about some constant value in WindowStyle.hpp.

Searching the web, i have found this link that complains about the same situation: gamedev

Some quick fix to repair it?

3
Window / Access violation creating the window
« on: May 06, 2010, 02:18:51 am »
Hi all:

I'm doing some tests with SFML, and i have an error:

Unhandled exception at 0x7549f7cc in Mesh_Transformd.exe: 0xC0000005: Access violation reading location 0xcccc004f.

the app is this:

Code: [Select]

#include <SFML/Window.hpp>
#include <SFML/System.hpp>
#include <SFML/Graphics.hpp>

int main(int argc, char** argv)
{
sf::Window window(sf::VideoMode(800,600), "HELLO");
return 0;
}


It happens only in the debug build.

PS: Im using SFML 1.6 and VS 2010 Pro

Pages: [1]