Cross-platform graphics engine, GameDev, 3D, C++, Android, Windows, OpenGL ES, Visual Studio, Android Studio Well, it’s a big topic. I’d even say HUGE. Here we’ll need to decide how to build and render our scene/models, where we’ll get our 3D models from, how we’ll load, unpack and control them, which and how many shaders we […]
Chapter 7. External files, Android assets
The idea is the same as in previous chapter – to place the data files within the reach of the executable. However, in Android’s case we are dealing NOT with the “executable”, but with APK. Besides, we have to deliver data files not just to different folder, but to different device. We can do that […]
Chapter 6. External files, Windows
Now, having a cross-platform solution, we can start thinking about our Graphics Engine. However, the first question will be not about graphics, but how we gonna handle data files (like shaders, models, textures and so on)? For example, currently our triangle model (verts array) and 2 shaders (1 vertex and 1 fragment) are hardcoded in […]
Chapter 5. Hello Cross-platform!!
Android Studio, C++, OpenGL ES, cross-platform Now we will try to run TheApp spinning triangle sample on Android. For this we’ll need: Didn’t find how to add classes/files outside of cpp folder in Android Studio, so let’s do it manually. 1. In Windows File Explorer create a new folder C:/CPP/p_android 2. In a text editor […]
OpenGL: Where is the front, where is the back?
For 3D modeling, this is actually a non-trivial question. When we talk about humans, our natural assumption is that “right” is relative to the back, not the front. For example, what is to the right of your face is actually your left hand: The same logic applies to cars: the “right” side is determined from […]
Chapter 4. Platform independence
Visual Studio, C++, OpenGL ES, cross-platform In the previous 2 chapters, we have successfully “married” Android and C++, Windows and OpenGL ES. Now, having 2 C++/GLES projects for 2 different platforms, let’s see what is common and what is not. The difference actually looks frightening, seems like nothing matches… Except C++ and GL syntax, which […]
GitHub
How to download repository from GitHub 1. Open provided GitHub repository link, for example (like in chapter 3) https://github.com/bkantemir/_wg_403 2. Click green button “Code”. 3. I usually use “Download ZIP”. 4. When downloaded, go to your Downloads folder and unpack downloaded zip file to your hard drive (usually C:). 5. Since in my case all […]
Chapter 3. Hello Windows
Visual Studio, Windows, C++, OpenGL ES, GLFW, GLAD Using OpenGL ES on the PC is less straight forward than on Android. The reason is that GL ES is intended for mobile devices, NOT for desktops. Fortunately, solutions exist. OpenGL producers strongly advise to use a window toolkit (GLFW) and an OpenGL loading libraries (GLAD). Well, […]
Chapter 2. Hello Android
Android Studio, Native Activity, Game Activity, C++, OpenGL ES Default Android languages are Java and Kotlin. In order to use C++ we’ll need so called NativeActivity. Start Android Studio. Pick New Project. Scroll down, select Game Activity (C++) which is a direct descendant of NativeActivity and shares a similar architecture. It’s a Jetpack library designed […]
Chapter 1. Setting up the workspace
Visual Studio, Android Studio, project basic structure First step is to prepare a placeholder for our project. *VERY IMPORTANT part missing from most guides is how to organize your folders. So, first – root folder, where we’ll keep all our projects plus all reusable stuff, such as graphics engine, etc. I’ll call it “CPP” (for C++). […]




