summaryrefslogblamecommitdiffstats
path: root/src/video_core/shader/shader_jit_x64.h
blob: 078b2cba5d01c389b3961efe0d747bcbd58a50c9 (plain) (tree)




















                                                

                                                                           

        
                                                              



                     
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <memory>
#include <unordered_map>
#include "common/common_types.h"
#include "video_core/shader/shader.h"

namespace Pica {
namespace Shader {

class JitShader;

class JitX64Engine final : public ShaderEngine {
public:
    JitX64Engine();
    ~JitX64Engine() override;

    void SetupBatch(ShaderSetup& setup, unsigned int entry_point) override;
    void Run(const ShaderSetup& setup, UnitState& state) const override;

private:
    std::unordered_map<u64, std::unique_ptr<JitShader>> cache;
};

} // namespace Shader
} // namespace Pica