|
|
@@ -247,8 +247,8 @@ namespace
|
|
|
class ExampleASSAO : public entry::AppI
|
|
|
{
|
|
|
public:
|
|
|
- ExampleASSAO(const char* _name, const char* _description)
|
|
|
- : entry::AppI(_name, _description)
|
|
|
+ ExampleASSAO(const char* _name, const char* _description, const char* _url)
|
|
|
+ : entry::AppI(_name, _description, _url)
|
|
|
, m_currFrame(UINT32_MAX)
|
|
|
, m_enableSSAO(true)
|
|
|
, m_enableTexturing(true)
|
|
|
@@ -1200,6 +1200,11 @@ namespace
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
-ENTRY_IMPLEMENT_MAIN(ExampleASSAO, "39-assao", "Adaptive Screen Space Ambient Occlusion.");
|
|
|
+ENTRY_IMPLEMENT_MAIN(
|
|
|
+ ExampleASSAO
|
|
|
+ , "39-assao"
|
|
|
+ , "Adaptive Screen Space Ambient Occlusion."
|
|
|
+ , "https://bkaradzic.github.io/bgfx/examples.html#assao"
|
|
|
+ );
|
|
|
|
|
|
|