61 lines
2.0 KiB
C++
61 lines
2.0 KiB
C++
/*
|
|
* This program 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 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
/** \file
|
|
* \ingroup gpu
|
|
*/
|
|
|
|
#ifndef __GPU_STATE_H__
|
|
#define __GPU_STATE_H__
|
|
|
|
/* These map directly to the GL_ blend functions, to minimize API add as needed*/
|
|
typedef enum eGPUBlendFunction {
|
|
GPU_ONE,
|
|
GPU_SRC_ALPHA,
|
|
GPU_ONE_MINUS_SRC_ALPHA,
|
|
GPU_DST_COLOR,
|
|
GPU_ZERO,
|
|
} eGPUBlendFunction;
|
|
|
|
/* These map directly to the GL_ filter functions, to minimize API add as needed*/
|
|
typedef enum eGPUFilterFunction {
|
|
GPU_NEAREST,
|
|
GPU_LINEAR
|
|
} eGPUFilterFunction;
|
|
|
|
void GPU_blend(bool enable);
|
|
void GPU_blend_set_func(eGPUBlendFunction sfactor, eGPUBlendFunction dfactor);
|
|
void GPU_blend_set_func_separate(
|
|
eGPUBlendFunction src_rgb, eGPUBlendFunction dst_rgb,
|
|
eGPUBlendFunction src_alpha, eGPUBlendFunction dst_alpha);
|
|
void GPU_depth_range(float near, float far);
|
|
void GPU_depth_test(bool enable);
|
|
bool GPU_depth_test_enabled(void);
|
|
void GPU_line_smooth(bool enable);
|
|
void GPU_line_width(float width);
|
|
void GPU_point_size(float size);
|
|
void GPU_polygon_smooth(bool enable);
|
|
void GPU_scissor(int x, int y, int width, int height);
|
|
void GPU_scissor_get_f(float coords[4]);
|
|
void GPU_scissor_get_i(int coords[4]);
|
|
void GPU_viewport_size_get_f(float coords[4]);
|
|
void GPU_viewport_size_get_i(int coords[4]);
|
|
|
|
void GPU_flush(void);
|
|
void GPU_finish(void);
|
|
|
|
#endif /* __GPU_STATE_H__ */
|