mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-02-20 10:54:16 +01:00
[dxvk] Added compute pipeline stub
This commit is contained in:
parent
5c932f14d6
commit
b67d952e63
@ -7,7 +7,10 @@ namespace dxvk {
|
||||
/**
|
||||
* \brief Compute pipeline
|
||||
*
|
||||
* Stores a pipeline object
|
||||
* Stores a compute pipeline object and the corresponding
|
||||
* pipeline layout. Unlike graphics pipelines, compute
|
||||
* pipelines do not need to be recompiled against any sort
|
||||
* of pipeline state.
|
||||
*/
|
||||
class DxvkComputePipeline : public RcObject {
|
||||
|
||||
|
@ -115,10 +115,12 @@ namespace dxvk {
|
||||
/**
|
||||
* \brief Creates a shader module
|
||||
*
|
||||
* \param [in] iface Shader interface
|
||||
* \param [in] code SPIR-V code
|
||||
* \returns Shader module
|
||||
*/
|
||||
Rc<DxvkShader> createShader(
|
||||
const DxvkShaderInterface& iface,
|
||||
const SpirvCodeBuffer& code);
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user