Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Cell Look
- Windows Build
- VR
- 3d
- Specular
- Toon Shader
- ColorGradingLutPass
- AppSW
- Virtual Byte
- URP
- Three(Two) Tone Shading
- 작업 집합
- Cell Shader
- Rim Light
- 메모리 누수
- C언어
- Cartoon Rendering
- 프로그래밍 기초
- 벡터
- 가상 바이트
- 게임 수학
- OculusMotionVectorPass
- 개인 바이트
- ASW(Application SpaceWarp)
- URP로 변경
- Private Bytes
- working set
Archives
- Today
- Total
WinCNT
배열 포인트와 _countof(혹은 ARRAYSIZE) 본문
배열 포인트의 선언
int _tmp[10];
int(&_refTem)[10] = _tmp;
응용하면 _countof 혹은 ARRAYSIZE와 같은 같은 외계인 코드도 쓸 수 있다...
https://stackoverflow.com/questions/4064134/arraysize-c-macro-how-does-it-work
https://zetawiki.com/wiki/C%2B%2B_ARRAYSIZE()
http://1st.gamecodi.com/board/zboard.php?id=GAMECODI_Talkdev&no=1634
'게임 프로그래밍(학습 내용 정리) > Modern C++' 카테고리의 다른 글
스마트 포인터 - unique_ptr (0) | 2022.04.21 |
---|---|
스마트 포인터 (0) | 2022.04.14 |
decltype과 Value Category(lvalue, rvalue, xvalue) (0) | 2022.03.24 |
범위 기반 for문 (0) | 2022.03.24 |
Modern C++ - Auto (0) | 2022.03.24 |