2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2016-01-17 14:54:31 -07:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoCommon/ConstantManager.h"
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2012-01-01 13:46:02 -07:00
|
|
|
class PointerWrap;
|
|
|
|
|
2008-12-26 03:43:18 -07:00
|
|
|
// The non-API dependent parts.
|
|
|
|
class VertexShaderManager
|
|
|
|
{
|
|
|
|
public:
|
2009-09-15 15:49:15 -06:00
|
|
|
static void Init();
|
|
|
|
static void Dirty();
|
2012-01-01 13:46:02 -07:00
|
|
|
static void DoState(PointerWrap& p);
|
2016-06-24 02:43:46 -06:00
|
|
|
|
2009-09-15 15:49:15 -06:00
|
|
|
// constant management
|
2009-08-15 01:20:37 -06:00
|
|
|
static void SetConstants();
|
2016-06-24 02:43:46 -06:00
|
|
|
|
2009-09-15 15:49:15 -06:00
|
|
|
static void InvalidateXFRange(int start, int end);
|
2011-02-05 11:25:34 -07:00
|
|
|
static void SetTexMatrixChangedA(u32 value);
|
|
|
|
static void SetTexMatrixChangedB(u32 value);
|
|
|
|
static void SetViewportChanged();
|
|
|
|
static void SetProjectionChanged();
|
2015-08-16 19:07:10 -06:00
|
|
|
static void SetMaterialColorChanged(int index);
|
2016-06-24 02:43:46 -06:00
|
|
|
|
2017-07-19 23:25:27 -06:00
|
|
|
static void SetVertexFormat(u32 components);
|
|
|
|
static void SetTexMatrixInfoChanged(int index);
|
|
|
|
static void SetLightingConfigChanged();
|
|
|
|
|
2015-01-23 07:15:09 -07:00
|
|
|
// data: 3 floats representing the X, Y and Z vertex model coordinates and the posmatrix index.
|
2015-01-24 13:12:52 -07:00
|
|
|
// out: 4 floats which will be initialized with the corresponding clip space coordinates
|
2014-12-25 00:34:22 -07:00
|
|
|
// NOTE: g_fProjectionMatrix must be up to date when this is called
|
2015-01-24 13:12:52 -07:00
|
|
|
// (i.e. VertexShaderManager::SetConstants needs to be called before using this!)
|
|
|
|
static void TransformToClipSpace(const float* data, float* out, u32 mtxIdx);
|
2016-06-24 02:43:46 -06:00
|
|
|
|
2013-10-07 08:02:24 -06:00
|
|
|
static VertexShaderConstants constants;
|
|
|
|
static bool dirty;
|
2008-07-17 15:09:18 -06:00
|
|
|
};
|