Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
Empty file added features/Interior Sun/CORE
Empty file.
Empty file.
Empty file.
Empty file added features/Terrain Shadows/CORE
Empty file.
Empty file added features/Water Effects/CORE
Empty file.
2 changes: 2 additions & 0 deletions src/Features/ExtendedTranslucency.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,6 @@ struct ExtendedTranslucency final : Feature
const PerFrame& GetCommonBufferData() { return settings; }

static const RE::BSFixedString NiExtraDataName_AnisotropicAlphaMaterial;

virtual bool IsCore() const override { return true; };
};
1 change: 1 addition & 0 deletions src/Features/InteriorSun.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ struct InteriorSun : Feature
}

static bool IsInteriorWithSun(const RE::TESObjectCELL* cell);
virtual bool IsCore() const override { return true; };

private:
enum class CellFlagExt : uint16_t
Expand Down
1 change: 1 addition & 0 deletions src/Features/InverseSquareLighting.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ struct InverseSquareLighting : Feature
static float thunk(RE::BSLight* bsLight, RE::NiPoint3* targetPosition, RE::NiLight* refLight);
static inline REL::Relocation<decltype(thunk)> func;
};
virtual bool IsCore() const override { return true; };

private:
LightEditor editor = LightEditor();
Expand Down
1 change: 1 addition & 0 deletions src/Features/TerrainShadows.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,5 @@ struct TerrainShadows : public Feature
virtual inline void RestoreDefaultSettings() override { settings = {}; }
virtual void ClearShaderCache() override;
virtual bool SupportsVR() override { return true; };
virtual bool IsCore() const override { return true; };
};
1 change: 1 addition & 0 deletions src/Features/WaterEffects.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ struct WaterEffects : Feature
virtual void Prepass() override;

virtual bool SupportsVR() override { return true; };
virtual bool IsCore() const override { return true; };
};