2014-11-13 23:26:49 +01:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
class BoundingBox
|
|
|
|
{
|
|
|
|
public:
|
2019-02-15 11:59:50 +10:00
|
|
|
static void Init();
|
2016-06-24 10:43:46 +02:00
|
|
|
static void Shutdown();
|
2014-11-13 23:26:49 +01:00
|
|
|
|
2021-04-18 03:14:52 +10:00
|
|
|
static void Flush();
|
|
|
|
static void Readback();
|
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
static void Set(int index, int value);
|
|
|
|
static int Get(int index);
|
2014-11-13 23:26:49 +01:00
|
|
|
};
|
2019-02-15 11:59:50 +10:00
|
|
|
}; // namespace OGL
|