mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
#pragma once
|
|
#include "../Common/VertexProgramDecompiler.h"
|
|
#include "Emu/RSX/RSXVertexProgram.h"
|
|
#include "Utilities/Thread.h"
|
|
#include "OpenGL.h"
|
|
|
|
struct GLVertexDecompilerThread : public VertexProgramDecompiler
|
|
{
|
|
std::string &m_shader;
|
|
protected:
|
|
virtual std::string getFloatTypeName(size_t elementCount) override;
|
|
virtual std::string getFunction(FUNCTION) override;
|
|
virtual std::string compareFunction(COMPARE, const std::string&, const std::string&) override;
|
|
|
|
virtual void insertHeader(std::stringstream &OS) override;
|
|
virtual void insertInputs(std::stringstream &OS, const std::vector<ParamType> &inputs) override;
|
|
virtual void insertConstants(std::stringstream &OS, const std::vector<ParamType> &constants) override;
|
|
virtual void insertOutputs(std::stringstream &OS, const std::vector<ParamType> &outputs) override;
|
|
virtual void insertMainStart(std::stringstream &OS) override;
|
|
virtual void insertMainEnd(std::stringstream &OS) override;
|
|
public:
|
|
GLVertexDecompilerThread(std::vector<u32>& data, std::string& shader, ParamArray& parr)
|
|
: VertexProgramDecompiler(data)
|
|
, m_shader(shader)
|
|
{
|
|
}
|
|
|
|
void Task();
|
|
};
|
|
|
|
class GLVertexProgram
|
|
{
|
|
public:
|
|
GLVertexProgram();
|
|
~GLVertexProgram();
|
|
|
|
ParamArray parr;
|
|
u32 id = 0;
|
|
std::string shader;
|
|
|
|
void Decompile(RSXVertexProgram& prog);
|
|
void Compile();
|
|
|
|
private:
|
|
void Delete();
|
|
};
|