mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
rsx/common: Use protected instead of private for surface_store content.
This commit is contained in:
parent
0a08f9595e
commit
284d2c43f9
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ namespace rsx
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
protected:
|
||||||
using surface_storage_type = typename Traits::surface_storage_type;
|
using surface_storage_type = typename Traits::surface_storage_type;
|
||||||
using surface_type = typename Traits::surface_type;
|
using surface_type = typename Traits::surface_type;
|
||||||
using command_list_type = typename Traits::command_list_type;
|
using command_list_type = typename Traits::command_list_type;
|
||||||
|
@ -76,7 +76,7 @@ namespace rsx
|
||||||
surface_store() = default;
|
surface_store() = default;
|
||||||
~surface_store() = default;
|
~surface_store() = default;
|
||||||
surface_store(const surface_store&) = delete;
|
surface_store(const surface_store&) = delete;
|
||||||
private:
|
protected:
|
||||||
/**
|
/**
|
||||||
* If render target already exists at address, issue state change operation on cmdList.
|
* If render target already exists at address, issue state change operation on cmdList.
|
||||||
* Otherwise create one with width, height, clearColor info.
|
* Otherwise create one with width, height, clearColor info.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue