Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 302 results for
sfml
- Page 1
SFML C++ opening window error
Programming
Software Development
12 Years Ago
by Dev93
…follows : #include <iostream> #include <
SFML
/Window.hpp> int main() { // Create the main…Window App(sf::VideoMode(800, 600, 32), "
SFML
Window"); // Start main loop bool Running = true… _main 1>F:\Visual Studio Projects\
sfml
-test\Debug\
sfml
-test.exe : fatal error LNK1120: 4…
Re: SFML simple collision help
Programming
Software Development
13 Years Ago
by m4ster_r0shi
…App(sf::VideoMode(800, 600, 32), "My
SFML
Window"); sf::RenderWindow Warning(sf::VideoMode(400, … to check this out: [CODE]#include <
SFML
/Graphics.hpp> #include <iostream>…sf::RenderWindow window(sf::VideoMode(SCREEN_WIDTH,SCREEN_HEIGHT,32),"
SFML
"); sf::Event event; window.UseVerticalSync(true); …
SFML 1.6 (VC++ Debug & Release) Errors
Programming
Software Development
14 Years Ago
by Dark Byte
… am using VC++ 2010 and I am trying to use
SFML
1.6. I am trying to create a simple window… triggered a breakpoint I have linked all required libraries (
sfml
-system.lib,
sfml
-window.lib) Here is my code [code=C++] #include… <
SFML
/Window.hpp> int main(int argc, char* argv[]) { sf::…
SFML simple collision help
Programming
Software Development
13 Years Ago
by dubez001
… with a program I just did up. I downloaded
sfml
about an hour ago, and I have a cube …of tinkering with it. [ICODE]#include <
SFML
/Graphics.hpp> #include <
SFML
/Window.hpp> #include <iostream>…{ sf::RenderWindow App(sf::VideoMode(800, 600, 32), "My
SFML
Window"); sf::RenderWindow Warning(sf::VideoMode(400, 225, 32…
SFML problem
Programming
Software Development
13 Years Ago
by nuclear
…RenderWindow I get an: Unhandled exception at 0x76adfeb8 in
SFML
+ Box2D Project.exe: 0xC0000005: Access violation reading…0xcccccccc. Code I'm using: [CODE]#include <
SFML
/Graphics.hpp> int main() { sf::RenderWindow App…\Deividas\Documents\Visual Studio 2008\Projects\Project1\
SFML
+ Box2D project\Debug\
SFML
+ Box2D project.exe not found or…
Re: SFML C++ and Visual studio help..
Programming
Software Development
12 Years Ago
by Bob
…? Because it's in the SF namespace and part of
SFML
, if you want to know more about Clock, you should… check out the
SFML
documentation. > Q4. what does the 'f' represents in sleep… of your questions above relate to standard C++, some are
SFML
-specific. It'd be worth familiarising yourself with the…
Sfml problem
Programming
Software Development
12 Years Ago
by Bumpehh
… window sf::Window App(sf::VideoMode(800, 600, 32), "
SFML
Window"); // Start main loop bool Running = true; while …(Running) { App.Display(); } return EXIT_SUCCESS; } Ive setup
sfml
with codeblocks correctly i believe, and i put all of…
Re: Sfml problem
Programming
Software Development
12 Years Ago
by m4ster_r0shi
…, I just noticed that the
SFML
instructions link I posted is for
SFML
1.2. The ones for
SFML
1.6 are [here…](http://www.
sfml
-dev.org/tutorials/1…
SFML Help with timing
Programming
Software Development
12 Years Ago
by Haxifix
…wrote this snake game in C++ using
SFML
2.0 RC and everything was working …problem it would be much appreciated :) #include <
SFML
/Graphics.hpp> #include <iostream> #include…window(sf::VideoMode(WIDTH * SCALE, HEIGHT * SCALE), "
SFML
Snake"); //window.setFramerateLimit(60); Snake* snake = new…
SFML C++ and Visual studio help..
Programming
Software Development
12 Years Ago
by Dev93
I have just started getting into
SFML
and Visual studio as well . I have always… first code that I have come across while getting into
SFML
. Here is the program.. #include<iostream> …#include<
SFML
\System.hpp> int main() { sf::Clock Clock; …
Re: Sfml problem
Programming
Software Development
12 Years Ago
by Bumpehh
… //////////////////////////////////////////////////////////// // Headers //////////////////////////////////////////////////////////// #include <
SFML
/Window.hpp> //////////////////////////////////////////////////////////// /// Entry point…(800, 600, 32), "
SFML
Window"); } this is what…
Re: Sfml problem
Programming
Software Development
12 Years Ago
by np complete
Have you checked this [page](http://www.
sfml
-dev.org/tutorials/1.6/start-cb.php) on how to install it on code Blocks ?
Re: Sfml problem
Programming
Software Development
12 Years Ago
by np complete
Try compiling the code upto ` sf::Window App(sf::VideoMode(800, 600, 32), "
SFML
Window"); `. See if it works or not.
Re: SFML C++ and Visual studio help..
Programming
Software Development
12 Years Ago
by myk45
> I have just started getting into
SFML
and Visual studio as well Good. TC is quite old. …
Re: SFML C++ threads help..
Programming
Software Development
12 Years Ago
by Bob
What output are you seeing? I don't use
SFML
, so maybe there's someone better qualified to support you …here (or on an
SFML
-related site). But it looks to me as though you…
SFML or SDL
Programming
Game Development
15 Years Ago
by Silvershaft
Hey! I've been looking into game development recently and decided to start learning, I have good base on C++ so language isn't problem. I came across these 2 libraries,
SFML
and SDL, they break opinions so I would like to hear which you guys suggest! Thanks
Re: SFML or SDL
Programming
Game Development
15 Years Ago
by mrnutty
I think there might be more support for SDL than
SFML
in the internet. Maybe pick one based the support it has online. So you get more documents and tutorials for your benefit.
Re: SFML or SDL
Programming
Game Development
15 Years Ago
by dwks
I have never used
SFML
, so I can't say anything about that. But I …
SFML SetCenter Problems
Programming
Game Development
14 Years Ago
by myrk
Hello, I'm currently working on a simple
SFML
game using its 2D library. Here's the part of …
Re: SFML SetCenter Problems
Programming
Game Development
14 Years Ago
by chrjs
I don't know much about
SFML
, but if you are changing the center (I am guessing thats the same thing as an origin), it is essentially changing location of where the square is draw relative to it's position. You should try repositioning the square relative to the new center.
SFML C++ threads help..
Programming
Software Development
12 Years Ago
by Dev93
… would also be appreciated . #include<iostream> #include<
SFML
\System.hpp> void apple_thread(void *data) { using namespace std…
SFML Pros vs Cons
Programming
Software Development
10 Years Ago
by Tycellent
So i've decided to use
SFML
and i'm just trying to figure out its advantages and disadvantages...I've looked around and this is what i've got so far. Advantages: * Cross Platform * OO Design * Simple and fast (subjective) Disadvantages: * Quite new Any additional thoughts will again appreciated
Re: SFML Pros vs Cons
Programming
Software Development
10 Years Ago
by rubberman
Do you mean the Simple and Fast Multimedia Library (
SFML
)? First I've heard of it, but the best way …
Re: SFML Pros vs Cons
Programming
Software Development
10 Years Ago
by Sarkurd
The only disadvantage of
SFML
is not targeted iOS and Android yet.
Re: [SFML C++ 2D] spawn falling rocks at random times
Programming
Game Development
10 Years Ago
by HuePig
thanks for the advise. I just figured that
SFML
have a clock. I used that clock insted.. heres the pseudo code: time = clock.getelapsedtime(); if(time >= 500) //millisecond { //spawn rocks //restart clock }
Problem in SFML Project
Programming
Software Development
11 Years Ago
by omarking05
…countered a small problem ,here is my code : #include <
SFML
/Graphics.hpp> #include <string> #include <…Window; Window.create(sf::VideoMode(490, 485),"My First
Sfml
Game"); sf::Texture pTexture1; sf::Sprite playerImage; if(!…
SDL, SFML, ClanLib or Allegro
Programming
Software Development
14 Years Ago
by looorin
… libraries, which can create games and GUI aplications (SDL, ClanLib,
SFML
, Allegro). I would like to learn one of them, but…. And I don't know much about a ClanLib and
SFML
. Can you give me some advice about this? Which library…
Removing Console Window with SFML
Programming
Software Development
13 Years Ago
by Chuckleluck
…'m learning to use the Simple, Fast, Multimedia Library (or
SFML
), and I was going through the tutorials on their website…. The first one (found [URL="http://www.
sfml
-dev.org/tutorials/1.6/window-window.php"]here…
Re: Removing Console Window with SFML
Programming
Software Development
13 Years Ago
by thines01
How will the program be started (command-line, Windows or
SFML
instance)? I woud imagine, if you need the
SFML
Main, that one HAS to be the only main.
Is SFML good for C++ newbies?
Programming
Game Development
3 Years Ago
by LeafBulba
I am just learning C++. I haven't made any games with
SFML
or anything like that. Just wondering whether
SFML
would be easy for a newbie like me. I am planning on using it after I finish learncpp.com. I am currently at the header guards section right now. Also, what do you... <DANIWEB>-users think of learncpp?
1
2
3
6
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC