| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A simple C++ framework for implementing graphics technique samples using OpenGL or Vulkan.
Creating a project using dwSampleFramework is as easy as inheriting from the dw::Application class and overriding the methods you need.
#include <application.h>
class Tutorial : public dw::Application
{
protected:
bool init(int argc, const char* argv[]) override
{
return true;
}
void update(double delta) override
{
}
void shutdown() override
{
}
};
DW_DECLARE_MAIN(Tutorial)The sample application will give you a basic understanding of how to create a simple graphics application using the framework. It simply renders a rotating Teapot.
Use CMake version 3.8 or higher to generate a project for any IDE of your choice. The resulting project will contain all dependencies, framework library and sample application. The teapot model and texture can be found inside data/sample_assets.zip. Simply extract it into the directory containing the executable.
This will only cover using dwSampleFramework in a project that uses CMake since it is more practical and will make handling dependencies easier.
add_subdirectory(path/to/dwSampleFramework)
target_link_libraries(TARGET_NAME dwSampleFramework)
Note: If you wish to use dwSampleFramework as a precompiled library, make sure you copy the generated Assimp config.h file to your Assimp include directory.
Copyright (c) 2019 Dihara Wijetunga Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
| Back | FazBrowse Home | New Git URL |