Author Topic: [MAGNIFICATION] Magnification by LittleWhite  (Read 4944 times)

0 Members and 1 Guest are viewing this topic.

Offline LittleWhite

  • Senior Member
  • Amiga 1200
  • ********
  • Posts: 418
  • Karma: 31
  • It's me!
    • View Profile
Hello,

Here a little other contribution...

Just because we can do two entries for this competition and this effect is an accident :p

Enjoy,

[EDIT] Here you can download a video: http://www.sendspace.com/file/lvhbsm (~130Mo sorry :s)
Please remember that the video is not really good and vitiate the quality of the animation[/EDIT]

[EDIT2]: 6 Sep 2009: Attachment fixed, with a little surprise, there are the sources ;) [/EDIT]
« Last Edit: September 06, 2009 by LittleWhite »
The demoscene will never die, never!

Offline Shockwave

  • good/evil
  • Founder Member
  • DBF Aficionado
  • ********
  • Posts: 17393
  • Karma: 498
  • evil/good
    • View Profile
    • My Homepage
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #1 on: July 25, 2009 »
Thanks Littlewhite, I cant see the effect here though because its running at far less than 1fps, the screen looks interesting though, what does it do? :)
Shockwave ^ Codigos
Challenge Trophies Won:

Offline LittleWhite

  • Senior Member
  • Amiga 1200
  • ********
  • Posts: 418
  • Karma: 31
  • It's me!
    • View Profile
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #2 on: July 25, 2009 »
1 FPS ... argh...

I have to learn to code ...

In fact, It's one ball at the center ( grey ball ) + 3 balls ( one red ; one blue ; one green ) that grows the picture of the grey. ( At least we can resume like this )
If you give me a good way to record a vid, I can show you ( I prefer a way for Linux, but I can also do this on windows )
The demoscene will never die, never!

Offline Shockwave

  • good/evil
  • Founder Member
  • DBF Aficionado
  • ********
  • Posts: 17393
  • Karma: 498
  • evil/good
    • View Profile
    • My Homepage
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #3 on: July 25, 2009 »
Here's a good program to make video captures mate.

http://www.farb-rausch.de/~fg/kkapture/
Shockwave ^ Codigos
Challenge Trophies Won:

Offline LittleWhite

  • Senior Member
  • Amiga 1200
  • ********
  • Posts: 418
  • Karma: 31
  • It's me!
    • View Profile
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #4 on: July 25, 2009 »
I will test and if possible send the video ... but I was thinking that kkapture was working only with DirectX ...
I was certainly wrong
The demoscene will never die, never!

Offline LittleWhite

  • Senior Member
  • Amiga 1200
  • ********
  • Posts: 418
  • Karma: 31
  • It's me!
    • View Profile
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #5 on: July 25, 2009 »
Video uploaded ... ( see first post )

( Not captured with kkapture ( seems to doesn't work ... ) )

I will investigate about the problem of the non recognised shader language. Sorry for Shockwave, it seems that you have not this problem :s.
The demoscene will never die, never!

Offline Rbz

  • Founder Member
  • DBF Aficionado
  • ********
  • Posts: 2748
  • Karma: 492
    • View Profile
    • http://www.rbraz.com/
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #6 on: July 25, 2009 »
Works for me  :), I like this one
Challenge Trophies Won:

Offline LittleWhite

  • Senior Member
  • Amiga 1200
  • ********
  • Posts: 418
  • Karma: 31
  • It's me!
    • View Profile
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #7 on: July 26, 2009 »
I have a question, to you coders ;)

What I have supposed to do, when these three test doesn't work:

Code: [Select]
if ( !glewIsSupported("GL_ARB_shading_language_100") )
Code: [Select]
if ( GLEW_VERSION_2_0 )
Code: [Select]
if (GLEW_ARB_vertex_shader && GLEW_ARB_fragment_shader)
I have test also with the ARB implementation ... but still doesn't work ...

What is the best way to implement the OpenGL shaders?
The demoscene will never die, never!

Offline ferris

  • Pentium
  • *****
  • Posts: 841
  • Karma: 84
    • View Profile
    • Youth Uprising Home
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #8 on: July 26, 2009 »
 :clap: - for the most creatively titled entry yet :D hehe.

Really though, this was great :) Smooth and fast here!

..BTW - best way to implement GLSL - Don't use GLEW ;)
http://iamferris.com/
http://youth-uprising.com/

Where the fun's at.
Challenge Trophies Won:

Offline LittleWhite

  • Senior Member
  • Amiga 1200
  • ********
  • Posts: 418
  • Karma: 31
  • It's me!
    • View Profile
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #9 on: July 26, 2009 »
Where can  I get a good tutorial to implement the GLSL without GLEW (in fact a have an implementation with OpenGL2.0 and just glew to check if OpenGL2.0 is on the machine... )
The demoscene will never die, never!

Offline TinDragon

  • Pentium
  • *****
  • Posts: 644
  • Karma: 24
    • View Profile
    • J2K's blog
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #10 on: July 26, 2009 »
I dont have a link to a tutorial but I can tell you that if you dont use glew or glee then you can get access to the opengl extensions using wglGetProcAddress(char* functionName) but you have to make calls somewhere at the start of your program to all the extensions you wish to use, I believe there is an example with source linked in the c/c++ area to do with 4k intros that someone posted which has the basic calls for using shaders.

I dont know what lang. you code in so not sure what options you have available but unless exe size is really important you shouldnt really have any problems using glew, I use it in my bmax programs without problem.

Offline benny!

  • Senior Member
  • DBF Aficionado
  • ********
  • Posts: 4384
  • Karma: 228
  • in this place forever!
    • View Profile
    • bennyschuetz.com - mycroBlog
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #11 on: July 26, 2009 »
Interesting stuff. Nice entry!
[ mycroBLOG - POUET :: whatever keeps us longing - for another breath of air - is getting rare ]

Challenge Trophies Won:

Offline va!n

  • Pentium
  • *****
  • Posts: 1431
  • Karma: 109
    • View Profile
    • http://www.secretly.de
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #12 on: July 26, 2009 »
nice entry
- hp EliteBook 8540p, 4 GB RAM, Windows 8.1 x64
- Asus P5Q, Intel Q8200, 6 GB DDR2, Radeon 4870, Windows 8.1 x64
http://www.secretly.de
Challenge Trophies Won:

Offline Yaloopy

  • Death From Above
  • DBF Aficionado
  • ******
  • Posts: 2875
  • Karma: 35
    • View Profile
    • UltraPaste
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #13 on: July 27, 2009 »
Gonna have to download the video later, sorry, didn't get a chance today. K+ for supporting the competition with two enteries!
Fuck L. Ron Hubbard and fuck all his clones.
Challenge Trophies Won:

Offline Buckethead

  • C= 64
  • **
  • Posts: 58
  • Karma: 30
    • View Profile
Re: [MAGNIFICATION] Magnification by LittleWhite
« Reply #14 on: July 29, 2009 »
Nice =]
Challenge Trophies Won: