2018-06-26 15:17:31 -06:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
* \ingroup gpu
|
2018-06-26 15:17:31 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GPU_STATE_H__
|
|
|
|
#define __GPU_STATE_H__
|
|
|
|
|
2020-03-02 15:28:47 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-07-18 23:09:31 +10:00
|
|
|
/* These map directly to the GL_ blend functions, to minimize API add as needed*/
|
2019-01-23 14:15:43 +11:00
|
|
|
typedef enum eGPUBlendFunction {
|
2019-04-17 06:17:24 +02:00
|
|
|
GPU_ONE,
|
|
|
|
GPU_SRC_ALPHA,
|
|
|
|
GPU_ONE_MINUS_SRC_ALPHA,
|
|
|
|
GPU_DST_COLOR,
|
|
|
|
GPU_ZERO,
|
2019-01-23 14:15:43 +11:00
|
|
|
} eGPUBlendFunction;
|
2018-06-26 15:17:31 -06:00
|
|
|
|
|
|
|
/* These map directly to the GL_ filter functions, to minimize API add as needed*/
|
2019-01-23 14:15:43 +11:00
|
|
|
typedef enum eGPUFilterFunction {
|
2019-04-17 06:17:24 +02:00
|
|
|
GPU_NEAREST,
|
|
|
|
GPU_LINEAR,
|
2019-01-23 14:15:43 +11:00
|
|
|
} eGPUFilterFunction;
|
2018-06-26 15:17:31 -06:00
|
|
|
|
2020-07-17 20:04:37 +02:00
|
|
|
typedef enum eGPUFaceCull {
|
|
|
|
GPU_CULL_NONE = 0, /* Culling disabled. */
|
|
|
|
GPU_CULL_FRONT,
|
|
|
|
GPU_CULL_BACK,
|
|
|
|
} eGPUFaceCull;
|
|
|
|
|
2020-07-17 20:26:12 +02:00
|
|
|
typedef enum eGPUProvokingVertex {
|
|
|
|
GPU_VERTEX_FIRST = 0,
|
|
|
|
GPU_VERTEX_LAST, /* Default */
|
|
|
|
} eGPUProvokingVertex;
|
|
|
|
|
2020-05-15 14:29:27 +02:00
|
|
|
/* Initialize
|
|
|
|
* - sets the default Blender opengl state, if in doubt, check
|
|
|
|
* the contents of this function
|
|
|
|
* - this is called when starting Blender, for opengl rendering. */
|
|
|
|
void GPU_state_init(void);
|
|
|
|
|
2018-06-26 15:17:31 -06:00
|
|
|
void GPU_blend(bool enable);
|
2019-01-23 14:15:43 +11:00
|
|
|
void GPU_blend_set_func(eGPUBlendFunction sfactor, eGPUBlendFunction dfactor);
|
2019-04-17 06:17:24 +02:00
|
|
|
void GPU_blend_set_func_separate(eGPUBlendFunction src_rgb,
|
|
|
|
eGPUBlendFunction dst_rgb,
|
|
|
|
eGPUBlendFunction src_alpha,
|
|
|
|
eGPUBlendFunction dst_alpha);
|
2020-07-17 20:04:37 +02:00
|
|
|
void GPU_face_culling(eGPUFaceCull culling);
|
2020-07-17 20:13:11 +02:00
|
|
|
void GPU_front_facing(bool invert);
|
2020-07-17 20:26:12 +02:00
|
|
|
void GPU_provoking_vertex(eGPUProvokingVertex vert);
|
2018-10-30 15:31:32 -03:00
|
|
|
void GPU_depth_range(float near, float far);
|
2018-06-26 15:17:31 -06:00
|
|
|
void GPU_depth_test(bool enable);
|
|
|
|
bool GPU_depth_test_enabled(void);
|
2020-07-17 19:21:33 +02:00
|
|
|
void GPU_scissor_test(bool enable);
|
2018-06-26 15:17:31 -06:00
|
|
|
void GPU_line_smooth(bool enable);
|
|
|
|
void GPU_line_width(float width);
|
|
|
|
void GPU_point_size(float size);
|
|
|
|
void GPU_polygon_smooth(bool enable);
|
2019-05-28 17:14:22 +02:00
|
|
|
void GPU_program_point_size(bool enable);
|
2018-06-26 15:17:31 -06:00
|
|
|
void GPU_scissor(int x, int y, int width, int height);
|
2018-07-02 18:27:05 +02:00
|
|
|
void GPU_scissor_get_f(float coords[4]);
|
|
|
|
void GPU_scissor_get_i(int coords[4]);
|
2020-07-17 19:03:30 +02:00
|
|
|
void GPU_viewport(int x, int y, int width, int height);
|
2018-07-02 18:27:05 +02:00
|
|
|
void GPU_viewport_size_get_f(float coords[4]);
|
|
|
|
void GPU_viewport_size_get_i(int coords[4]);
|
2020-07-16 04:16:10 +02:00
|
|
|
void GPU_color_mask(bool r, bool g, bool b, bool a);
|
|
|
|
void GPU_depth_mask(bool depth);
|
|
|
|
bool GPU_depth_mask_get(void);
|
|
|
|
void GPU_stencil_mask(uint stencil);
|
2020-07-17 18:51:26 +02:00
|
|
|
void GPU_unpack_row_length_set(uint len);
|
2018-06-26 15:17:31 -06:00
|
|
|
|
2018-10-31 12:28:59 +01:00
|
|
|
void GPU_flush(void);
|
|
|
|
void GPU_finish(void);
|
|
|
|
|
2020-07-16 03:31:25 +02:00
|
|
|
void GPU_logic_op_xor_set(bool enable);
|
2019-07-02 12:30:55 +10:00
|
|
|
|
2020-03-11 14:52:57 +11:00
|
|
|
/* Attribute push & pop. */
|
|
|
|
typedef enum eGPUAttrMask {
|
|
|
|
GPU_DEPTH_BUFFER_BIT = (1 << 0),
|
|
|
|
GPU_ENABLE_BIT = (1 << 1),
|
|
|
|
GPU_SCISSOR_BIT = (1 << 2),
|
|
|
|
GPU_VIEWPORT_BIT = (1 << 3),
|
|
|
|
GPU_BLEND_BIT = (1 << 4),
|
|
|
|
} eGPUAttrMask;
|
|
|
|
|
|
|
|
void gpuPushAttr(eGPUAttrMask mask);
|
|
|
|
void gpuPopAttr(void);
|
|
|
|
|
2020-03-02 15:28:47 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
#endif /* __GPU_STATE_H__ */
|