2021-04-24 02:57:01 +03:00
|
|
|
/*
|
2021-05-29 13:38:28 +03:00
|
|
|
* Copyright (c) 2021, Stephan Unverwerth <s.unverwerth@serenityos.org>
|
2021-04-24 02:57:01 +03:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-05-09 00:17:13 +03:00
|
|
|
#include "DepthBuffer.h"
|
2021-05-15 23:55:40 +03:00
|
|
|
#include "GL/gl.h"
|
2021-04-24 02:57:01 +03:00
|
|
|
#include "GLStruct.h"
|
2021-05-30 00:34:40 +03:00
|
|
|
#include "Tex/Texture2D.h"
|
2021-05-30 14:39:31 +03:00
|
|
|
#include "Tex/TextureUnit.h"
|
|
|
|
#include <AK/Array.h>
|
2021-05-09 00:17:13 +03:00
|
|
|
#include <AK/OwnPtr.h>
|
2021-04-24 02:57:01 +03:00
|
|
|
#include <LibGfx/Bitmap.h>
|
2021-11-27 21:00:16 +03:00
|
|
|
#include <LibGfx/Rect.h>
|
2021-04-24 02:57:01 +03:00
|
|
|
#include <LibGfx/Vector4.h>
|
|
|
|
|
|
|
|
namespace GL {
|
|
|
|
|
|
|
|
struct RasterizerOptions {
|
2021-05-15 23:55:40 +03:00
|
|
|
bool shade_smooth { true };
|
2021-05-07 00:17:35 +03:00
|
|
|
bool enable_depth_test { false };
|
2021-08-13 02:06:26 +03:00
|
|
|
bool enable_depth_write { true };
|
2021-05-16 17:43:09 +03:00
|
|
|
bool enable_alpha_test { false };
|
|
|
|
GLenum alpha_test_func { GL_ALWAYS };
|
|
|
|
float alpha_test_ref_value { 0 };
|
2021-05-15 23:55:40 +03:00
|
|
|
bool enable_blending { false };
|
|
|
|
GLenum blend_source_factor { GL_ONE };
|
|
|
|
GLenum blend_destination_factor { GL_ONE };
|
2021-08-13 15:03:39 +03:00
|
|
|
u32 color_mask { 0xffffffff };
|
2021-08-16 18:52:12 +03:00
|
|
|
float depth_min { 0 };
|
|
|
|
float depth_max { 1 };
|
2021-08-16 18:59:45 +03:00
|
|
|
GLenum depth_func { GL_LESS };
|
2021-08-17 15:00:39 +03:00
|
|
|
GLenum polygon_mode { GL_FILL };
|
2021-08-24 18:10:19 +03:00
|
|
|
FloatVector4 fog_color {
|
|
|
|
0.0f,
|
|
|
|
0.0f,
|
|
|
|
0.0f,
|
|
|
|
0.0f,
|
|
|
|
};
|
2021-08-24 18:17:28 +03:00
|
|
|
GLfloat fog_density { 1.0f };
|
2021-08-24 18:21:54 +03:00
|
|
|
GLenum fog_mode { GL_EXP };
|
2021-08-25 11:10:44 +03:00
|
|
|
GLboolean fog_enabled { false };
|
|
|
|
GLfloat fog_start { 0.0f };
|
|
|
|
GLfloat fog_end { 1.0f };
|
2021-11-27 21:00:16 +03:00
|
|
|
bool scissor_enabled { false };
|
2021-11-29 00:27:35 +03:00
|
|
|
Gfx::IntRect scissor_box;
|
2021-08-31 21:23:29 +03:00
|
|
|
GLenum draw_buffer { GL_BACK };
|
2021-08-31 21:50:01 +03:00
|
|
|
GLfloat depth_offset_factor { 0 };
|
|
|
|
GLfloat depth_offset_constant { 0 };
|
2021-04-24 02:57:01 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class SoftwareRasterizer final {
|
|
|
|
public:
|
|
|
|
SoftwareRasterizer(const Gfx::IntSize& min_size);
|
|
|
|
|
2021-12-12 23:43:21 +03:00
|
|
|
void submit_triangle(GLTriangle const& triangle, TextureUnit::BoundList const& bound_texture_units);
|
2021-04-24 02:57:01 +03:00
|
|
|
void resize(const Gfx::IntSize& min_size);
|
|
|
|
void clear_color(const FloatVector4&);
|
|
|
|
void clear_depth(float);
|
2021-12-01 19:19:22 +03:00
|
|
|
void blit(Gfx::Bitmap const&, int x, int y);
|
2021-04-24 02:57:01 +03:00
|
|
|
void blit_to(Gfx::Bitmap&);
|
|
|
|
void wait_for_all_threads() const;
|
|
|
|
void set_options(const RasterizerOptions&);
|
|
|
|
RasterizerOptions options() const { return m_options; }
|
2021-05-24 18:52:24 +03:00
|
|
|
Gfx::RGBA32 get_backbuffer_pixel(int x, int y);
|
|
|
|
float get_depthbuffer_value(int x, int y);
|
2021-04-24 02:57:01 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
RefPtr<Gfx::Bitmap> m_render_target;
|
2021-05-09 00:17:13 +03:00
|
|
|
OwnPtr<DepthBuffer> m_depth_buffer;
|
2021-04-24 02:57:01 +03:00
|
|
|
RasterizerOptions m_options;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|