mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 05:40:05 +00:00
82995a8343
Windows shared memory: allow to use custom key. Improve GUI performance on Windows, submit letters in text as a batch (fewer draw-calls) quadruped.py: first try to connect to SHARED_MEMORY, if it fails (<0) use GUI increase Chrome about://tracing json export capacity (press 'p' in Example Browser) UDP physics server: add --port and --sharedMemoryKey command-line arguments PhysicsServerExample: add --sharedMemoryKey command-line option (for VR example too) ExampleBrowser: sleep a few milliseconds if rendering is too fast, use --minUpdateTimeMicroSecs=0 to disable
27 lines
528 B
C
27 lines
528 B
C
#ifndef PRIM_INTERNAL_DATA
|
|
#define PRIM_INTERNAL_DATA
|
|
|
|
#include "OpenGLInclude.h"
|
|
|
|
struct PrimInternalData
|
|
{
|
|
GLuint m_shaderProg;
|
|
GLint m_viewmatUniform;
|
|
GLint m_projMatUniform;
|
|
GLint m_positionUniform;
|
|
GLint m_colourAttribute;
|
|
GLint m_positionAttribute;
|
|
GLint m_textureAttribute;
|
|
GLuint m_vertexBuffer;
|
|
GLuint m_vertexBuffer2;
|
|
|
|
GLuint m_vertexArrayObject;
|
|
GLuint m_vertexArrayObject2;
|
|
|
|
GLuint m_indexBuffer;
|
|
GLuint m_indexBuffer2;
|
|
GLuint m_texturehandle;
|
|
};
|
|
|
|
#endif //PRIM_INTERNAL_DATA
|