Difference between revisions of "Hardware 3D (C++ DirectX Graphics) Tutorial 7"

From Chilipedia
Jump to: navigation, search
(Created page with "You gotta check your goddamn error codes. Also, adding custom icons for your apps is sexy shit. == Topics Covered == * Exception throwing/handling system for API errors * For...")
 
(Video Timestamp Index)
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
== Topics Covered ==
 
== Topics Covered ==
 
* Exception throwing/handling system for API errors
 
* Exception throwing/handling system for API errors
* FormatMessage for get descriptions of HRESULTs
+
* <code>FormatMessage</code> for get descriptions of <code>HRESULT</code>s
 
* Custom window/application icons
 
* Custom window/application icons
  
 
== Video Timestamp Index ==
 
== Video Timestamp Index ==
[https://youtu.be/D-PC-huX-l8 Tutorial 7]
+
[https://youtu.be/QYGLXhulvVQ Tutorial 7]
  
 
== Errata ==
 
== Errata ==
The error check for the window rect adjustment function is not correct (the FAILED macro is not appropriate here). This will be addressed in a future video.
+
The error check for the window rect adjustment function is not correct (the <code>FAILED</code> macro is not appropriate here). This will be addressed in a future video.
  
 
== Source Code ==
 
== Source Code ==

Latest revision as of 23:26, 18 January 2019

You gotta check your goddamn error codes. Also, adding custom icons for your apps is sexy shit.

Topics Covered

  • Exception throwing/handling system for API errors
  • FormatMessage for get descriptions of HRESULTs
  • Custom window/application icons

Video Timestamp Index

Tutorial 7

Errata

The error check for the window rect adjustment function is not correct (the FAILED macro is not appropriate here). This will be addressed in a future video.

Source Code

See also