mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-08 14:56:12 -04:00
Change webclient hosting documentation to clarify scope a bit better
This commit is contained in:
parent
29d50596fd
commit
7db720f10f
@ -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
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user