Change webclient hosting documentation to clarify scope a bit better

This commit is contained in:
UnknownShadow200 2021-11-10 17:39:20 +11:00
parent 29d50596fd
commit 7db720f10f
3 changed files with 9 additions and 2 deletions

View File

@ -1,4 +1,6 @@
The website will be structured like so:
The page provides a complete example for how to integrate the webclient into a simple website
The example website will be structured like so:
```
websrv.py

View File

@ -73,7 +73,7 @@ You are required to have this HTML code somewhere in the page:
### Complete example
The links below show implementing a simple website that hosts the web client
The links below show how to integrate the webclient into a simple website
* [Flask (python webserver)](hosting-flask.md)
### iOS / Android support

View File

@ -519,6 +519,11 @@ static void APIENTRY fake_vertexPointer(GLint size, GLenum type, GLsizei stride,
}
static void OpenGL11Fallback(void) {
Window_ShowDialog("Performance warning",
"Your system only supports only OpenGL 1.1\n" \
"This is usually caused by graphics drivers not being installed\n\n" \
"As such you will likely experience very poor performance");
_glBindBuffer = fake_bindBuffer; _glDeleteBuffers = fake_deleteBuffers;
_glGenBuffers = fake_genBuffers; _glBufferData = fake_bufferData;
_glBufferSubData = fake_bufferSubData;