first commit
This commit is contained in:
1000
Gl_template.c
Normal file
1000
Gl_template.c
Normal file
File diff suppressed because it is too large
Load Diff
14
Makefile
Normal file
14
Makefile
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
CC=gcc
|
||||||
|
CFLAGS=-I.
|
||||||
|
DEPS = -lopengl32 -lglu32 -lgdi32
|
||||||
|
OUTPUT = szescian.exe
|
||||||
|
|
||||||
|
default:
|
||||||
|
$(CC) -g *.c $(DEPS) -static -o $(OUTPUT)
|
||||||
|
cp /usr/bin/msys-2.0.dll .
|
||||||
|
|
||||||
|
run: default
|
||||||
|
./$(OUTPUT)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm $(OUTPUT) msys-2.0.dll
|
||||||
35
RESOURCE.H
Normal file
35
RESOURCE.H
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
//{{NO_DEPENDENCIES}}
|
||||||
|
// Microsoft Developer Studio generated include file.
|
||||||
|
// Used by resource.rc
|
||||||
|
//
|
||||||
|
#define IDR_MENU 101
|
||||||
|
#define IDD_DIALOG_ABOUT 102
|
||||||
|
#define IDR_TOOLBAR1 104
|
||||||
|
#define IDC_OPENGL_VENDOR 1000
|
||||||
|
#define IDC_OPENGL_RENDERER 1001
|
||||||
|
#define IDC_OPENGL_VERSION 1002
|
||||||
|
#define IDC_OPENGL_EXTENSIONS 1003
|
||||||
|
#define IDC_GLU_VERSION 1005
|
||||||
|
#define IDC_GLU_EXTENSIONS 1006
|
||||||
|
#define IDC_ERROR1 1007
|
||||||
|
#define IDC_ERROR2 1008
|
||||||
|
#define IDC_ERROR3 1009
|
||||||
|
#define IDC_ERROR4 1010
|
||||||
|
#define IDC_ERROR5 1011
|
||||||
|
#define IDC_ERROR6 1012
|
||||||
|
#define ID_FILE_EXIT 40001
|
||||||
|
#define ID_HELP_ABOUT 40002
|
||||||
|
#define ID_BUTTON40003 40003
|
||||||
|
#define ID_LIGHTING_SUNLIGHT 40004
|
||||||
|
#define ID_LIGHTING_AMBIENTLIGHT 40005
|
||||||
|
|
||||||
|
// Next default values for new objects
|
||||||
|
//
|
||||||
|
#ifdef APSTUDIO_INVOKED
|
||||||
|
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||||
|
#define _APS_NEXT_RESOURCE_VALUE 106
|
||||||
|
#define _APS_NEXT_COMMAND_VALUE 40006
|
||||||
|
#define _APS_NEXT_CONTROL_VALUE 1013
|
||||||
|
#define _APS_NEXT_SYMED_VALUE 101
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
Reference in New Issue
Block a user