2016-09-26 07:00:19 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-09-29 00:10:14 +00:00
|
|
|
#include "r_compiler/llvmdrawers.h"
|
2016-09-28 16:49:39 +00:00
|
|
|
#include "r_compiler/ssa/ssa_value.h"
|
2016-09-26 07:00:19 +00:00
|
|
|
#include "r_compiler/ssa/ssa_vec4f.h"
|
|
|
|
#include "r_compiler/ssa/ssa_vec4i.h"
|
|
|
|
#include "r_compiler/ssa/ssa_vec8s.h"
|
|
|
|
#include "r_compiler/ssa/ssa_vec16ub.h"
|
|
|
|
#include "r_compiler/ssa/ssa_int.h"
|
2016-09-28 03:18:16 +00:00
|
|
|
#include "r_compiler/ssa/ssa_int_ptr.h"
|
2016-09-27 20:54:37 +00:00
|
|
|
#include "r_compiler/ssa/ssa_short.h"
|
2016-09-26 07:00:19 +00:00
|
|
|
#include "r_compiler/ssa/ssa_ubyte_ptr.h"
|
|
|
|
#include "r_compiler/ssa/ssa_vec4f_ptr.h"
|
|
|
|
#include "r_compiler/ssa/ssa_vec4i_ptr.h"
|
|
|
|
#include "r_compiler/ssa/ssa_stack.h"
|
2016-10-16 22:19:07 +00:00
|
|
|
#include "r_compiler/ssa/ssa_bool.h"
|
2016-09-26 07:00:19 +00:00
|
|
|
#include "r_compiler/ssa/ssa_barycentric_weight.h"
|
|
|
|
#include "r_compiler/llvm_include.h"
|
|
|
|
|
2016-09-30 05:27:25 +00:00
|
|
|
class SSAWorkerThread
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SSAInt core;
|
|
|
|
SSAInt num_cores;
|
|
|
|
SSAInt pass_start_y;
|
|
|
|
SSAInt pass_end_y;
|
2016-10-07 04:40:29 +00:00
|
|
|
SSAUBytePtr temp;
|
2016-09-30 05:27:25 +00:00
|
|
|
};
|
|
|
|
|
2016-09-28 03:18:16 +00:00
|
|
|
class SSAShadeConstants
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SSAVec4i light;
|
|
|
|
SSAVec4i fade;
|
|
|
|
SSAInt desaturate;
|
2016-09-27 20:54:37 +00:00
|
|
|
};
|
|
|
|
|
2016-09-28 16:49:39 +00:00
|
|
|
class DrawerCodegen
|
2016-09-26 07:00:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-09-30 05:27:25 +00:00
|
|
|
// Checks if a line is rendered by this thread
|
|
|
|
SSABool line_skipped_by_thread(SSAInt line, SSAWorkerThread thread);
|
|
|
|
|
|
|
|
// The number of lines to skip to reach the first line to be rendered by this thread
|
|
|
|
SSAInt skipped_by_thread(SSAInt first_line, SSAWorkerThread thread);
|
|
|
|
|
|
|
|
// The number of lines to be rendered by this thread
|
|
|
|
SSAInt count_for_thread(SSAInt first_line, SSAInt count, SSAWorkerThread thread);
|
|
|
|
|
|
|
|
// Calculate the dest address for the first line to be rendered by this thread
|
|
|
|
SSAUBytePtr dest_for_thread(SSAInt first_line, SSAInt pitch, SSAUBytePtr dest, SSAWorkerThread thread);
|
|
|
|
|
2016-09-28 03:18:16 +00:00
|
|
|
// LightBgra
|
|
|
|
SSAInt calc_light_multiplier(SSAInt light);
|
|
|
|
SSAVec4i shade_pal_index_simple(SSAInt index, SSAInt light, SSAUBytePtr basecolors);
|
|
|
|
SSAVec4i shade_pal_index_advanced(SSAInt index, SSAInt light, const SSAShadeConstants &constants, SSAUBytePtr basecolors);
|
|
|
|
SSAVec4i shade_bgra_simple(SSAVec4i color, SSAInt light);
|
|
|
|
SSAVec4i shade_bgra_advanced(SSAVec4i color, SSAInt light, const SSAShadeConstants &constants);
|
|
|
|
|
|
|
|
// BlendBgra
|
|
|
|
SSAVec4i blend_copy(SSAVec4i fg);
|
|
|
|
SSAVec4i blend_add(SSAVec4i fg, SSAVec4i bg, SSAInt srcalpha, SSAInt destalpha);
|
|
|
|
SSAVec4i blend_sub(SSAVec4i fg, SSAVec4i bg, SSAInt srcalpha, SSAInt destalpha);
|
|
|
|
SSAVec4i blend_revsub(SSAVec4i fg, SSAVec4i bg, SSAInt srcalpha, SSAInt destalpha);
|
|
|
|
SSAVec4i blend_alpha_blend(SSAVec4i fg, SSAVec4i bg);
|
|
|
|
|
2016-09-29 02:01:42 +00:00
|
|
|
// Calculates the final alpha values to be used when combined with the source texture alpha channel
|
|
|
|
SSAInt calc_blend_bgalpha(SSAVec4i fg, SSAInt destalpha);
|
|
|
|
|
2016-09-28 03:18:16 +00:00
|
|
|
// SampleBgra
|
|
|
|
SSAVec4i sample_linear(SSAUBytePtr col0, SSAUBytePtr col1, SSAInt texturefracx, SSAInt texturefracy, SSAInt one, SSAInt height);
|
|
|
|
SSAVec4i sample_linear(SSAUBytePtr texture, SSAInt xfrac, SSAInt yfrac, SSAInt xbits, SSAInt ybits);
|
2016-09-26 07:00:19 +00:00
|
|
|
};
|