mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-03-24 06:05:24 +01:00
20 lines
482 B
C++
20 lines
482 B
C++
#pragma once
|
|
|
|
#include "Node.hpp"
|
|
#include "RegionLike.hpp"
|
|
|
|
namespace shader::ir {
|
|
template <typename ImplT>
|
|
struct RegionWrapper : RegionLikeWrapper<ImplT, NodeWrapper> {
|
|
using RegionLikeWrapper<ImplT, NodeWrapper>::RegionLikeWrapper;
|
|
using RegionLikeWrapper<ImplT, NodeWrapper>::operator=;
|
|
};
|
|
|
|
struct RegionImpl;
|
|
|
|
struct Region : RegionWrapper<RegionImpl> {
|
|
using RegionWrapper<RegionImpl>::RegionWrapper;
|
|
using RegionWrapper<RegionImpl>::operator=;
|
|
};
|
|
} // namespace ir
|