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

Pages: [1] 2
1
General discussions / Re: Giving back
« on: March 31, 2015, 03:43:28 pm »
Thanks for all the feedback.  I'll be back in touch next week.

Robert

2
General discussions / Re: Giving back
« on: March 27, 2015, 02:04:28 pm »
Thank you for the replies.

Binary, could you tell me more (or connect me to the right people) to discuss concrete details of your last suggestions (the CI infrastructure).

Thanks,
Robert

3
General discussions / Giving back
« on: March 26, 2015, 03:54:37 pm »
Greetings,

  I work for a company that uses SFML and several of it's libraries every day.  Yesterday the topic of how to give back came up in a meeting.  I would like to hear from the core members on how they think I might be able to support the project.  Giving code is probably not an option, our code is very specific to our use case and is probably no good to anyone else.  We would, however, be interested in giving back in some other way.  I would like to know what the project could use and how my company can help.

Thanks.

4
SFML specific spritesheet tutorial from Laurent:  https://github.com/SFML/SFML/wiki/Source:-Sprite-Sheets

SFML specific time based movement discussion: http://stackoverflow.com/questions/18306101/movement-without-framerate-limit-c-sfml

I would urge you to do a basic google search on these topics before posting here.  This community is very helpful, but failing to do even a cursory look for answers on your own won't get you very far.  Good luck!

5
Graphics / Re: How to use this blur shader?
« on: December 17, 2014, 11:02:02 pm »
I urge you to make a minimum viable example so that people can see what your doing.

6
Graphics / Re: Alpha artifacts
« on: November 11, 2014, 03:13:45 pm »
You could try to enable the window's anti-aliasing to affect the whole rendered screen, not just a transformed texture.

Are you talking about openGL multisampling?  If so, I am currently using multisampling with a value of 4 when the context is created.

7
Graphics / Re: Alpha artifacts
« on: November 10, 2014, 05:18:24 pm »
Laurent,

Thanks for the reply.  I am using

Code: [Select]
glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA)

in my draw call for debugging and it gives even greater issues





This was rendered with mipmaps set to GL_LINEAR (which I believe SFML does with texture smoothing).  I 'm thinking this is not a pre-multiplied alpha issue, but I'm really not sure what to check next.


Here is the text graphic that is being rendered on top of the other images if your interested:



8
Graphics / Alpha artifacts
« on: November 10, 2014, 03:52:20 pm »
Hey guys,

  I was experimenting with implementing a runtime in SFML for GrapeFrukt exported animations (https://github.com/grapefrukt/grapefrukt-export).  But I have run into a bit of an issue I feel ill equipped to tackle.  In my first run, I noticed that all the animations were extremely pixelated when transformed (scaled, rotated, etc..), so I turned on texture smoothing.

This fixed a lot of my aliasing issues, but introduced a bunch of alpha artifacts around the text that has a drop shadow.  
It looks like a pre-multiplied alpha issue, but I'm not sure how to fix it in SFML (I'm using the .NET bindings).  I did a search for "pre-multiplied" and came up with very little.  I'm fairly certain this could be address with the new BlendMode stuff in the SFML repo, but documentation on how to use it is a bit scarce at the moment.

Thanks,
Rob

9
C / Re: CSFML cmake broken?
« on: September 25, 2014, 05:59:02 pm »
My issue was solved (Thanks to Tank) by running the install target with SFML, clearing the CMake cache for the CSFML project, manually setting the SFML_ROOT var to the newly installed directory, and running configure again.

10
C / Re: CSFML cmake broken?
« on: September 25, 2014, 05:03:17 pm »
I am compiling the latest source from github for all 3 projects (SFML, CSFML, and the .NET bindings).  CSFML never makes it past the 'configure' step with CMake.

11
C / Re: CSFML cmake broken?
« on: September 25, 2014, 04:48:04 pm »
Has this issue been resolved yet?  I've been trying to configure CSFML with CMake on Windows for a the past half hour and it never seems to find the SFML libs it is interested in.  I have to manually tell it where to find the SFML dependencies (glew, freetype, etc...) and even after that it blows up with:

CMake Error at C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/FindSFML.cmake:344 (message):
  Could NOT find SFML (missing: SFML_SYSTEM_LIBRARY SFML_WINDOW_LIBRARY
  SFML_NETWORK_LIBRARY SFML_GRAPHICS_LIBRARY SFML_AUDIO_LIBRARY)
Call Stack (most recent call first):
  src/SFML/CMakeLists.txt:26 (find_package)
 

12
DotNet / Re: SFML.NET Proposed Changes
« on: April 23, 2014, 12:41:07 am »
Most of these getter-to-property conversions sound reasonable.  I am currently using the NetEXT timer classes for everything I need, so no protest against them.  The biggest thing in the list for me was the inclusion of OpenTK.  Great list Zachariah!

-Robert

13
SFML projects / Re: VideoStreamer - .NET Video Player
« on: February 15, 2014, 02:23:07 am »
Ah, terribly sorry.  If I had known I wouldn't have posted   :-[

14
SFML projects / Re: VideoStreamer - .NET Video Player
« on: February 13, 2014, 01:08:41 am »
Thanks!  I pulled the changes and they worked perfectly.  I used your new documentation to build it as well!

Edit: link to build docs: http://zbrown.net/projects/videostreamer/tutorials/build.php

Robert

15
SFML projects / Re: VideoStreamer - .NET Video Player
« on: February 11, 2014, 10:17:09 pm »
Update:  If I start play back and then give the thread a brief sleep it does not flash black.  These feels like a hack tho.  What are your thoughts?

Pages: [1] 2
anything