2015-08-06 19:34:26 -07:00
|
|
|
#include "isaac/driver/device.h"
|
2015-08-12 00:46:51 -07:00
|
|
|
#include "isaac/profiles/profiles.h"
|
2015-08-06 19:34:26 -07:00
|
|
|
|
|
|
|
#include "presets/broadwell.hpp"
|
|
|
|
|
|
|
|
namespace isaac
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2015-08-13 13:43:26 -07:00
|
|
|
#define DATABASE_ENTRY(TYPE, VENDOR, ARCHITECTURE, STRING) \
|
|
|
|
{std::make_tuple(driver::Device::Type::TYPE, driver::Device::Vendor::VENDOR, driver::Device::Architecture::ARCHITECTURE), STRING}
|
2015-08-06 19:34:26 -07:00
|
|
|
|
2015-08-13 13:43:26 -07:00
|
|
|
const profiles::presets_type profiles::presets_ =
|
2015-09-30 15:31:41 -04:00
|
|
|
{ };
|
2015-08-06 19:34:26 -07:00
|
|
|
|
|
|
|
|
|
|
|
#undef DATABASE_ENTRY
|
|
|
|
|
|
|
|
}
|