├── LICENSE ├── README.md ├── base_texture_windows.go ├── color_windows.go ├── constants_windows.go ├── cube_texture_windows.go ├── device_windows.go ├── direct3d9_windows.go ├── enums_windows.go ├── error_windows.go ├── go.mod ├── index_buffer_windows.go ├── macros_windows.go ├── pixel_shader_windows.go ├── query_windows.go ├── resource_windows.go ├── samples ├── display_info │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── main.go ├── fullscreen │ ├── README.md │ ├── build.bat │ ├── go.mod │ ├── go.sum │ └── main.go ├── glow │ ├── build.bat │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── readme.md ├── readme.md ├── rotating_quad │ ├── build.bat │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── readme.md ├── screenshot │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── main.go └── static_triangle │ ├── build.bat │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── readme.md ├── state_block_windows.go ├── surface_windows.go ├── swap_chain_windows.go ├── texture_windows.go ├── types_windows.go ├── vertex_buffer_windows.go ├── vertex_declaration_windows.go ├── vertex_shader_windows.go ├── volume_texture_windows.go └── volume_windows.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/README.md -------------------------------------------------------------------------------- /base_texture_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/base_texture_windows.go -------------------------------------------------------------------------------- /color_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/color_windows.go -------------------------------------------------------------------------------- /constants_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/constants_windows.go -------------------------------------------------------------------------------- /cube_texture_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/cube_texture_windows.go -------------------------------------------------------------------------------- /device_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/device_windows.go -------------------------------------------------------------------------------- /direct3d9_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/direct3d9_windows.go -------------------------------------------------------------------------------- /enums_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/enums_windows.go -------------------------------------------------------------------------------- /error_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/error_windows.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/gonutz/d3d9 2 | 3 | go 1.11 4 | -------------------------------------------------------------------------------- /index_buffer_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/index_buffer_windows.go -------------------------------------------------------------------------------- /macros_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/macros_windows.go -------------------------------------------------------------------------------- /pixel_shader_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/pixel_shader_windows.go -------------------------------------------------------------------------------- /query_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/query_windows.go -------------------------------------------------------------------------------- /resource_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/resource_windows.go -------------------------------------------------------------------------------- /samples/display_info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/display_info/README.md -------------------------------------------------------------------------------- /samples/display_info/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/display_info/go.mod -------------------------------------------------------------------------------- /samples/display_info/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/display_info/go.sum -------------------------------------------------------------------------------- /samples/display_info/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/display_info/main.go -------------------------------------------------------------------------------- /samples/fullscreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/fullscreen/README.md -------------------------------------------------------------------------------- /samples/fullscreen/build.bat: -------------------------------------------------------------------------------- 1 | go build -ldflags -H=windowsgui -------------------------------------------------------------------------------- /samples/fullscreen/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/fullscreen/go.mod -------------------------------------------------------------------------------- /samples/fullscreen/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/fullscreen/go.sum -------------------------------------------------------------------------------- /samples/fullscreen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/fullscreen/main.go -------------------------------------------------------------------------------- /samples/glow/build.bat: -------------------------------------------------------------------------------- 1 | go build -ldflags -H=windowsgui -------------------------------------------------------------------------------- /samples/glow/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/glow/go.mod -------------------------------------------------------------------------------- /samples/glow/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/glow/go.sum -------------------------------------------------------------------------------- /samples/glow/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/glow/main.go -------------------------------------------------------------------------------- /samples/glow/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/glow/readme.md -------------------------------------------------------------------------------- /samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/readme.md -------------------------------------------------------------------------------- /samples/rotating_quad/build.bat: -------------------------------------------------------------------------------- 1 | go build -ldflags -H=windowsgui -------------------------------------------------------------------------------- /samples/rotating_quad/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/rotating_quad/go.mod -------------------------------------------------------------------------------- /samples/rotating_quad/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/rotating_quad/go.sum -------------------------------------------------------------------------------- /samples/rotating_quad/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/rotating_quad/main.go -------------------------------------------------------------------------------- /samples/rotating_quad/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/rotating_quad/readme.md -------------------------------------------------------------------------------- /samples/screenshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/screenshot/README.md -------------------------------------------------------------------------------- /samples/screenshot/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/screenshot/go.mod -------------------------------------------------------------------------------- /samples/screenshot/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/screenshot/go.sum -------------------------------------------------------------------------------- /samples/screenshot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/screenshot/main.go -------------------------------------------------------------------------------- /samples/static_triangle/build.bat: -------------------------------------------------------------------------------- 1 | go build -ldflags -H=windowsgui -------------------------------------------------------------------------------- /samples/static_triangle/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/static_triangle/go.mod -------------------------------------------------------------------------------- /samples/static_triangle/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/static_triangle/go.sum -------------------------------------------------------------------------------- /samples/static_triangle/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/static_triangle/main.go -------------------------------------------------------------------------------- /samples/static_triangle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/samples/static_triangle/readme.md -------------------------------------------------------------------------------- /state_block_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/state_block_windows.go -------------------------------------------------------------------------------- /surface_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/surface_windows.go -------------------------------------------------------------------------------- /swap_chain_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/swap_chain_windows.go -------------------------------------------------------------------------------- /texture_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/texture_windows.go -------------------------------------------------------------------------------- /types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/types_windows.go -------------------------------------------------------------------------------- /vertex_buffer_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/vertex_buffer_windows.go -------------------------------------------------------------------------------- /vertex_declaration_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/vertex_declaration_windows.go -------------------------------------------------------------------------------- /vertex_shader_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/vertex_shader_windows.go -------------------------------------------------------------------------------- /volume_texture_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/volume_texture_windows.go -------------------------------------------------------------------------------- /volume_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonutz/d3d9/HEAD/volume_windows.go --------------------------------------------------------------------------------