/* Copyright (C) 2014-2019, Johannes Pekkilae, Miikka Vaeisalae. This file is part of Astaroth. Astaroth is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Astaroth is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Astaroth. If not, see . */ #pragma once #ifdef __cplusplus extern "C" { #endif #include "astaroth_defines.h" typedef struct device_s* Device; // Opaque pointer to device_s. Analogous to dispatchable handles // in Vulkan, f.ex. VkDevice /** */ AcResult acDeviceCreate(const int id, const AcMeshInfo device_config, Device* device); /** */ AcResult acDeviceDestroy(Device device); /** */ AcResult acDevicePrintInfo(const Device device); /** */ AcResult acDeviceAutoOptimize(const Device device); /** */ AcResult acDeviceSynchronizeStream(const Device device, const Stream stream); /** */ AcResult acDeviceSwapBuffers(const Device device); /** */ AcResult acDeviceLoadConstant(const Device device, const Stream stream, const AcRealParam param, const AcReal value); /** */ AcResult acDeviceLoadVertexBufferWithOffset(const Device device, const Stream stream, const AcMesh host_mesh, const VertexBufferHandle vtxbuf_handle, const int3 src, const int3 dst, const int num_vertices); /** Deprecated */ AcResult acDeviceLoadMeshWithOffset(const Device device, const Stream stream, const AcMesh host_mesh, const int3 src, const int3 dst, const int num_vertices); /** */ AcResult acDeviceLoadVertexBuffer(const Device device, const Stream stream, const AcMesh host_mesh, const VertexBufferHandle vtxbuf_handle); /** Deprecated */ AcResult acDeviceLoadMesh(const Device device, const Stream stream, const AcMesh host_mesh); /** */ AcResult acDeviceStoreVertexBufferWithOffset(const Device device, const Stream stream, const VertexBufferHandle vtxbuf_handle, const int3 src, const int3 dst, const int num_vertices, AcMesh* host_mesh); /** Deprecated */ AcResult acDeviceStoreMeshWithOffset(const Device device, const Stream stream, const int3 src, const int3 dst, const int num_vertices, AcMesh* host_mesh); /** */ AcResult acDeviceStoreVertexBuffer(const Device device, const Stream stream, const VertexBufferHandle vtxbuf_handle, AcMesh* host_mesh); /** Deprecated */ AcResult acDeviceStoreMesh(const Device device, const Stream stream, AcMesh* host_mesh); /** */ AcResult acDeviceTransferVertexBufferWithOffset(const Device src_device, const Stream stream, const VertexBufferHandle vtxbuf_handle, const int3 src, const int3 dst, const int num_vertices, Device dst_device); /** Deprecated */ AcResult acDeviceTransferMeshWithOffset(const Device src_device, const Stream stream, const int3 src, const int3 dst, const int num_vertices, Device* dst_device); /** */ AcResult acDeviceTransferVertexBuffer(const Device src_device, const Stream stream, const VertexBufferHandle vtxbuf_handle, Device dst_device); /** Deprecated */ AcResult acDeviceTransferMesh(const Device src_device, const Stream stream, Device dst_device); /** */ AcResult acDeviceIntegrateSubstep(const Device device, const Stream stream, const int step_number, const int3 start, const int3 end, const AcReal dt); /** */ AcResult acDevicePeriodicBoundcondStep(const Device device, const Stream stream, const VertexBufferHandle vtxbuf_handle, const int3 start, const int3 end); /** */ AcResult acDevicePeriodicBoundconds(const Device device, const Stream stream, const int3 start, const int3 end); /** */ AcResult acDeviceReduceScal(const Device device, const Stream stream, const ReductionType rtype, const VertexBufferHandle vtxbuf_handle, AcReal* result); /** */ AcResult acDeviceReduceVec(const Device device, const Stream stream_type, const ReductionType rtype, const VertexBufferHandle vtxbuf0, const VertexBufferHandle vtxbuf1, const VertexBufferHandle vtxbuf2, AcReal* result); #ifdef __cplusplus } // extern "C" #endif