일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 컴퓨터 아키텍쳐
- Geometry Modeling
- OpenGL
- denoising
- 윈도우 구조
- 베지에 곡선
- MFC
- 윈도우
- Graphics
- 핵심 API로 배우는 윈도우프로그래밍
- bezier curve
- win32
- modeling
- MFC 윈도우 프로그래밍
- 컴퓨터 구조
- 그래픽스
- 운영체제
- 오픈지엘
- shader programming
- 윈도우 프로그래밍
- 셰이더
- shader
- 윈도우프로그래밍
- Mesh Processing
- 셰이더프로그래밍
- 그래픽스기초
- window programming
- Win32 API
- c4d
- 렌더링
- Today
- Total
목록win32 (77)
오다기리 박의 알고리즘 노트
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105#include #include#include#include"resource.h"#include//#pragma comment(linker,"/entry:WinMainCRTStartup /subsystem:console")LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARA..
9. 윈도우 소켓 프로그래밍 ■ 소켓 연결하기- 소켓 : IP주소와 포트번호로 이루어진 컴퓨터 통신의 끝점. 표준화된 인터페이스를 제공 ⠂소켓 프로그래밍을 위한 구조체- 윈도우 소켓 초기화 정보를 가지고 있는 구조체typedef struct WSAData { WORD wVersion; WORD wHighVersion; char szDescription[WSADESCRIPTION_LEN+1]; char szSystemStatus[WSASYS_STATUS_LEN+1]; unsigned short iMaxSockets; unsigned short iMaxUdpDg; char FAR * lpVendorInfo;};- 소켓을 연결할 대상의 주소를 쓰는 구조체struct sockaddr_in { short sin_..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107#include #include#include#include#include#include"resource.h"//#pragma comment(linker,"/entry:WinMainCRTStartup /subsystem:console")LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125#include #include#include#include#include"resource.h"#include//#pragma comment(linker,"/entry:WinMainCRTStartup /subsystem:console"..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136#include #include#include#include//#include"resource.h"//#pragma comment(linker,"/entry:WinMainCRT..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136#include #include#include#include//#include"resource.h"//#pragma comment(linker,"/entry:WinMainCRT..
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113#include #include#include#include//#pragma comment(linker,"/entry:WinMainCRTStartup /subsystem:console")LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, L..