filmov
tv
OpenGL setup: GLFW and GLAD in Visual Studio Code on macOS
![preview_player](https://i.ytimg.com/vi/7-dL6a5_B3I/maxresdefault.jpg)
Показать описание
Contents of the video:
00:00 Intro
01:00 GLFW download and project setup
03:03 VS Code default build task configuration
06:46 Glad download
——————————————————————————————————————————————————
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: clang++ build active file",
"command": "/usr/bin/clang++",
"args": [
"-std=c++17",
"-fdiagnostics-color=always",
"-Wall",
"-g",
"-I${workspaceFolder}/dependencies/include",
"-L${workspaceFolder}/dependencies/library",
"${workspaceFolder}/*.cpp",
"${workspaceFolder}/glad.c",
"-o",
"${workspaceFolder}/app",
"-framework",
"OpenGL",
"-framework",
"Cocoa",
"-framework",
"IOKit",
"-framework",
"CoreVideo",
"-framework",
"CoreFoundation",
"-Wno-deprecated"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": ["$gcc"],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "compiler: /usr/bin/clang++"
}
]
}
00:00 Intro
01:00 GLFW download and project setup
03:03 VS Code default build task configuration
06:46 Glad download
——————————————————————————————————————————————————
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: clang++ build active file",
"command": "/usr/bin/clang++",
"args": [
"-std=c++17",
"-fdiagnostics-color=always",
"-Wall",
"-g",
"-I${workspaceFolder}/dependencies/include",
"-L${workspaceFolder}/dependencies/library",
"${workspaceFolder}/*.cpp",
"${workspaceFolder}/glad.c",
"-o",
"${workspaceFolder}/app",
"-framework",
"OpenGL",
"-framework",
"Cocoa",
"-framework",
"IOKit",
"-framework",
"CoreVideo",
"-framework",
"CoreFoundation",
"-Wno-deprecated"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": ["$gcc"],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "compiler: /usr/bin/clang++"
}
]
}
Setup OpenGL with GLFW and GLAD
Setting up OpenGL: GLFW and GLAD libraries
C++ OpenGL setup for VSCode in 2min
Setup OpenGL in Visual Studio 2022 for C/C++ Development
OpenGL setup: GLFW and GLAD in Visual Studio Code on macOS
Setting up an OpenGL Project in Ubuntu [VSCode, GLFW, GLAD, CMake]
How to install OpenGL for C++ (Windows)
The EASIEST way to setup OpenGL with Visual Studio. (CMake Setup for Gamedev)
Building a Game Engine from Ground Up | OpenGL and C++ | 3D Primitive Objects - Capsule
OpenGL Course - Create 3D and 2D Graphics With C++
OpenGL Tutorial 2 - Setup GLEW and GLFW in Visual Studio
OpenGL with C++ 1: Intro and Setup
OpenGL Session 1 Part 1 Setting up GLFW and glad
Platformer Game - OpenGL | GLFW | C++ Games
OpenGL Part 1 - NEW PROJECT SETUP - intro to glfw windowing, GL contexting, input callbacks
Setup GLAD version 2 (OpenGL) with GLFW3
Modern OpenGL (Glad) | Game Engine series
How to install OpenGL on Ubuntu 22.04
How to setup VS Code to run OpenGL code (Shorter Version)
C++ Modern OpenGL Tutorials : T2.5 Set Up Visual Studio, GLAD & GLFW
#2 Setting Up OpenGL In Visual Studio 2019 C++ | Install GLFW and GLAD
Setup of an OpenGL programming environment using GLFW & MinGW
Setup GLFW 3 in Codeblocks on Windows 10
How to setup GLFW on new Macs | GLFW
Комментарии