Előadást letölteni
Az előadás letöltése folymat van. Kérjük, várjon
KiadtaMariska Pappné Megváltozta több, mint 10 éve
1
textúrázás Szécsi László
2
giraffe.jpg letöltése SolutionDir/Media folderbe
3
copy-paste-rename gg006-Shade folder vcxproj, filters átnevezés solution/add existing project rename project working dir: $(SolutionDir) Project Properties/Configuration Properties/Debugging/Command Arguments --solutionPath:"$(SolutionDir)" --projectPath:"$(ProjectDir)" build, run
4
class Game { ID3D11ShaderResourceView* kdSrv;
5
createResources() { loadEffect(); D3DX11CreateShaderResourceViewFromFileA( device, systemEnvironment.resolveMediaPath( "giraffe.jpg" ).c_str(), NULL, NULL, &kdSrv, NULL); // 1. opció: egyszer beállítás manuálisan effect->GetVariableByName("kdTexture")- >AsShaderResource()->SetResource(kdSrv);
6
ID3DX11EffectPass* basicPass = effect- >GetTechniqueByName("idletextured")- >GetPassByName("idletextured"); Egg::Mesh::Material::P idletexturedMaterial = Egg::Mesh::Material::create(basicPas s, 0); shadedMesh = binder- >bindMaterial(idletexturedMaterial, indexedMesh); #8.0
7
// 2. opció: material-beállításként texturedMaterial->set( effect ->GetVariableByName("kdTexture")) ->AsShaderResource() ->SetResource(kdSrv);
8
releaseResources(){ kdSrv->Release();
9
solution fx folderbe textured.fx
10
#include Texture2D kdTexture; SamplerState linearSampler { Filter = MIN_MAG_MIP_LINEAR; AddressU = Wrap; AddressV = Wrap; }; #7.0
11
float4 psTextured(VsosTrafo input) : SV_Target { return abs(saturate(input.normal).y) * kdTexture.Sample(linearSampler, input.tex); } technique11 textured { pass textured { SetVertexShader ( CompileShader( vs_5_0, vsTrafo() ) ); SetPixelShader( CompileShader( ps_5_0, psTextured() ) ); } #7.1
12
#include // and nothing else #7.1
14
textúrázott és árnyalt modell a textúrából jön a kd érték az árnyaláshoz
Hasonló előadás
© 2024 SlidePlayer.hu Inc.
All rights reserved.