You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
295 B
8 lines
295 B
#pragma once
|
|
#include "cl.hpp"
|
|
|
|
void printTimeStats(cl_event event);
|
|
void WriteTGA_RGB(const char* filename, unsigned char* data, unsigned int width, unsigned int height);
|
|
std::string FileToString(const std::string& path);
|
|
const char* getErrorString(cl_int error);
|
|
bool CheckCLError(cl_int err);
|