Files
loongoffice/offapi/com/sun/star/sheet/opencl/OpenCLPlatform.idl
Markus Mohrhard 4e736a8b8c add API to retrieve all available OpenCL platforms and devices
Change-Id: I2475961ae315ee7193ca2cedd5943b663bfee7a0
2013-11-25 20:43:49 +01:00

34 lines
834 B
Plaintext

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef __com_sun_star_sheet_opencl_OpenCLPlatform_idl__
#define __com_sun_star_sheet_opencl_OpenCLPlatform_idl__
#include <com/sun/star/sheet/opencl/OpenCLDevice.idl>
module com { module sun { module star { module sheet { module opencl {
struct OpenCLPlatform
{
/**
* The name of the platform as returned by OpenCL
*/
string Name;
string Vendor;
sequence< OpenCLDevice > Devices;
};
}; }; }; }; };
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */