mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 19:21:00 +01:00
30 lines
600 B
C
30 lines
600 B
C
|
// Copyright 2013 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "VideoCommon/ConstantManager.h"
|
||
|
#include "VideoCommon/GeometryShaderGen.h"
|
||
|
|
||
|
class PointerWrap;
|
||
|
|
||
|
// The non-API dependent parts.
|
||
|
class GeometryShaderManager
|
||
|
{
|
||
|
public:
|
||
|
static void Init();
|
||
|
static void Dirty();
|
||
|
static void Shutdown();
|
||
|
static void DoState(PointerWrap &p);
|
||
|
|
||
|
// constant management
|
||
|
static void SetConstants();
|
||
|
|
||
|
static void SetViewportChanged();
|
||
|
static void SetProjectionChanged();
|
||
|
|
||
|
static GeometryShaderConstants constants;
|
||
|
static bool dirty;
|
||
|
};
|