Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aimoonchen authored and durswd committed Dec 19, 2023
1 parent c970772 commit c60213c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ ModelRendererRef ModelRenderer::Create(RendererImplemented* renderer)
ShaderCodeView dist_ps(get_model_distortion_ps(renderer->GetDeviceType()));

const auto texLocUnlit = GetTextureLocations(EffekseerRenderer::RendererShaderType::Unlit);
const auto texLocLit = GetTextureLocations(EffekseerRenderer::RendererShaderType::AdvancedLit);
const auto texLocLit = GetTextureLocations(EffekseerRenderer::RendererShaderType::Lit);
const auto texLocDist = GetTextureLocations(EffekseerRenderer::RendererShaderType::BackDistortion);
const auto texLocAdUnlit = GetTextureLocations(EffekseerRenderer::RendererShaderType::AdvancedUnlit);
const auto texLocAdLit = GetTextureLocations(EffekseerRenderer::RendererShaderType::AdvancedLit);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ bool RendererImplemented::Initialize()
ShaderCodeView lit_ps(get_model_lit_ps(GetDeviceType()));

const auto texLocUnlit = GetTextureLocations(EffekseerRenderer::RendererShaderType::Unlit);
const auto texLocLit = GetTextureLocations(EffekseerRenderer::RendererShaderType::AdvancedLit);
const auto texLocLit = GetTextureLocations(EffekseerRenderer::RendererShaderType::Lit);
const auto texLocDist = GetTextureLocations(EffekseerRenderer::RendererShaderType::BackDistortion);
const auto texLocAdUnlit = GetTextureLocations(EffekseerRenderer::RendererShaderType::AdvancedUnlit);
const auto texLocAdLit = GetTextureLocations(EffekseerRenderer::RendererShaderType::AdvancedLit);
Expand Down

0 comments on commit c60213c

Please sign in to comment.