Directx 11 with rastertek

Tutorial 2: Creating a Framework and Window 연습문제

코다람쥐 2022. 9. 2. 16:27

참고로 Tutorial 1의 연습문제는 msdn을 살펴보는 것이기 때문에 Tutorial 2부터 시작.

 

원본 사이트

https://www.rastertek.com/tutindex.html

 

Tutorial Index

DirectX 11 Terrain Tutorials - Series 2

www.rastertek.com

 

번역 블로그

https://ppparkje.tistory.com/category/%EA%B0%95%EC%A2%8C%EB%B2%88%EC%97%AD/DirectX%2011

 

'강좌번역/DirectX 11' 카테고리의 글 목록

삽질로그 + 공부

ppparkje.tistory.com

 

To Do Exercises

1. Change the FULL_SCREEN parameter to true in the graphicsclass.h header then recompile and run the program. Press the escape key to quit after the window displays.


 

FULL_SCREEN이 false인 경우

 

graphicsclass.h

const bool FULL_SCREEN = true;

FULL_SCREEN = true

FULL_SCREEN 전역변수를 true로 설정하면 실행 시 프로그램이 화면을 가득채우게 된다.