Cargando…

Learning Vulkan.

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Singh, Parminder
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Publishing, 2016.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000Mu 4500
001 EBOOKCENTRAL_ocn974589557
003 OCoLC
005 20240329122006.0
006 m o d
007 cr |||||||||||
008 170304s2016 enk o 000 0 eng d
040 |a EBLCP  |b eng  |e pn  |c EBLCP  |d COO  |d VT2  |d MERUC  |d OCLCQ  |d REB  |d OCLCQ  |d LVT  |d OCLCO  |d OCLCF  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCO  |d REDDC  |d K6U  |d OCLCA  |d OCLCQ  |d OCLCO  |d OCLCL 
019 |a 972596734  |a 974351315 
020 |a 9781786460844 
020 |a 178646084X 
020 |a 9781786469809 
020 |a 1786469804 
035 |a (OCoLC)974589557  |z (OCoLC)972596734  |z (OCoLC)974351315 
050 4 |a T385.S564 2016 
082 0 4 |a 006.6  |2 23 
049 |a UAMI 
100 1 |a Singh, Parminder. 
245 1 0 |a Learning Vulkan. 
260 |a Birmingham :  |b Packt Publishing,  |c 2016. 
300 |a 1 online resource (457 pages) 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
588 0 |a Print version record. 
505 0 |a Cover; Copyright; Credits; About the Author; Acknowledgments; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Started with the NextGen 3D Graphics API; Vulkan and its evolution; Vulkan versus OpenGL; Important jargons before we get started; Learning the fundamentals of Vulkan; Vulkan's execution model; Vulkan's queues; The object model; Object lifetime and command syntax; Error checking and validation; Understanding the Vulkan application; Driver; Application; WSI; SPIR-V; LunarG SDK; Getting started with the Vulkan programming model. 
505 8 |a Hardware initializationWindow presentation surfaces; Resource setup; Pipeline setup; Descriptor sets and descriptor pools; Shaders with SPIR-V; Pipeline management; Recording commands; Queue submission; Summary; Chapter 2: Your First Vulkan Pseudo Program; Installing Vulkan; The Hello World!!! pseudocode; Initialization -- a handshake with the device; Swapchain initialization -- querying the WSI extension; Command buffer initialization -- allocating command buffers; Resource objects -- managing images and buffers; Creating a presentation surface -- creating a swapchain; Creating a depth image. 
505 8 |a Resource allocation -- allocating and binding device memorySupplying shaders -- shader compilation into SPIR-V; Building layouts -- descriptor and pipeline layouts; Creating a Render Pass -- defining a pass attribute; Framebuffer -- connect drawing images to the Render Pass; Populating geometry -- storing a vertex into GPU memory; Pipeline state management -- creating pipelines; Defining states; Creating a graphics pipeline; Executing the Render Pass -- drawing Hello World!!!; Acquiring the drawing surface; Preparing the Render Pass control structure; Render Pass execution. 
505 8 |a Queue submission and synchronization -- sending jobsDisplaying with presentation layer -- rendering a triangle; Fitting it all together; Summary; Chapter 3: Shaking Hands with the Device; Getting started with the LunarG SDK; Setting up our first project with CMake; How to build the CMake file; Introduction to extensions; Querying layers and extensions; Creating a Vulkan instance; Enabling layers and extensions; Testing the enabled layers and extensions; Understanding physical and logical devices; Physical devices; Enumerating physical devices; Querying physical device extensions. 
505 8 |a Getting the properties of a physical deviceInterrogating memory properties from the physical device; Logical device; Creating a logical device; Waiting on the host; Losing the device; Understanding queues and queue families; Querying queue families; Storing the graphics queue handle; Creating a queue; Implementing devices and queues all together; Summary; Chapter 4: Debugging in Vulkan; Peeking into Vulkan debugging; Understanding LunarG validation layers and their features; Implementing debugging in Vulkan; Summary; Chapter 5: Command Buffer and Memory Management in Vulkan. 
500 |a Getting started with command buffers. 
520 8 |a Annotation  |b Discover how to build impressive 3D graphics with the next-generation graphics APIVulkanAbout This Book Get started with the Vulkan API and its programming techniques using the easy-to-follow examples to create stunning 3D graphics Understand memory management in Vulkan and implement image and buffer resources Get hands-on with the drawing process and synchronization, and render a 3D graphics scene with the Vulkan graphics pipelineWho This Book Is ForThis book is ideal for graphic programmers who want to get up and running with Vulkan. It's also great for programmers who have experience with OpenGL and other graphic APIs who want to take advantage of next generation APIs. A good knowledge of C/C++ is expected. What You Will Learn Learn fundamentals of Vulkan programing model to harness the power of modern GPU devices. Implement device, command buffer and queues to get connected with the physical hardware. Explore various validation layers and learn how to use it for debugging Vulkan application. Get a grip on memory management to control host and device memory operations. Understand and implement buffer and image resource types in Vulkan. Define drawing operations in the Render pass and implement graphics pipeline. Manage GLSL shader using SPIR-V and update the shader resources with descriptor sets and push constants. Learn the drawing process, manage resources with synchronization objects and render 3D scene output on screen with Swapchain. Bring realism to your rendered 3D scene with textures, and implement linear and optimal texturesIn DetailVulkan, the next generation graphics and compute API, is the latest offering by Khronos. This API is the successor of OpenGL and unlike OpenGL, it offers great flexibility and high performance capabilities to control modern GPU devices. With this book, you'll get great insights into the workings of Vulkan and how you can make stunning graphics run with minimum hardware requirements. We begin with a brief introduction to the Vulkan system and show you its distinct features with the successor to the OpenGL API. First, you will see how to establish a connection with hardware devices to query the available queues, memory types, and capabilities offered. Vulkan is verbose, so before diving deep into programing, you'll get to grips with debugging techniques so even first-timers can overcome error traps using Vulkan's layer and extension features. You'll get a grip on command buffers and acquire the knowledge to record various operation commands into command buffer and submit it to a proper queue for GPU processing. We'll take a detailed look at memory management and demonstrate the use of buffer and image resources to create drawing textures and image views for the presentation engine and vertex buffers to store geometry information. You'll get a brief overview of SPIR-V, the new way to manage shaders, and you'll define the drawing operations as a single unit of work in the Render pass with the help of attachments and subpasses. You'll also create frame buffers and build a solid graphics pipeline, as well as making use of the synchronizing mechanism to manage GPU and CPU hand-shaking. By the end, you'll know everything you need to know to get your hands dirty with the coolest Graphics API on the block. Style and approachThis book takes a practical approach to guide you through the Vulkan API, and you will get to build an application throughout the course of the book. Since you are expected to be familiar with C/C++, there is not much hand-holding throughout the course of the book. 
590 |a ProQuest Ebook Central  |b Ebook Central Academic Complete 
650 0 |a Three-dimensional modeling. 
650 6 |a Modélisation tridimensionnelle. 
650 7 |a Three-dimensional modeling  |2 fast 
758 |i has work:  |a Learning Vulkan (Text)  |1 https://id.oclc.org/worldcat/entity/E39PCFJGxJtfPMrHmDJXWW9jyd  |4 https://id.oclc.org/worldcat/ontology/hasWork 
776 0 8 |i Print version:  |a Singh, Parminder.  |t Learning Vulkan.  |d Birmingham : Packt Publishing, ©2016 
856 4 0 |u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=4771311  |z Texto completo 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL4771311 
994 |a 92  |b IZTAP