Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: PostFX problems  (Read 3606 times)

0 Members and 1 Guest are viewing this topic.

Xyro

  • Jr. Member
  • **
  • Posts: 52
    • View Profile
PostFX problems
« on: April 16, 2011, 08:28:14 pm »
I am trying to use postfx, for some reason I am getting a weird error even when trying to use the effect that is provided in the original tutorial.

Setup
Windows 7 64 bit
Ati Radeon HD 4970x2

I made a screenshot displaying all the code and the error :


Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
PostFX problems
« Reply #1 on: April 16, 2011, 08:42:03 pm »
Which post-effect is it? The one provided in the tutorial doesn't contain any '<' character.
Laurent Gomila - SFML developer

Xyro

  • Jr. Member
  • **
  • Posts: 52
    • View Profile
PostFX problems
« Reply #2 on: April 16, 2011, 08:44:38 pm »
Its included on the right of the screenshot

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
PostFX problems
« Reply #3 on: April 16, 2011, 11:11:37 pm »
Sorry, it was completely out of my 4:3 19'' screen.

I don't know what's wrong. Have you tried the PostFx sample included in the SFML.Net SDK?
Laurent Gomila - SFML developer

Xyro

  • Jr. Member
  • **
  • Posts: 52
    • View Profile
PostFX problems
« Reply #4 on: April 17, 2011, 07:11:46 pm »
Euh, for some reason the sample uses things like Text instead of String2D and Shader instead of PostFx, am I looking at the wrong thing or did I do something wrong ?

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6286
  • Thor Developer
    • View Profile
    • Bromeon
PostFX problems
« Reply #5 on: April 17, 2011, 07:25:58 pm »
In SFML 2 the identifiers have changed.

But obviously you are using SFML 1.x, otherwise the code wouldn't even compile. How can you have SFML 2 samples in your SDK? Did you mess something up?
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

Xyro

  • Jr. Member
  • **
  • Posts: 52
    • View Profile
PostFX problems
« Reply #6 on: April 17, 2011, 07:46:20 pm »
Dunno I downloaded both but I thought I had been using 2.0. Seems I made a mistake, I'll add in the 2.0 binaries and update my code, hopefully that fixes my problem

Xyro

  • Jr. Member
  • **
  • Posts: 52
    • View Profile
PostFX problems
« Reply #7 on: April 18, 2011, 02:07:53 pm »
Ported over to 2.0 it seems to compile good now, now I am trying the most basic shader I can think of :

Code: [Select]

void main()
{
gl_FragColor = gl_Color;
}



Only this shows completely white instead of showing my scene, what am I doing wrong ?

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
PostFX problems
« Reply #8 on: April 18, 2011, 02:15:12 pm »
gl_Color is the global drawable color that you set with SetColor().

Look at GLSL tutorials, or at least to shaders examples provided in the SDK, to know how to display your scene (there's such a shader in the "shader" example).
Laurent Gomila - SFML developer

 

anything