일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Replication
- Aegis
- gameplay tag
- gameplay effect
- ability task
- Unreal Engine
- level design
- 게임개발
- 언리얼엔진
- UI
- unity
- widget
- 언리얼 엔진
- listen server
- local prediction
- MAC
- 게임 개발
- attribute
- photon fusion2
- 유니티
- 보안
- rpc
- CTF
- stride
- animation
- os
- C++
- gas
- gameplay ability system
- Multiplay
Archives
- Today
- Total
목록DirectX 11 (2)
Replicated

https://github.com/Lagooneng/DirectX11Study GitHub - Lagooneng/DirectX11Study: DirectX11 공부DirectX11 공부. Contribute to Lagooneng/DirectX11Study development by creating an account on GitHub.github.com #pragma once#include "DirectXMath.h"using int8 = __int8;using int16 = __int16;using int32= __int32;using int64 = __int64;using uint8 = unsigned __int8;using uint16 = unsigned __int16;using uint32 = ..
DirectX 11
2025. 4. 7. 02:24
그래픽스 개요
GPU는 연산이 메인CPU와 차이? .. CPU는 ALU가 연산을 담당,GPU는 ALU가 엄청 많음. 하나하나는 성능이 그렇게 좋진 않은데 수로 밀어붙임CPU는 포괄적인 연산이 가능, 연산이 많은데 복잡하지 않은 건 GPU로 던짐 영화랑 다르게 게임은 실시간 렌더링 필요 렌더링 파이프라인(일부)Input-Assembler Stage- 기하학 정보 넘겨주기Vertex Shader Stage- 정점을 대상으로 연산Rasterizer Stage- 정점 내부 영역에 보간 작업Pixel Shader Stage- 색상 설정Output-Manager Stage- 우리 화면에 보여줌
DirectX 11
2025. 4. 6. 22:00