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

Pages: [1]
1
Feature requests / Re: Add Compute Shaders Support
« on: July 16, 2016, 05:25:43 pm »
There is a high chance that i'll do a modified version of sf::Shader, because i love SFML and all of its resources/content, it will probably take time because actually i'm developing a big project (game) but i will probably try to use Compute Shaders in it, it will be a 2D game but i love algorithmic complexity so i will try to implement a nice procedural map generation, with chunks loading system etc, and to fast up things i want to use Compute Shaders(i know this is totally overkilled but anyway i will use these concepts in future projects).
My Game won't be open source (even if it is made of open-source only libraries and projects) but i will post to libraries authors all of my modifications if i do so.

Forgive my mistakes, i am french.

2
Feature requests / Add Compute Shaders Support
« on: July 15, 2016, 11:27:06 pm »
Hi there, i think it would be great to implement Compute Shaders, which come from OpenGL 4.0 Shading Language i guess, because it's a feature which is clearly something very interesting/powerful, it adds a GPGPU Computing feature to OpenGL Shaders, and this is more easy-to-use than CUDA or OpenCL Libraries and moreover includes graphics object access.
I have seen the recent geometry shader support for sfml, and i think it would be nice to implement the Compute Shaders too.


3
SFML projects / Re: Let There Be Light 2
« on: July 13, 2016, 01:41:51 pm »
Hey ! you have done a really great job, i want to use it in my game engine but when compiling in VS2015 i got weird errors
Debug Win32:


G:\Projets\Node\Repository\external\LTBL2-master\LTBL2\source\ltbl\quadtree\QuadtreeOccupant.cpp(15): error C2248: 'ltbl::Quadtree::_outsideRoot' : impossible d'accéder à protected membre déclaré(e) dans la classe 'ltbl::Quadtree'

G:\Projets\Node\Repository\external\LTBL2-master\LTBL2\source\ltbl\quadtree\QuadtreeOccupant.cpp(25): error C2248: '
ltbl::Quadtree::_outsideRoot' : impossible d'accéder à protected membre déclaré(e) dans la classe 'ltbl::Quadtree'
 

this lines say "impossible to reach protected member in class ltbl::QuadTree" from QuadtreeOccupant.cpp(15 and 25)

EDIT: Solved but i had to edit l 54 of Quadtree.h and add "friend class QuadtreeOccupant;"
Anyway great work keep on !

Pages: [1]