Skip to content

Commit 562b02d

Browse files
authored
Minor code style cleanup (#140)
1 parent 0bfdb51 commit 562b02d

File tree

20 files changed

+51
-51
lines changed

20 files changed

+51
-51
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ __pycache__
77
pve
88

99
# CMake build directories
10-
build*
10+
**/build*
1111

1212
# Data files and build outputs
1313
*.log

generator/vk_layer/source/device.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,14 @@ class Device
115115
VkCommandBuffer handle);
116116

117117
/**
118-
* \brief Drop a device from the global store of dispatchable devices.
118+
* @brief Drop a device from the global store of dispatchable devices.
119119
*
120120
* This must be called before the driver VkDevice has been destroyed, as
121121
* we deference the native device handle to get the dispatch key.
122122
*
123-
* \param handle The dispatchable device handle to use as an indirect lookup.
123+
* @param handle The dispatchable device handle to use as an indirect lookup.
124124
*
125-
* \return Returns the ownership of the Device object to the caller.
125+
* @return Returns the ownership of the Device object to the caller.
126126
*/
127127
static std::unique_ptr<Device> destroy(
128128
VkDevice handle);

generator/vk_layer/source/instance.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,14 @@ class Instance
9999
VkPhysicalDevice handle);
100100

101101
/**
102-
* \brief Drop an instance from the global store of dispatchable instances.
102+
* @brief Drop an instance from the global store of dispatchable instances.
103103
*
104104
* This must be called before the driver VkInstance has been destroyed, as
105105
* we deference the native instance handle to get the dispatch key.
106106
*
107-
* \param handle The dispatchable instance handle to use as an indirect lookup.
107+
* @param handle The dispatchable instance handle to use as an indirect lookup.
108108
*
109-
* \return Returns the ownership of the Instance object to the caller.
109+
* @return Returns the ownership of the Instance object to the caller.
110110
*/
111111
static std::unique_ptr<Instance> destroy(
112112
VkInstance handle);

layer_example/source/device.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,14 +110,14 @@ class Device
110110
static Device* retrieve(VkCommandBuffer handle);
111111

112112
/**
113-
* \brief Drop a device from the global store of dispatchable devices.
113+
* @brief Drop a device from the global store of dispatchable devices.
114114
*
115115
* This must be called before the driver VkDevice has been destroyed, as
116116
* we deference the native device handle to get the dispatch key.
117117
*
118-
* \param handle The dispatchable device handle to use as an indirect lookup.
118+
* @param handle The dispatchable device handle to use as an indirect lookup.
119119
*
120-
* \return Returns the ownership of the Device object to the caller.
120+
* @return Returns the ownership of the Device object to the caller.
121121
*/
122122
static std::unique_ptr<Device> destroy(
123123
VkDevice handle);

layer_example/source/instance.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ class Instance
9595
static Instance* retrieve(VkPhysicalDevice handle);
9696

9797
/**
98-
* \brief Drop an instance from the global store of dispatchable instances.
98+
* @brief Drop an instance from the global store of dispatchable instances.
9999
*
100100
* This must be called before the driver VkInstance has been destroyed, as
101101
* we deference the native instance handle to get the dispatch key.
102102
*
103-
* \param handle The dispatchable instance handle to use as an indirect lookup.
103+
* @param handle The dispatchable instance handle to use as an indirect lookup.
104104
*
105-
* \return Returns the ownership of the Instance object to the caller.
105+
* @return Returns the ownership of the Instance object to the caller.
106106
*/
107107
static std::unique_ptr<Instance> destroy(
108108
VkInstance handle);

layer_gpu_profile/source/device.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,14 @@ class Device
118118
static Device* retrieve(VkCommandBuffer handle);
119119

120120
/**
121-
* \brief Drop a device from the global store of dispatchable devices.
121+
* @brief Drop a device from the global store of dispatchable devices.
122122
*
123123
* This must be called before the driver VkDevice has been destroyed, as
124124
* we deference the native device handle to get the dispatch key.
125125
*
126-
* \param handle The dispatchable device handle to use as an indirect lookup.
126+
* @param handle The dispatchable device handle to use as an indirect lookup.
127127
*
128-
* \return Returns the ownership of the Device object to the caller.
128+
* @return Returns the ownership of the Device object to the caller.
129129
*/
130130
static std::unique_ptr<Device> destroy(
131131
VkDevice handle);

layer_gpu_profile/source/instance.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,14 @@ class Instance
9696
static Instance* retrieve(VkPhysicalDevice handle);
9797

9898
/**
99-
* \brief Drop an instance from the global store of dispatchable instances.
99+
* @brief Drop an instance from the global store of dispatchable instances.
100100
*
101101
* This must be called before the driver VkInstance has been destroyed, as
102102
* we deference the native instance handle to get the dispatch key.
103103
*
104-
* \param handle The dispatchable instance handle to use as an indirect lookup.
104+
* @param handle The dispatchable instance handle to use as an indirect lookup.
105105
*
106-
* \return Returns the ownership of the Instance object to the caller.
106+
* @return Returns the ownership of the Instance object to the caller.
107107
*/
108108
static std::unique_ptr<Instance> destroy(
109109
VkInstance handle);

layer_gpu_support/source/device.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,14 +111,14 @@ class Device
111111
static Device* retrieve(VkCommandBuffer handle);
112112

113113
/**
114-
* \brief Drop a device from the global store of dispatchable devices.
114+
* @brief Drop a device from the global store of dispatchable devices.
115115
*
116116
* This must be called before the driver VkDevice has been destroyed, as
117117
* we deference the native device handle to get the dispatch key.
118118
*
119-
* \param handle The dispatchable device handle to use as an indirect lookup.
119+
* @param handle The dispatchable device handle to use as an indirect lookup.
120120
*
121-
* \return Returns the ownership of the Device object to the caller.
121+
* @return Returns the ownership of the Device object to the caller.
122122
*/
123123
static std::unique_ptr<Device> destroy(
124124
VkDevice handle);

layer_gpu_support/source/instance.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ class Instance
9595
static Instance* retrieve(VkPhysicalDevice handle);
9696

9797
/**
98-
* \brief Drop an instance from the global store of dispatchable instances.
98+
* @brief Drop an instance from the global store of dispatchable instances.
9999
*
100100
* This must be called before the driver VkInstance has been destroyed, as
101101
* we deference the native instance handle to get the dispatch key.
102102
*
103-
* \param handle The dispatchable instance handle to use as an indirect lookup.
103+
* @param handle The dispatchable instance handle to use as an indirect lookup.
104104
*
105-
* \return Returns the ownership of the Instance object to the caller.
105+
* @return Returns the ownership of the Instance object to the caller.
106106
*/
107107
static std::unique_ptr<Instance> destroy(
108108
VkInstance handle);

layer_gpu_timeline/source/device.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,14 @@ class Device
113113
static Device* retrieve(VkCommandBuffer handle);
114114

115115
/**
116-
* \brief Drop a device from the global store of dispatchable devices.
116+
* @brief Drop a device from the global store of dispatchable devices.
117117
*
118118
* This must be called before the driver VkDevice has been destroyed, as
119119
* we deference the native device handle to get the dispatch key.
120120
*
121-
* \param handle The dispatchable device handle to use as an indirect lookup.
121+
* @param handle The dispatchable device handle to use as an indirect lookup.
122122
*
123-
* \return Returns the ownership of the Device object to the caller.
123+
* @return Returns the ownership of the Device object to the caller.
124124
*/
125125
static std::unique_ptr<Device> destroy(
126126
VkDevice handle);

0 commit comments

Comments
 (0)