mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
[dxvk] Add methods to retrieve shaders from pipeline
This commit is contained in:
parent
59d4e8a36a
commit
54ff7bf769
@ -104,6 +104,14 @@ namespace dxvk {
|
|||||||
|
|
||||||
~DxvkComputePipeline();
|
~DxvkComputePipeline();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Shaders used by the pipeline
|
||||||
|
* \returns Shaders used by the pipeline
|
||||||
|
*/
|
||||||
|
const DxvkComputePipelineShaders& shaders() const {
|
||||||
|
return m_shaders;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Pipeline layout
|
* \brief Pipeline layout
|
||||||
*
|
*
|
||||||
|
@ -209,6 +209,14 @@ namespace dxvk {
|
|||||||
|
|
||||||
~DxvkGraphicsPipeline();
|
~DxvkGraphicsPipeline();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Shaders used by the pipeline
|
||||||
|
* \returns Shaders used by the pipeline
|
||||||
|
*/
|
||||||
|
const DxvkGraphicsPipelineShaders& shaders() const {
|
||||||
|
return m_shaders;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Returns graphics pipeline flags
|
* \brief Returns graphics pipeline flags
|
||||||
* \returns Graphics pipeline property flags
|
* \returns Graphics pipeline property flags
|
||||||
|
Loading…
x
Reference in New Issue
Block a user