File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22click == 7.1.2
33
44# Dev dependencies
5- black == 19.10b0
5+ black == 26.3.1
66quom == 1.2.0
77Sphinx == 3.2.1
88sphinx_material == 0.0.30
Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ class Algorithm
291291
292292 void destroy ();
293293
294- private :
294+ protected :
295295 // -------------- NEVER OWNED RESOURCES
296296 std::shared_ptr<vk::Device> mDevice ;
297297 std::vector<std::shared_ptr<Memory>> mMemObjects ;
@@ -310,6 +310,7 @@ class Algorithm
310310 std::shared_ptr<vk::Pipeline> mPipeline ;
311311 bool mFreePipeline = false ;
312312
313+ private:
313314 // -------------- ALWAYS OWNED RESOURCES
314315 void * mSpecializationConstantsData = nullptr ;
315316 uint32_t mSpecializationConstantsDataTypeMemorySize = 0 ;
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ class Sequence : public std::enable_shared_from_this<Sequence>
276276 */
277277 void destroy ();
278278
279- private :
279+ protected :
280280 // -------------- NEVER OWNED RESOURCES
281281 std::shared_ptr<vk::PhysicalDevice> mPhysicalDevice = nullptr ;
282282 std::shared_ptr<vk::Device> mDevice = nullptr ;
@@ -298,6 +298,7 @@ class Sequence : public std::enable_shared_from_this<Sequence>
298298 bool mRecording = false ;
299299 bool mIsRunning = false ;
300300
301+ private:
301302 // Create functions
302303 void createCommandPool ();
303304 void createCommandBuffer ();
You can’t perform that action at this time.
0 commit comments