Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

/*=============================================================================
	HelloWorld.frag: HelloWorldfragment shader.
	Copyright 2018 Sebastian Kaufel. All Rights Reserved.

	Revision history:
		* Created by Sebastian Kaufel
=============================================================================*/

/*-----------------------------------------------------------------------------
	Out.
-----------------------------------------------------------------------------*/

// Color Attachment 0.
out vec4 Result;

/*-----------------------------------------------------------------------------
	Implementation.
-----------------------------------------------------------------------------*/

void main()
{
	Result = vec4( 1.0, 0.2, 0.0, 1.0 );
}

/*-----------------------------------------------------------------------------
	The End.
-----------------------------------------------------------------------------*/

Eine Antwort auf „Hello world!“

Schreibe einen Kommentar zu A WordPress Commenter Antworten abbrechen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert