
.. _program_listing_file_Src_GraphicsEngineVulkan_ObjectDescription.hpp:

Program Listing for File ObjectDescription.hpp
==============================================

|exhale_lsh| :ref:`Return to documentation for file <file_Src_GraphicsEngineVulkan_ObjectDescription.hpp>` (``Src/GraphicsEngineVulkan/ObjectDescription.hpp``)

.. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS

.. code-block:: cpp

   #ifndef KATAGLYPHIS_VULKAN_OBJECT_DESCRIPTION_HPP
   #define KATAGLYPHIS_VULKAN_OBJECT_DESCRIPTION_HPP
   
   #ifdef __cplusplus
   #include <cstdint>
   #endif
   
   struct ObjectDescription
   {
       uint64_t vertex_address;
       uint64_t index_address;
       uint64_t material_index_address;
       uint64_t material_address;
   };
   
   #endif
