This commit is contained in:
Wojtek Figat
2021-03-25 23:16:04 +01:00
parent 4847479dae
commit 1a8456ea57
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ jobs:
steps:
- name: Install dependencies
run: |
sudo apt-get install libx11-dev libxcursor-dev libxinerama-dev
sudo apt-get install libx11-dev libxcursor-dev libxinerama-dev curl
- name: Checkout repo
uses: actions/checkout@v2
- name: Checkout LFS

View File

@@ -87,8 +87,8 @@ bool ShadowsPass::Init()
if (!_supportsShadows)
{
LOG(Warning, "GPU doesn't support shadows rendering");
LOG(Warning, "Format: {0} features support: {1}", (int32)SHADOW_MAPS_FORMAT, (uint32)formatFeaturesDepth.Support);
LOG(Warning, "Format: {0} features support: {1}", (int32)formatTexture, (uint32)formatFeaturesTexture.Support);
LOG(Warning, "Format: {0}, features support: {1}", (int32)SHADOW_MAPS_FORMAT, (uint32)formatFeaturesDepth.Support);
LOG(Warning, "Format: {0}, features support: {1}", (int32)formatTexture, (uint32)formatFeaturesTexture.Support);
}
return false;