Skip to content

Timeline layer: Add Python to setup documentation #97

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions layer_gpu_timeline/README_LAYER.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,17 @@ Tooling setup steps
environment variable.
* Install the Android NDK and set the `ANDROID_NDK_HOME` environment variable
to its installation path.
* The viewer uses Python 3.10 or newer, which can be downloaded from the
official Python website: https://www.python.org.
* The viewer uses PyGTK, and requires the native GTK3 libraries and PyGTK to be
installed. GTK installation instructions can be found on the official GTK
website:
https://www.gtk.org/docs/installations/
website: https://www.gtk.org/docs/installations.
* The Python viewer uses Google Protocol Buffers, which can be installed using
the Python 3 `pip` package installer.

```
python3 -m pip install protobuf
```

### Layer build

Expand Down
2 changes: 1 addition & 1 deletion layer_gpu_timeline/source/layer_device_functions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ template<>
VKAPI_ATTR void VKAPI_CALL layer_vkCmdEndRenderPass2<user_tag>(VkCommandBuffer commandBuffer,
const VkSubpassEndInfo* pSubpassEndInfo);

/* See Vulkan API for documentation. */
/* See Vulkan API for documentation. */
template<>
VKAPI_ATTR void VKAPI_CALL layer_vkCmdEndRenderPass2KHR<user_tag>(VkCommandBuffer commandBuffer,
const VkSubpassEndInfo* pSubpassEndInfo);
Expand Down