» チュートリアル エフェクト - ピクセルシェーダーの準備
This site relies heavily on Javascript. You should enable it if you want the full experience. Learn more.

チュートリアル エフェクト - ピクセルシェーダーの準備

English | Italian | Spanish | Mandarin | French

TOC: エフェクトとシェーダー
Next: 色操作


全てのピクセルシェーダーの例で私たちは同様に基本的なパッチを使い、それらは2x2のGrid (EX9.Geometry)FileTexture (EX9.Texture)をエフェクトに接続し、RendererのView Transformはグリッドが全部の視界を満たすように2倍にスケールされるように設定します:

パッチのTemplateノードの代わりに、私たちはいつもeffectsページで記載されているように新しいエフェクトをクローンします。パッチの中で示すように新しいクローンされたエフェクトを接続して、ノード上で右クリックしてコードエディターを開いてください。それから、以下のコードを理解して、それをテンプレートコードと置き換えましょう。このコードは、私たちに今は必要ない頂点シェーダー部分が排除されてよりいっそう簡単なものになっています。

//texture
texture Tex <string uiname="Texture";>;
sampler Samp = sampler_state    //sampler for doing the texture-lookup
{
    Texture   = (Tex);          //apply a texture to the sampler
    MipFilter = LINEAR;         //sampler states
    MinFilter = LINEAR;
    MagFilter = LINEAR;
};
 
//the data structure: "vertexshader to pixelshader"
//used as output data with the VS function
//and as input data with the PS function
struct vs2ps
{
    float4 Pos  : POSITION;
    float2 TexCd : TEXCOORD0;
};
 
float4 PS(vs2ps In): COLOR
{
    return 1;
}
 
technique TSimpleShader
{
    pass P0
    {
        VertexShader = null;
        PixelShader  = compile ps_2_0 PS();
    }
}

CTRL+Sを押してコードを保存/コンパイルしてください。エラーは表示されないはずです。もしエラーがあったら、間違いなく全てがコピーされているか確認してエディター上のコードが上の図のようになっているか確かめてください。


Next: 色操作
TOC: エフェクトとシェーダー

anonymous user login

Shoutbox

~2d ago

joreg: Introducing: Support for latest Ultraleap hand-tracking devices: https://visualprogramming.net/blog/2024/introducing-support-for-new-ultraleap-devices/

~5d ago

joreg: 2 day vvvv/fuse workshop in Vienna as part of NOISE festival on Sept. 13 and 14: https://www.noise.ist/vienna

~16d ago

joreg: New beginner video tutorial: World Cities https://youtu.be/ymzrK7tZLBI

~16d ago

catweasel: https://colour-burst.com/2023/01/26/macroscopic/ yeah, ' is there anyone who cares about slides anymore...' Well me for a start! :D

~25d ago

ventolinmono: The ELMO TRV-35 slides into your video feed > https://youtu.be/pcIM9mh1c9k?si=iB4FOfI2D6y0iETy

~1mth ago

joreg: The summer season of vvvv workshops is now complete, but you can still get access to all the recordings: https://thenodeinstitute.org/ss24-vvvv-intermediates/

~2mth ago

~2mth ago

joreg: Workshop on 01 08: Augmented Reality using OpenCV, signup here: https://thenodeinstitute.org/courses/ss24-vvvv-augmented-reality-using-opencv-in-vvvv/

~2mth ago

joreg: Workshop on 18 07: Fluid simulations in FUSE, signup here: https://thenodeinstitute.org/courses/ss24-vvvv-fluid-simulations-in-fuse/

~2mth ago

joreg: Workshop on 17 07: Working with particles in FUSE, signup here: https://thenodeinstitute.org/courses/ss24-vvvv-working-with-particles-in-fuse/