일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 딥러닝
- 혼공
- 컴퓨터그래픽스
- 불칸
- 제이펍
- 자바스크립트
- 혼공C
- 혼공컴운
- 혼공단5기
- 파이썬
- 한빛미디어
- 혼공학습단
- 데이터분석
- 혼공네트
- 네트워크
- C++
- 머신러닝
- 나는리뷰어다
- 책리뷰
- 리뷰리뷰
- 혼자공부하는네트워크
- 혼자공부하는C언어
- OpenGL
- 벌칸
- vulkan
- 혼공머신
- 혼공스
- tutorial
- 혼공S
- 혼공단
- Today
- Total
목록불칸 (5)
Scientia Conditorium
원문 : Validation layers - Vulkan Tutorial (vulkan-tutorial.com) [Vulkan006][번역] Vulkan Tutorial - 삼각형 그리기 유효성 검사(Drawing a triangle - Validation layers) Validation layers - Vulkan Tutorial What are validation layers? The Vulkan API is designed around the idea of minimal driver overhead and one of the manifestations of that goal is that there is very limited error checking in the API by default. E..
[Vulkan][오류] VUID-vkGetDeviceQueue-queueFamilyIndex 오류 Vulkan 프로그램 초기화하는 도중에 vkGetDeviceQueue 함수에서 에러가 발생하였다. validation layer: Validation Error: [ VUID-vkGetDeviceQueue-queueFamilyIndex-00384 ] | MessageID = 0x99bbdd45 | vkGetDeviceQueue(): queueFamilyIndex (0) is not one of the queue families given via VkDeviceQueueCreateInfo structures when the device was created. The Vulkan spec states: queu..
[Vulkan][오류] Validation Error : VUIT-vkDestroyInstance 오류 Vulkan 프로그램을 종료할 때 리소스를 정리하는 과정에서 아래와 같은 오류가 나왔다. validation layer: Validation Error: [ VUID-vkDestroyInstance-instance-00629 ] Object 0: handle = 0x1ecbcf2ed00, type = VK_OBJECT_TYPE_INSTANCE; Object 1: handle = 0xfd5b260000000001, type = VK_OBJECT_TYPE_DEBUG_UTILS_MESSENGER_EXT; | MessageID = 0x8b3d8e18 | vkDestroyInstance(): OBJ ERROR ..
원문 : https://vulkan-tutorial.com/Drawing_a_triangle/Setup/Base_code [Vulkan004][번역] Vulkan Tutorial - 삼각형 그리기 기본 코드(Drawing a triangle - Base code) Base code - Vulkan Tutorial General structure In the previous chapter you've created a Vulkan project with all of the proper configuration and tested it with the sample code. In this chapter we're starting from scratch with the following code: #inclu..
원문 : https://vulkan-tutorial.com/Development_environment [Vulkan003][번역] Vulkan Tutorial - 개발 환경(Development environment) Development environment - Vulkan Tutorial In this chapter we'll set up your environment for developing Vulkan applications and install some useful libraries. All of the tools we'll use, with the exception of the compiler, are compatible with Windows, Linux and MacOS, but the ..