├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ ├── docs.yml │ ├── macos_installer.yml │ ├── static_cli.yml │ └── windows.yml ├── .gitignore ├── .travis.yml ├── GLSUPPORT.md ├── LICENSE ├── README.md ├── composer.json ├── config.m4 ├── config.w32 ├── docs ├── API │ ├── Buffer │ │ ├── ByteBuffer.md │ │ ├── DoubleBuffer.md │ │ ├── FloatBuffer.md │ │ ├── HFloatBuffer.md │ │ ├── IntBuffer.md │ │ ├── ShortBuffer.md │ │ ├── UByteBuffer.md │ │ ├── UIntBuffer.md │ │ └── UShortBuffer.md │ ├── GLFW │ │ ├── glfwCreateStandardCursor.md │ │ ├── glfwCreateWindow.md │ │ ├── glfwDefaultWindowHints.md │ │ ├── glfwDestroyCursor.md │ │ ├── glfwDestroyWindow.md │ │ ├── glfwExtensionSupported.md │ │ ├── glfwFocusWindow.md │ │ ├── glfwGetClipboardString.md │ │ ├── glfwGetCurrentContext.md │ │ ├── glfwGetCursorPos.md │ │ ├── glfwGetFramebufferSize.md │ │ ├── glfwGetGamepadAxes.md │ │ ├── glfwGetGamepadButtons.md │ │ ├── glfwGetGamepadName.md │ │ ├── glfwGetInputMode.md │ │ ├── glfwGetJoystickAxes.md │ │ ├── glfwGetJoystickButtons.md │ │ ├── glfwGetJoystickGUID.md │ │ ├── glfwGetJoystickName.md │ │ ├── glfwGetKey.md │ │ ├── glfwGetKeyName.md │ │ ├── glfwGetKeyScancode.md │ │ ├── glfwGetMonitorContentScale.md │ │ ├── glfwGetMonitorName.md │ │ ├── glfwGetMonitorPhysicalSize.md │ │ ├── glfwGetMonitorPos.md │ │ ├── glfwGetMonitorWorkarea.md │ │ ├── glfwGetMouseButton.md │ │ ├── glfwGetPrimaryMonitor.md │ │ ├── glfwGetTime.md │ │ ├── glfwGetVersion.md │ │ ├── glfwGetVersionString.md │ │ ├── glfwGetVideoMode.md │ │ ├── glfwGetVideoModes.md │ │ ├── glfwGetWindowAttrib.md │ │ ├── glfwGetWindowContentScale.md │ │ ├── glfwGetWindowFrameSize.md │ │ ├── glfwGetWindowMonitor.md │ │ ├── glfwGetWindowOpacity.md │ │ ├── glfwGetWindowPos.md │ │ ├── glfwGetWindowSize.md │ │ ├── glfwHideWindow.md │ │ ├── glfwIconifyWindow.md │ │ ├── glfwInit.md │ │ ├── glfwInitHint.md │ │ ├── glfwJoystickIsGamepad.md │ │ ├── glfwJoystickPresent.md │ │ ├── glfwMakeContextCurrent.md │ │ ├── glfwMaximizeWindow.md │ │ ├── glfwPollEvents.md │ │ ├── glfwPostEmptyEvent.md │ │ ├── glfwRawMouseMotionSupported.md │ │ ├── glfwRequestWindowAttention.md │ │ ├── glfwRestoreWindow.md │ │ ├── glfwSetCharCallback.md │ │ ├── glfwSetCharModsCallback.md │ │ ├── glfwSetClipboardString.md │ │ ├── glfwSetCursor.md │ │ ├── glfwSetCursorEnterCallback.md │ │ ├── glfwSetCursorPos.md │ │ ├── glfwSetCursorPosCallback.md │ │ ├── glfwSetDropCallback.md │ │ ├── glfwSetFramebufferSizeCallback.md │ │ ├── glfwSetGamma.md │ │ ├── glfwSetInputMode.md │ │ ├── glfwSetKeyCallback.md │ │ ├── glfwSetMouseButtonCallback.md │ │ ├── glfwSetScrollCallback.md │ │ ├── glfwSetTime.md │ │ ├── glfwSetWindowAspectRatio.md │ │ ├── glfwSetWindowAttrib.md │ │ ├── glfwSetWindowCloseCallback.md │ │ ├── glfwSetWindowContentScaleCallback.md │ │ ├── glfwSetWindowFocusCallback.md │ │ ├── glfwSetWindowIconifyCallback.md │ │ ├── glfwSetWindowMaximizeCallback.md │ │ ├── glfwSetWindowMonitor.md │ │ ├── glfwSetWindowOpacity.md │ │ ├── glfwSetWindowPos.md │ │ ├── glfwSetWindowPosCallback.md │ │ ├── glfwSetWindowRefreshCallback.md │ │ ├── glfwSetWindowShouldClose.md │ │ ├── glfwSetWindowSize.md │ │ ├── glfwSetWindowSizeCallback.md │ │ ├── glfwSetWindowSizeLimits.md │ │ ├── glfwSetWindowTitle.md │ │ ├── glfwShowWindow.md │ │ ├── glfwSwapBuffers.md │ │ ├── glfwSwapInterval.md │ │ ├── glfwTerminate.md │ │ ├── glfwUpdateGamepadMappings.md │ │ ├── glfwVulkanSupported.md │ │ ├── glfwWaitEvents.md │ │ ├── glfwWaitEventsTimeout.md │ │ ├── glfwWindowHint.md │ │ ├── glfwWindowHintString.md │ │ └── glfwWindowShouldClose.md │ ├── Geometry │ │ ├── ObjFileParser.md │ │ ├── ObjFileParserGroup.md │ │ ├── ObjFileParserMaterial.md │ │ └── ObjFileParserMesh.md │ ├── Math │ │ ├── Mat4.md │ │ ├── Quat.md │ │ ├── Vec2.md │ │ ├── Vec3.md │ │ └── Vec4.md │ ├── OpenGL │ │ ├── glActiveShaderProgram.md │ │ ├── glActiveTexture.md │ │ ├── glAttachShader.md │ │ ├── glBeginConditionalRender.md │ │ ├── glBeginQuery.md │ │ ├── glBeginQueryIndexed.md │ │ ├── glBeginTransformFeedback.md │ │ ├── glBindAttribLocation.md │ │ ├── glBindBuffer.md │ │ ├── glBindBufferBase.md │ │ ├── glBindBufferRange.md │ │ ├── glBindFragDataLocation.md │ │ ├── glBindFragDataLocationIndexed.md │ │ ├── glBindFramebuffer.md │ │ ├── glBindProgramPipeline.md │ │ ├── glBindRenderbuffer.md │ │ ├── glBindSampler.md │ │ ├── glBindTexture.md │ │ ├── glBindTransformFeedback.md │ │ ├── glBindVertexArray.md │ │ ├── glBlendColor.md │ │ ├── glBlendEquation.md │ │ ├── glBlendEquationSeparate.md │ │ ├── glBlendEquationSeparatei.md │ │ ├── glBlendEquationi.md │ │ ├── glBlendFunc.md │ │ ├── glBlendFuncSeparate.md │ │ ├── glBlendFuncSeparatei.md │ │ ├── glBlendFunci.md │ │ ├── glBlitFramebuffer.md │ │ ├── glBufferData.md │ │ ├── glCheckFramebufferStatus.md │ │ ├── glClampColor.md │ │ ├── glClear.md │ │ ├── glClearBufferfi.md │ │ ├── glClearBufferfv.md │ │ ├── glClearBufferiv.md │ │ ├── glClearBufferuiv.md │ │ ├── glClearColor.md │ │ ├── glClearDepth.md │ │ ├── glClearDepthf.md │ │ ├── glClearStencil.md │ │ ├── glClientWaitSync.md │ │ ├── glColorMask.md │ │ ├── glColorMaski.md │ │ ├── glColorP3ui.md │ │ ├── glColorP3uiv.md │ │ ├── glColorP4ui.md │ │ ├── glColorP4uiv.md │ │ ├── glCompileShader.md │ │ ├── glCopyBufferSubData.md │ │ ├── glCopyTexImage1D.md │ │ ├── glCopyTexImage2D.md │ │ ├── glCopyTexSubImage1D.md │ │ ├── glCopyTexSubImage2D.md │ │ ├── glCopyTexSubImage3D.md │ │ ├── glCreateProgram.md │ │ ├── glCreateShader.md │ │ ├── glCullFace.md │ │ ├── glDeleteBuffers.md │ │ ├── glDeleteFramebuffers.md │ │ ├── glDeleteProgram.md │ │ ├── glDeleteProgramPipelines.md │ │ ├── glDeleteQueries.md │ │ ├── glDeleteRenderbuffers.md │ │ ├── glDeleteSamplers.md │ │ ├── glDeleteShader.md │ │ ├── glDeleteSync.md │ │ ├── glDeleteTextures.md │ │ ├── glDeleteTransformFeedbacks.md │ │ ├── glDeleteVertexArrays.md │ │ ├── glDepthFunc.md │ │ ├── glDepthMask.md │ │ ├── glDepthRange.md │ │ ├── glDepthRangeArrayv.md │ │ ├── glDepthRangeIndexed.md │ │ ├── glDepthRangef.md │ │ ├── glDetachShader.md │ │ ├── glDisable.md │ │ ├── glDisableVertexAttribArray.md │ │ ├── glDisablei.md │ │ ├── glDrawArrays.md │ │ ├── glDrawArraysInstanced.md │ │ ├── glDrawBuffer.md │ │ ├── glDrawBuffers.md │ │ ├── glDrawElements.md │ │ ├── glDrawTransformFeedback.md │ │ ├── glDrawTransformFeedbackStream.md │ │ ├── glEnable.md │ │ ├── glEnableVertexAttribArray.md │ │ ├── glEnablei.md │ │ ├── glEndConditionalRender.md │ │ ├── glEndQuery.md │ │ ├── glEndQueryIndexed.md │ │ ├── glEndTransformFeedback.md │ │ ├── glFenceSync.md │ │ ├── glFinish.md │ │ ├── glFlush.md │ │ ├── glFlushMappedBufferRange.md │ │ ├── glFramebufferRenderbuffer.md │ │ ├── glFramebufferTexture.md │ │ ├── glFramebufferTexture1D.md │ │ ├── glFramebufferTexture2D.md │ │ ├── glFramebufferTexture3D.md │ │ ├── glFramebufferTextureLayer.md │ │ ├── glFrontFace.md │ │ ├── glGenBuffers.md │ │ ├── glGenFramebuffers.md │ │ ├── glGenProgramPipelines.md │ │ ├── glGenQueries.md │ │ ├── glGenRenderbuffers.md │ │ ├── glGenSamplers.md │ │ ├── glGenTextures.md │ │ ├── glGenTransformFeedbacks.md │ │ ├── glGenVertexArrays.md │ │ ├── glGenerateMipmap.md │ │ ├── glGetActiveSubroutineUniformiv.md │ │ ├── glGetActiveUniformBlockiv.md │ │ ├── glGetAttachedShaders.md │ │ ├── glGetAttribLocation.md │ │ ├── glGetBooleani_v.md │ │ ├── glGetBooleanv.md │ │ ├── glGetBufferParameteri64v.md │ │ ├── glGetBufferParameteriv.md │ │ ├── glGetDoublei_v.md │ │ ├── glGetDoublev.md │ │ ├── glGetError.md │ │ ├── glGetFloati_v.md │ │ ├── glGetFloatv.md │ │ ├── glGetFragDataIndex.md │ │ ├── glGetFragDataLocation.md │ │ ├── glGetFramebufferAttachmentParameteriv.md │ │ ├── glGetInteger64i_v.md │ │ ├── glGetInteger64v.md │ │ ├── glGetIntegeri_v.md │ │ ├── glGetIntegerv.md │ │ ├── glGetMultisamplefv.md │ │ ├── glGetProgramInfoLog.md │ │ ├── glGetProgramPipelineiv.md │ │ ├── glGetProgramStageiv.md │ │ ├── glGetProgramiv.md │ │ ├── glGetQueryIndexediv.md │ │ ├── glGetQueryObjecti64v.md │ │ ├── glGetQueryObjectiv.md │ │ ├── glGetQueryObjectui64v.md │ │ ├── glGetQueryObjectuiv.md │ │ ├── glGetQueryiv.md │ │ ├── glGetRenderbufferParameteriv.md │ │ ├── glGetSamplerParameterIiv.md │ │ ├── glGetSamplerParameterIuiv.md │ │ ├── glGetSamplerParameterfv.md │ │ ├── glGetSamplerParameteriv.md │ │ ├── glGetShaderInfoLog.md │ │ ├── glGetShaderPrecisionFormat.md │ │ ├── glGetShaderiv.md │ │ ├── glGetString.md │ │ ├── glGetStringi.md │ │ ├── glGetSubroutineIndex.md │ │ ├── glGetSubroutineUniformLocation.md │ │ ├── glGetSynciv.md │ │ ├── glGetTexImage.md │ │ ├── glGetTexLevelParameterfv.md │ │ ├── glGetTexLevelParameteriv.md │ │ ├── glGetTexParameterIiv.md │ │ ├── glGetTexParameterIuiv.md │ │ ├── glGetTexParameterfv.md │ │ ├── glGetTexParameteriv.md │ │ ├── glGetUniformBlockIndex.md │ │ ├── glGetUniformLocation.md │ │ ├── glGetUniformSubroutineuiv.md │ │ ├── glGetUniformdv.md │ │ ├── glGetUniformfv.md │ │ ├── glGetUniformiv.md │ │ ├── glGetUniformuiv.md │ │ ├── glGetVertexAttribIiv.md │ │ ├── glGetVertexAttribIuiv.md │ │ ├── glGetVertexAttribLdv.md │ │ ├── glGetVertexAttribdv.md │ │ ├── glGetVertexAttribfv.md │ │ ├── glGetVertexAttribiv.md │ │ ├── glHint.md │ │ ├── glIsBuffer.md │ │ ├── glIsEnabled.md │ │ ├── glIsEnabledi.md │ │ ├── glIsFramebuffer.md │ │ ├── glIsProgram.md │ │ ├── glIsProgramPipeline.md │ │ ├── glIsQuery.md │ │ ├── glIsRenderbuffer.md │ │ ├── glIsSampler.md │ │ ├── glIsShader.md │ │ ├── glIsSync.md │ │ ├── glIsTexture.md │ │ ├── glIsTransformFeedback.md │ │ ├── glIsVertexArray.md │ │ ├── glLineWidth.md │ │ ├── glLinkProgram.md │ │ ├── glLogicOp.md │ │ ├── glMinSampleShading.md │ │ ├── glMultiTexCoordP1ui.md │ │ ├── glMultiTexCoordP1uiv.md │ │ ├── glMultiTexCoordP2ui.md │ │ ├── glMultiTexCoordP2uiv.md │ │ ├── glMultiTexCoordP3ui.md │ │ ├── glMultiTexCoordP3uiv.md │ │ ├── glMultiTexCoordP4ui.md │ │ ├── glMultiTexCoordP4uiv.md │ │ ├── glNormalP3ui.md │ │ ├── glNormalP3uiv.md │ │ ├── glPatchParameterfv.md │ │ ├── glPatchParameteri.md │ │ ├── glPauseTransformFeedback.md │ │ ├── glPixelStoref.md │ │ ├── glPixelStorei.md │ │ ├── glPointParameterf.md │ │ ├── glPointParameterfv.md │ │ ├── glPointParameteri.md │ │ ├── glPointParameteriv.md │ │ ├── glPointSize.md │ │ ├── glPolygonMode.md │ │ ├── glPolygonOffset.md │ │ ├── glPrimitiveRestartIndex.md │ │ ├── glProgramParameteri.md │ │ ├── glProgramUniform1d.md │ │ ├── glProgramUniform1dv.md │ │ ├── glProgramUniform1f.md │ │ ├── glProgramUniform1fv.md │ │ ├── glProgramUniform1i.md │ │ ├── glProgramUniform1iv.md │ │ ├── glProgramUniform1ui.md │ │ ├── glProgramUniform1uiv.md │ │ ├── glProgramUniform2d.md │ │ ├── glProgramUniform2dv.md │ │ ├── glProgramUniform2f.md │ │ ├── glProgramUniform2fv.md │ │ ├── glProgramUniform2i.md │ │ ├── glProgramUniform2iv.md │ │ ├── glProgramUniform2ui.md │ │ ├── glProgramUniform2uiv.md │ │ ├── glProgramUniform3d.md │ │ ├── glProgramUniform3dv.md │ │ ├── glProgramUniform3f.md │ │ ├── glProgramUniform3fv.md │ │ ├── glProgramUniform3i.md │ │ ├── glProgramUniform3iv.md │ │ ├── glProgramUniform3ui.md │ │ ├── glProgramUniform3uiv.md │ │ ├── glProgramUniform4d.md │ │ ├── glProgramUniform4dv.md │ │ ├── glProgramUniform4f.md │ │ ├── glProgramUniform4fv.md │ │ ├── glProgramUniform4i.md │ │ ├── glProgramUniform4iv.md │ │ ├── glProgramUniform4ui.md │ │ ├── glProgramUniform4uiv.md │ │ ├── glProgramUniformMatrix2dv.md │ │ ├── glProgramUniformMatrix2fv.md │ │ ├── glProgramUniformMatrix2x3dv.md │ │ ├── glProgramUniformMatrix2x3fv.md │ │ ├── glProgramUniformMatrix2x4dv.md │ │ ├── glProgramUniformMatrix2x4fv.md │ │ ├── glProgramUniformMatrix3dv.md │ │ ├── glProgramUniformMatrix3fv.md │ │ ├── glProgramUniformMatrix3x2dv.md │ │ ├── glProgramUniformMatrix3x2fv.md │ │ ├── glProgramUniformMatrix3x4dv.md │ │ ├── glProgramUniformMatrix3x4fv.md │ │ ├── glProgramUniformMatrix4dv.md │ │ ├── glProgramUniformMatrix4fv.md │ │ ├── glProgramUniformMatrix4x2dv.md │ │ ├── glProgramUniformMatrix4x2fv.md │ │ ├── glProgramUniformMatrix4x3dv.md │ │ ├── glProgramUniformMatrix4x3fv.md │ │ ├── glProvokingVertex.md │ │ ├── glQueryCounter.md │ │ ├── glReadBuffer.md │ │ ├── glReadPixels.md │ │ ├── glReleaseShaderCompiler.md │ │ ├── glRenderbufferStorage.md │ │ ├── glRenderbufferStorageMultisample.md │ │ ├── glResumeTransformFeedback.md │ │ ├── glSampleCoverage.md │ │ ├── glSampleMaski.md │ │ ├── glSamplerParameterIiv.md │ │ ├── glSamplerParameterIuiv.md │ │ ├── glSamplerParameterf.md │ │ ├── glSamplerParameterfv.md │ │ ├── glSamplerParameteri.md │ │ ├── glSamplerParameteriv.md │ │ ├── glScissor.md │ │ ├── glScissorArrayv.md │ │ ├── glScissorIndexed.md │ │ ├── glScissorIndexedv.md │ │ ├── glSecondaryColorP3ui.md │ │ ├── glSecondaryColorP3uiv.md │ │ ├── glShaderSource.md │ │ ├── glStencilFunc.md │ │ ├── glStencilFuncSeparate.md │ │ ├── glStencilMask.md │ │ ├── glStencilMaskSeparate.md │ │ ├── glStencilOp.md │ │ ├── glStencilOpSeparate.md │ │ ├── glTexBuffer.md │ │ ├── glTexCoordP1ui.md │ │ ├── glTexCoordP1uiv.md │ │ ├── glTexCoordP2ui.md │ │ ├── glTexCoordP2uiv.md │ │ ├── glTexCoordP3ui.md │ │ ├── glTexCoordP3uiv.md │ │ ├── glTexCoordP4ui.md │ │ ├── glTexCoordP4uiv.md │ │ ├── glTexImage2D.md │ │ ├── glTexImage2DMultisample.md │ │ ├── glTexImage3DMultisample.md │ │ ├── glTexParameterIiv.md │ │ ├── glTexParameterIuiv.md │ │ ├── glTexParameterf.md │ │ ├── glTexParameterfv.md │ │ ├── glTexParameteri.md │ │ ├── glTexParameteriv.md │ │ ├── glUniform1d.md │ │ ├── glUniform1dv.md │ │ ├── glUniform1f.md │ │ ├── glUniform1fv.md │ │ ├── glUniform1i.md │ │ ├── glUniform1iv.md │ │ ├── glUniform1ui.md │ │ ├── glUniform1uiv.md │ │ ├── glUniform2d.md │ │ ├── glUniform2dv.md │ │ ├── glUniform2f.md │ │ ├── glUniform2fv.md │ │ ├── glUniform2i.md │ │ ├── glUniform2iv.md │ │ ├── glUniform2ui.md │ │ ├── glUniform2uiv.md │ │ ├── glUniform3d.md │ │ ├── glUniform3dv.md │ │ ├── glUniform3f.md │ │ ├── glUniform3fv.md │ │ ├── glUniform3i.md │ │ ├── glUniform3iv.md │ │ ├── glUniform3ui.md │ │ ├── glUniform3uiv.md │ │ ├── glUniform4d.md │ │ ├── glUniform4dv.md │ │ ├── glUniform4f.md │ │ ├── glUniform4fv.md │ │ ├── glUniform4i.md │ │ ├── glUniform4iv.md │ │ ├── glUniform4ui.md │ │ ├── glUniform4uiv.md │ │ ├── glUniformBlockBinding.md │ │ ├── glUniformMatrix2dv.md │ │ ├── glUniformMatrix2fv.md │ │ ├── glUniformMatrix2x3dv.md │ │ ├── glUniformMatrix2x3fv.md │ │ ├── glUniformMatrix2x4dv.md │ │ ├── glUniformMatrix2x4fv.md │ │ ├── glUniformMatrix3dv.md │ │ ├── glUniformMatrix3fv.md │ │ ├── glUniformMatrix3x2dv.md │ │ ├── glUniformMatrix3x2fv.md │ │ ├── glUniformMatrix3x4dv.md │ │ ├── glUniformMatrix3x4fv.md │ │ ├── glUniformMatrix4dv.md │ │ ├── glUniformMatrix4f.md │ │ ├── glUniformMatrix4fv.md │ │ ├── glUniformMatrix4x2dv.md │ │ ├── glUniformMatrix4x2fv.md │ │ ├── glUniformMatrix4x3dv.md │ │ ├── glUniformMatrix4x3fv.md │ │ ├── glUniformSubroutinesuiv.md │ │ ├── glUniformVec2f.md │ │ ├── glUniformVec3f.md │ │ ├── glUniformVec4f.md │ │ ├── glUnmapBuffer.md │ │ ├── glUseProgram.md │ │ ├── glUseProgramStages.md │ │ ├── glValidateProgram.md │ │ ├── glValidateProgramPipeline.md │ │ ├── glVertexAttrib1d.md │ │ ├── glVertexAttrib1dv.md │ │ ├── glVertexAttrib1f.md │ │ ├── glVertexAttrib1fv.md │ │ ├── glVertexAttrib1s.md │ │ ├── glVertexAttrib1sv.md │ │ ├── glVertexAttrib2d.md │ │ ├── glVertexAttrib2dv.md │ │ ├── glVertexAttrib2f.md │ │ ├── glVertexAttrib2fv.md │ │ ├── glVertexAttrib2s.md │ │ ├── glVertexAttrib2sv.md │ │ ├── glVertexAttrib3d.md │ │ ├── glVertexAttrib3dv.md │ │ ├── glVertexAttrib3f.md │ │ ├── glVertexAttrib3fv.md │ │ ├── glVertexAttrib3s.md │ │ ├── glVertexAttrib3sv.md │ │ ├── glVertexAttrib4Nbv.md │ │ ├── glVertexAttrib4Niv.md │ │ ├── glVertexAttrib4Nsv.md │ │ ├── glVertexAttrib4Nub.md │ │ ├── glVertexAttrib4Nubv.md │ │ ├── glVertexAttrib4Nuiv.md │ │ ├── glVertexAttrib4Nusv.md │ │ ├── glVertexAttrib4bv.md │ │ ├── glVertexAttrib4d.md │ │ ├── glVertexAttrib4dv.md │ │ ├── glVertexAttrib4f.md │ │ ├── glVertexAttrib4fv.md │ │ ├── glVertexAttrib4iv.md │ │ ├── glVertexAttrib4s.md │ │ ├── glVertexAttrib4sv.md │ │ ├── glVertexAttrib4ubv.md │ │ ├── glVertexAttrib4uiv.md │ │ ├── glVertexAttrib4usv.md │ │ ├── glVertexAttribDivisor.md │ │ ├── glVertexAttribI1i.md │ │ ├── glVertexAttribI1iv.md │ │ ├── glVertexAttribI1ui.md │ │ ├── glVertexAttribI1uiv.md │ │ ├── glVertexAttribI2i.md │ │ ├── glVertexAttribI2iv.md │ │ ├── glVertexAttribI2ui.md │ │ ├── glVertexAttribI2uiv.md │ │ ├── glVertexAttribI3i.md │ │ ├── glVertexAttribI3iv.md │ │ ├── glVertexAttribI3ui.md │ │ ├── glVertexAttribI3uiv.md │ │ ├── glVertexAttribI4bv.md │ │ ├── glVertexAttribI4i.md │ │ ├── glVertexAttribI4iv.md │ │ ├── glVertexAttribI4sv.md │ │ ├── glVertexAttribI4ubv.md │ │ ├── glVertexAttribI4ui.md │ │ ├── glVertexAttribI4uiv.md │ │ ├── glVertexAttribI4usv.md │ │ ├── glVertexAttribL1d.md │ │ ├── glVertexAttribL1dv.md │ │ ├── glVertexAttribL2d.md │ │ ├── glVertexAttribL2dv.md │ │ ├── glVertexAttribL3d.md │ │ ├── glVertexAttribL3dv.md │ │ ├── glVertexAttribL4d.md │ │ ├── glVertexAttribL4dv.md │ │ ├── glVertexAttribP1ui.md │ │ ├── glVertexAttribP1uiv.md │ │ ├── glVertexAttribP2ui.md │ │ ├── glVertexAttribP2uiv.md │ │ ├── glVertexAttribP3ui.md │ │ ├── glVertexAttribP3uiv.md │ │ ├── glVertexAttribP4ui.md │ │ ├── glVertexAttribP4uiv.md │ │ ├── glVertexAttribPointer.md │ │ ├── glVertexP2ui.md │ │ ├── glVertexP2uiv.md │ │ ├── glVertexP3ui.md │ │ ├── glVertexP3uiv.md │ │ ├── glVertexP4ui.md │ │ ├── glVertexP4uiv.md │ │ ├── glViewport.md │ │ ├── glViewportArrayv.md │ │ ├── glViewportIndexedf.md │ │ ├── glViewportIndexedfv.md │ │ └── glWaitSync.md │ └── Texture │ │ └── Texture2D.md ├── CNAME ├── DEBUG.md ├── examples │ ├── 00-about-examples.md │ ├── opengl │ │ ├── 01-tirangle.md │ │ ├── 02-3d-cube.md │ │ ├── 03-textured-cube.md │ │ ├── 04-instacing.md │ │ ├── 05-object-file-loading.md │ │ ├── 06-basic-lighting.md │ │ ├── 07-text-rendering.md │ │ ├── 08-input-and-events.md │ │ └── 10-sponza.md │ └── vector-graphics │ │ ├── color_constants.md │ │ ├── color_lightness.md │ │ ├── fun_bitshifting.md │ │ ├── fun_primes_1_full.md │ │ ├── gradient_linear.md │ │ ├── gradient_radial.md │ │ ├── gradient_wave.md │ │ ├── images_filtering.md │ │ ├── images_repeating.md │ │ ├── images_texture_rotation.md │ │ ├── input_joystick.md │ │ ├── ml_genetic_cars.md │ │ ├── noise_explorer.md │ │ ├── noise_grid.md │ │ ├── text_alignment.md │ │ ├── text_boxes.md │ │ ├── text_color_words.md │ │ └── text_intro.md ├── favicon.ico ├── getting-started │ ├── 04_drawing_textures.md │ ├── 05_rendering-a-cube.md │ ├── drawing_a_triangle-01.png │ ├── drawing_a_triangle-02.png │ ├── drawing_a_triangle.md │ ├── getting-started-with-php-and-opengl.md │ ├── installation │ │ ├── ide-setup.md │ │ ├── install-linux.md │ │ ├── install-macos.md │ │ └── install-windows.md │ ├── window-creation-01.png │ └── window-creation.md ├── glfw-previews_s.png ├── index.md ├── logo.svg ├── logo_phpglfw_s.png ├── overrides │ ├── home.html │ └── main.html ├── robots.txt ├── stylesheets │ └── extra.css └── user-guide │ ├── audio │ └── audio_engine.md │ ├── debugging │ └── debug_opengl_with_apitrace.md │ ├── geometry │ └── wavefront-object-files.md │ ├── math │ └── math_functions.md │ ├── noise │ └── noise_functions.md │ ├── offscreen │ └── render-to-image.md │ └── vector-graphics │ ├── colors.md │ ├── creating_a_vgcontext.md │ ├── fill-vs-stroke.md │ ├── gradients.md │ ├── images.md │ ├── shapes.md │ └── text.md ├── examples ├── 01_triangle.php ├── 02_3D_cube.php ├── 03_textured_cube.php ├── 04_instancing.php ├── 05_objloading.php ├── 06_basic_light.php ├── 07_text_rendering.php ├── 08_input_and_events.php ├── 10_sponza │ └── shaders.php ├── 10_sponza_scene.php ├── 11_vector_graphics.php ├── 99_example_helpers.php ├── README.md ├── font │ ├── cozette │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chars.txt │ │ ├── cozette.png │ │ └── cozette.xml │ └── inconsolata │ │ └── Inconsolata-Regular.ttf ├── gamecontrollerdb.txt ├── phpglfwlogo.png ├── ship_light.obj.zip ├── test.php └── vg │ ├── arc_pie_progress.php │ ├── audio_musicplayer.php │ ├── circle_basic.php │ ├── color_constants.php │ ├── color_lightness.php │ ├── ellipse_basic.php │ ├── fun_asteroids.php │ ├── fun_bitshifting.php │ ├── fun_primes_1_full.php │ ├── fun_solar.php │ ├── gradient_linear.php │ ├── gradient_radial.php │ ├── gradient_wave.php │ ├── images_filtering.php │ ├── images_repeating.php │ ├── images_scaling.php │ ├── images_texture_rotation.php │ ├── input_joystick.php │ ├── ml_genetic_cars.php │ ├── noise_explorer.php │ ├── noise_grid.php │ ├── polygon_basic.php │ ├── rectangle_animation.php │ ├── rectangle_basic.php │ ├── rectangle_rounded.php │ ├── shapes.php │ ├── stroke_inner.php │ ├── stroke_outer.php │ ├── stroke_size.php │ ├── text_alignment.php │ ├── text_boxes.php │ ├── text_color_words.php │ ├── text_intro.php │ └── videomodes.php ├── generator ├── README.md ├── bootstrap.php ├── build ├── composer.json ├── composer.lock ├── data │ ├── fncdoc_override │ │ ├── glActiveShaderProgram.md │ │ ├── glActiveTexture.md │ │ └── vg │ │ │ ├── beginFrame.md │ │ │ ├── beginPath.md │ │ │ ├── circle.md │ │ │ ├── endFrame.md │ │ │ ├── fill.md │ │ │ ├── fillColor.md │ │ │ ├── rect.md │ │ │ ├── reset.md │ │ │ ├── restore.md │ │ │ ├── save.md │ │ │ ├── stroke.md │ │ │ ├── strokeColor.md │ │ │ ├── strokeWidth.md │ │ │ ├── text.md │ │ │ └── textBounds.md │ ├── gl.xml │ └── glrefs.json ├── import-gl-docs ├── make-example-docs.php ├── phpunit.xml ├── src │ ├── ExtArgument.php │ ├── ExtArgument │ │ ├── BoolArgument.php │ │ ├── CEObjectArgument.php │ │ ├── DoubleArgument.php │ │ ├── FunctionArgument.php │ │ ├── InternalPtrObjectArgument.php │ │ ├── LongArgument.php │ │ ├── NullArgument.php │ │ ├── StringArgument.php │ │ └── VariadicArgument.php │ ├── ExtConstant.php │ ├── ExtConstantGroup.php │ ├── ExtDocParser.php │ ├── ExtFunction.php │ ├── ExtGenerator.php │ ├── ExtInternalPtrObject.php │ ├── ExtResource.php │ ├── ExtType.php │ ├── GLFWHeaderParser.php │ ├── GLSpec.php │ ├── GLSpec │ │ ├── GLConstant.php │ │ ├── GLConstantGroup.php │ │ ├── GLFunction.php │ │ ├── GLFunctionArg.php │ │ └── GLVersion.php │ ├── GLSpecReader.php │ ├── NVGParser.php │ ├── PHPGLFWBuffer.php │ ├── PHPGLFWMathObj.php │ ├── PHPGlfwAdjustments │ │ ├── AdjustmentInterface.php │ │ ├── BooleanConstAdjustment.php │ │ ├── GLBufferDataAdjustment.php │ │ ├── GLConstVoidPtrAsUint.php │ │ ├── GLDestroyFunctionAdjustments.php │ │ ├── GLDrawElementsAdjustment.php │ │ ├── GLFWCallbacksAdjustment.php │ │ ├── GLFWCreateWindowAdjustment.php │ │ ├── GLFWDestroyFunctionAdjustment.php │ │ ├── GLFWGetVideoModesAdjustment.php │ │ ├── GLFWGladLoader.php │ │ ├── GLFWJoystickAdjustment.php │ │ ├── GLFWOptionalArgsAdjustments.php │ │ ├── GLFWSetWindowMonitorAdjustment.php │ │ ├── GLFWSwapBuffersAdjustment.php │ │ ├── GLGenFunctionAdjustments.php │ │ ├── GLGetFunctionAdjustments.php │ │ ├── GLGetShaderInfoLogAdjustment.php │ │ ├── GLGetStringAdjustment.php │ │ ├── GLReadPixelsAdjustment.php │ │ ├── GLShaderSourceAdjustment.php │ │ ├── GLTexImage2DAdjustment.php │ │ ├── GLVectorSetterFunctionAdjustment.php │ │ ├── GLVertexAttribPointerAdjustment.php │ │ ├── GlUniformMathObjAdjustment.php │ │ ├── NVGCurrentTansformAdjustment.php │ │ └── NVGTextBoundsAdjustment.php │ └── functions.php ├── templates │ ├── docs │ │ ├── buffer.md.php │ │ ├── geo_objfileparser.md.php │ │ ├── glfw_func.md.php │ │ ├── math_mat.md.php │ │ ├── math_quat.md.php │ │ ├── math_vec.md.php │ │ ├── opengl_func.md.php │ │ └── texture_texture2d.md.php │ ├── phpglfw.stub.php.php │ ├── phpglfw_buffer.c.php │ ├── phpglfw_buffer.h.php │ ├── phpglfw_constants.c.php │ ├── phpglfw_constants.h.php │ ├── phpglfw_functions.c.php │ ├── phpglfw_functions.h.php │ ├── phpglfw_math.c.php │ ├── phpglfw_math.h.php │ ├── phpglfw_vg.c.php │ ├── phpglfw_vg.h.php │ └── stubs │ │ └── phpglfw.php.php └── tests │ ├── ExtArgument │ └── LongArgumentTest.php │ ├── ExtArgumentTest.php │ └── ExtFunctionTest.php ├── install └── macos-installer.php ├── linmath.h ├── mkdocs.insiders.yml ├── mkdocs.yml ├── ogt_vox_c_wrapper.cpp ├── ogt_vox_c_wrapper.h ├── phpglfw.c ├── phpglfw.h ├── phpglfw.stub.php ├── phpglfw_arginfo.h ├── phpglfw_audio.c ├── phpglfw_audio.h ├── phpglfw_buffer.c ├── phpglfw_buffer.h ├── phpglfw_constants.c ├── phpglfw_constants.h ├── phpglfw_functions.c ├── phpglfw_functions.h ├── phpglfw_math.c ├── phpglfw_math.h ├── phpglfw_objparser.c ├── phpglfw_objparser.h ├── phpglfw_texture.c ├── phpglfw_texture.h ├── phpglfw_vg.c ├── phpglfw_vg.h ├── phpglfw_voxparser.c ├── phpglfw_voxparser.h ├── phpunit.php ├── phpunit.xml ├── stubs └── phpglfw.php ├── tests ├── Buffer │ ├── BufferTestCase.php │ ├── ByteBufferTest.php │ ├── DoubleBufferTest.php │ ├── FloatBufferTest.php │ ├── HFloatBufferTest.php │ ├── IntBufferTest.php │ ├── ShortBufferTest.php │ ├── UByteBufferTest.php │ ├── UIntBufferTest.php │ └── UShortBufferTest.php ├── GLFunctions │ ├── GLFunctionsTestCase.php │ ├── GetAndSetParamtersTest.php │ └── ShderCompilationTest.php ├── Geometry │ └── ObjFileParserTest.php ├── Math │ ├── GLMTest.php │ ├── Mat4Test.php │ ├── MathObjectAssertions.php │ ├── QuatTest.php │ ├── Vec3Test.php │ └── Vec4Test.php ├── Noise │ └── NoiseTest.php ├── Texture │ └── Texture2DTest.php ├── VG │ └── VGColorTest.php └── resources │ ├── test.mtl │ └── test.obj ├── vendor ├── cvector │ ├── LICENSE │ └── cvector.h ├── fastobj │ ├── LICENSE │ ├── fast_obj.c │ └── fast_obj.h ├── glad │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c ├── glfw │ ├── CMake │ │ ├── GenerateMappings.cmake │ │ ├── MacOSXBundleInfo.plist.in │ │ ├── i686-w64-mingw32-clang.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── x86_64-w64-mingw32-clang.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── CONTRIBUTORS.md │ ├── LICENSE.md │ ├── README.md │ ├── cmake_uninstall.cmake.in │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.h │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_context.h │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── glfw_config.h.in │ │ ├── glx_context.c │ │ ├── glx_context.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mappings.h │ │ ├── mappings.h.in │ │ ├── monitor.c │ │ ├── nsgl_context.h │ │ ├── nsgl_context.m │ │ ├── null_init.c │ │ ├── null_joystick.c │ │ ├── null_joystick.h │ │ ├── null_monitor.c │ │ ├── null_platform.h │ │ ├── null_window.c │ │ ├── osmesa_context.c │ │ ├── osmesa_context.h │ │ ├── posix_thread.c │ │ ├── posix_thread.h │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── vulkan.c │ │ ├── wgl_context.c │ │ ├── wgl_context.h │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_joystick.h │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_thread.c │ │ ├── win32_time.c │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h ├── miniaudio │ └── miniaudio.h ├── nanovg │ ├── .gitignore │ ├── LICENSE.txt │ └── src │ │ ├── fontstash.h │ │ ├── nanovg.c │ │ ├── nanovg.h │ │ ├── nanovg_gl.h │ │ ├── nanovg_gl_utils.h │ │ ├── stb_image.h │ │ └── stb_truetype.h ├── opengametools │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── apps │ │ ├── vox2fbx.cpp │ │ ├── vox2obj.cpp │ │ ├── voxmerge.cpp │ │ └── voxseparate.cpp │ └── src │ │ ├── ogt_vox.h │ │ └── ogt_voxel_meshify.h └── stb │ ├── stb_image.h │ ├── stb_image_write.h │ └── stb_perlin.h └── vmenv └── initvm.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [mario-deluna] 4 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/macos_installer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/.github/workflows/macos_installer.yml -------------------------------------------------------------------------------- /.github/workflows/static_cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/.github/workflows/static_cli.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/.travis.yml -------------------------------------------------------------------------------- /GLSUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/GLSUPPORT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/composer.json -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/config.w32 -------------------------------------------------------------------------------- /docs/API/Buffer/ByteBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Buffer/ByteBuffer.md -------------------------------------------------------------------------------- /docs/API/Buffer/DoubleBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Buffer/DoubleBuffer.md -------------------------------------------------------------------------------- /docs/API/Buffer/FloatBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Buffer/FloatBuffer.md -------------------------------------------------------------------------------- /docs/API/Buffer/HFloatBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Buffer/HFloatBuffer.md -------------------------------------------------------------------------------- /docs/API/Buffer/IntBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Buffer/IntBuffer.md -------------------------------------------------------------------------------- /docs/API/Buffer/ShortBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Buffer/ShortBuffer.md -------------------------------------------------------------------------------- /docs/API/Buffer/UByteBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Buffer/UByteBuffer.md -------------------------------------------------------------------------------- /docs/API/Buffer/UIntBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Buffer/UIntBuffer.md -------------------------------------------------------------------------------- /docs/API/Buffer/UShortBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Buffer/UShortBuffer.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwCreateStandardCursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwCreateStandardCursor.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwCreateWindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwCreateWindow.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwDefaultWindowHints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwDefaultWindowHints.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwDestroyCursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwDestroyCursor.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwDestroyWindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwDestroyWindow.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwExtensionSupported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwExtensionSupported.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwFocusWindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwFocusWindow.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetClipboardString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetClipboardString.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetCurrentContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetCurrentContext.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetCursorPos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetCursorPos.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetFramebufferSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetFramebufferSize.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetGamepadAxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetGamepadAxes.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetGamepadButtons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetGamepadButtons.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetGamepadName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetGamepadName.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetInputMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetInputMode.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetJoystickAxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetJoystickAxes.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetJoystickButtons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetJoystickButtons.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetJoystickGUID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetJoystickGUID.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetJoystickName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetJoystickName.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetKey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetKey.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetKeyName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetKeyName.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetKeyScancode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetKeyScancode.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetMonitorContentScale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetMonitorContentScale.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetMonitorName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetMonitorName.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetMonitorPhysicalSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetMonitorPhysicalSize.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetMonitorPos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetMonitorPos.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetMonitorWorkarea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetMonitorWorkarea.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetMouseButton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetMouseButton.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetPrimaryMonitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetPrimaryMonitor.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetTime.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetVersion.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetVersionString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetVersionString.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetVideoMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetVideoMode.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetVideoModes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetVideoModes.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetWindowAttrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetWindowAttrib.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetWindowContentScale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetWindowContentScale.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetWindowFrameSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetWindowFrameSize.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetWindowMonitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetWindowMonitor.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetWindowOpacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetWindowOpacity.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetWindowPos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetWindowPos.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwGetWindowSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwGetWindowSize.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwHideWindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwHideWindow.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwIconifyWindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwIconifyWindow.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwInit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwInit.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwInitHint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwInitHint.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwJoystickIsGamepad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwJoystickIsGamepad.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwJoystickPresent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwJoystickPresent.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwMakeContextCurrent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwMakeContextCurrent.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwMaximizeWindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwMaximizeWindow.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwPollEvents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwPollEvents.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwPostEmptyEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwPostEmptyEvent.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwRequestWindowAttention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwRequestWindowAttention.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwRestoreWindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwRestoreWindow.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetCharCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetCharCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetCharModsCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetCharModsCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetClipboardString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetClipboardString.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetCursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetCursor.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetCursorEnterCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetCursorEnterCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetCursorPos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetCursorPos.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetCursorPosCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetCursorPosCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetDropCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetDropCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetGamma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetGamma.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetInputMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetInputMode.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetKeyCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetKeyCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetMouseButtonCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetMouseButtonCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetScrollCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetScrollCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetTime.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowAspectRatio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowAspectRatio.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowAttrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowAttrib.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowCloseCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowCloseCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowFocusCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowFocusCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowMonitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowMonitor.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowOpacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowOpacity.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowPos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowPos.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowPosCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowPosCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowShouldClose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowShouldClose.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowSize.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowSizeCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowSizeCallback.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowSizeLimits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowSizeLimits.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSetWindowTitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSetWindowTitle.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwShowWindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwShowWindow.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSwapBuffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSwapBuffers.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwSwapInterval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwSwapInterval.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwTerminate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwTerminate.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwUpdateGamepadMappings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwUpdateGamepadMappings.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwVulkanSupported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwVulkanSupported.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwWaitEvents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwWaitEvents.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwWaitEventsTimeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwWaitEventsTimeout.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwWindowHint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwWindowHint.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwWindowHintString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwWindowHintString.md -------------------------------------------------------------------------------- /docs/API/GLFW/glfwWindowShouldClose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/GLFW/glfwWindowShouldClose.md -------------------------------------------------------------------------------- /docs/API/Geometry/ObjFileParser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Geometry/ObjFileParser.md -------------------------------------------------------------------------------- /docs/API/Geometry/ObjFileParserGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Geometry/ObjFileParserGroup.md -------------------------------------------------------------------------------- /docs/API/Geometry/ObjFileParserMaterial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Geometry/ObjFileParserMaterial.md -------------------------------------------------------------------------------- /docs/API/Geometry/ObjFileParserMesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Geometry/ObjFileParserMesh.md -------------------------------------------------------------------------------- /docs/API/Math/Mat4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Math/Mat4.md -------------------------------------------------------------------------------- /docs/API/Math/Quat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Math/Quat.md -------------------------------------------------------------------------------- /docs/API/Math/Vec2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Math/Vec2.md -------------------------------------------------------------------------------- /docs/API/Math/Vec3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Math/Vec3.md -------------------------------------------------------------------------------- /docs/API/Math/Vec4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Math/Vec4.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glActiveShaderProgram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glActiveShaderProgram.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glActiveTexture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glActiveTexture.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glAttachShader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glAttachShader.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBeginConditionalRender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBeginConditionalRender.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBeginQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBeginQuery.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBeginQueryIndexed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBeginQueryIndexed.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBeginTransformFeedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBeginTransformFeedback.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindAttribLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindAttribLocation.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindBuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindBufferBase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindBufferBase.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindBufferRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindBufferRange.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindFragDataLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindFragDataLocation.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindFramebuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindFramebuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindProgramPipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindProgramPipeline.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindRenderbuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindRenderbuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindSampler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindSampler.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindTexture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindTexture.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindTransformFeedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindTransformFeedback.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBindVertexArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBindVertexArray.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBlendColor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBlendColor.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBlendEquation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBlendEquation.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBlendEquationSeparate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBlendEquationSeparate.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBlendEquationSeparatei.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBlendEquationSeparatei.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBlendEquationi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBlendEquationi.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBlendFunc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBlendFunc.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBlendFuncSeparate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBlendFuncSeparate.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBlendFuncSeparatei.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBlendFuncSeparatei.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBlendFunci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBlendFunci.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBlitFramebuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBlitFramebuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glBufferData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glBufferData.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCheckFramebufferStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCheckFramebufferStatus.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClampColor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClampColor.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClear.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClearBufferfi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClearBufferfi.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClearBufferfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClearBufferfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClearBufferiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClearBufferiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClearBufferuiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClearBufferuiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClearColor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClearColor.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClearDepth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClearDepth.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClearDepthf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClearDepthf.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClearStencil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClearStencil.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glClientWaitSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glClientWaitSync.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glColorMask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glColorMask.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glColorMaski.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glColorMaski.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glColorP3ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glColorP3ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glColorP3uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glColorP3uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glColorP4ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glColorP4ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glColorP4uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glColorP4uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCompileShader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCompileShader.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCopyBufferSubData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCopyBufferSubData.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCopyTexImage1D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCopyTexImage1D.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCopyTexImage2D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCopyTexImage2D.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCopyTexSubImage1D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCopyTexSubImage1D.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCopyTexSubImage2D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCopyTexSubImage2D.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCopyTexSubImage3D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCopyTexSubImage3D.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCreateProgram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCreateProgram.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCreateShader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCreateShader.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glCullFace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glCullFace.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteBuffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteBuffers.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteFramebuffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteFramebuffers.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteProgram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteProgram.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteProgramPipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteProgramPipelines.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteQueries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteQueries.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteRenderbuffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteRenderbuffers.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteSamplers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteSamplers.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteShader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteShader.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteSync.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteTextures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteTextures.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDeleteVertexArrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDeleteVertexArrays.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDepthFunc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDepthFunc.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDepthMask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDepthMask.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDepthRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDepthRange.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDepthRangeArrayv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDepthRangeArrayv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDepthRangeIndexed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDepthRangeIndexed.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDepthRangef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDepthRangef.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDetachShader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDetachShader.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDisable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDisable.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDisablei.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDisablei.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDrawArrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDrawArrays.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDrawArraysInstanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDrawArraysInstanced.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDrawBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDrawBuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDrawBuffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDrawBuffers.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDrawElements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDrawElements.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glDrawTransformFeedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glDrawTransformFeedback.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glEnable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glEnable.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glEnablei.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glEnablei.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glEndConditionalRender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glEndConditionalRender.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glEndQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glEndQuery.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glEndQueryIndexed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glEndQueryIndexed.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glEndTransformFeedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glEndTransformFeedback.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glFenceSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glFenceSync.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glFinish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glFinish.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glFlush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glFlush.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glFlushMappedBufferRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glFlushMappedBufferRange.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glFramebufferTexture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glFramebufferTexture.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glFramebufferTexture1D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glFramebufferTexture1D.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glFramebufferTexture2D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glFramebufferTexture2D.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glFramebufferTexture3D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glFramebufferTexture3D.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glFrontFace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glFrontFace.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGenBuffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGenBuffers.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGenFramebuffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGenFramebuffers.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGenProgramPipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGenProgramPipelines.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGenQueries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGenQueries.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGenRenderbuffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGenRenderbuffers.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGenSamplers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGenSamplers.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGenTextures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGenTextures.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGenTransformFeedbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGenTransformFeedbacks.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGenVertexArrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGenVertexArrays.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGenerateMipmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGenerateMipmap.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetAttachedShaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetAttachedShaders.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetAttribLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetAttribLocation.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetBooleani_v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetBooleani_v.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetBooleanv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetBooleanv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetBufferParameteri64v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetBufferParameteri64v.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetBufferParameteriv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetBufferParameteriv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetDoublei_v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetDoublei_v.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetDoublev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetDoublev.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetError.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetFloati_v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetFloati_v.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetFloatv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetFloatv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetFragDataIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetFragDataIndex.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetFragDataLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetFragDataLocation.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetInteger64i_v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetInteger64i_v.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetInteger64v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetInteger64v.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetIntegeri_v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetIntegeri_v.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetIntegerv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetIntegerv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetMultisamplefv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetMultisamplefv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetProgramInfoLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetProgramInfoLog.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetProgramPipelineiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetProgramPipelineiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetProgramStageiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetProgramStageiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetProgramiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetProgramiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetQueryIndexediv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetQueryIndexediv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetQueryObjecti64v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetQueryObjecti64v.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetQueryObjectiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetQueryObjectiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetQueryObjectui64v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetQueryObjectui64v.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetQueryObjectuiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetQueryObjectuiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetQueryiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetQueryiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetSamplerParameterIiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetSamplerParameterIiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetSamplerParameterfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetSamplerParameterfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetSamplerParameteriv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetSamplerParameteriv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetShaderInfoLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetShaderInfoLog.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetShaderiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetShaderiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetString.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetStringi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetStringi.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetSubroutineIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetSubroutineIndex.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetSynciv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetSynciv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetTexImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetTexImage.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetTexLevelParameterfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetTexLevelParameterfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetTexLevelParameteriv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetTexLevelParameteriv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetTexParameterIiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetTexParameterIiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetTexParameterIuiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetTexParameterIuiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetTexParameterfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetTexParameterfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetTexParameteriv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetTexParameteriv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetUniformBlockIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetUniformBlockIndex.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetUniformLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetUniformLocation.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetUniformdv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetUniformdv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetUniformfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetUniformfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetUniformiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetUniformiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetUniformuiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetUniformuiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetVertexAttribIiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetVertexAttribIiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetVertexAttribIuiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetVertexAttribIuiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetVertexAttribLdv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetVertexAttribLdv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetVertexAttribdv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetVertexAttribdv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetVertexAttribfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetVertexAttribfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glGetVertexAttribiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glGetVertexAttribiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glHint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glHint.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsBuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsEnabled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsEnabled.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsEnabledi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsEnabledi.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsFramebuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsFramebuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsProgram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsProgram.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsProgramPipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsProgramPipeline.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsQuery.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsRenderbuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsRenderbuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsSampler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsSampler.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsShader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsShader.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsSync.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsTexture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsTexture.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsTransformFeedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsTransformFeedback.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glIsVertexArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glIsVertexArray.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glLineWidth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glLineWidth.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glLinkProgram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glLinkProgram.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glLogicOp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glLogicOp.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glMinSampleShading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glMinSampleShading.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glMultiTexCoordP1ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glMultiTexCoordP1ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glMultiTexCoordP1uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glMultiTexCoordP1uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glMultiTexCoordP2ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glMultiTexCoordP2ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glMultiTexCoordP2uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glMultiTexCoordP2uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glMultiTexCoordP3ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glMultiTexCoordP3ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glMultiTexCoordP3uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glMultiTexCoordP3uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glMultiTexCoordP4ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glMultiTexCoordP4ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glMultiTexCoordP4uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glMultiTexCoordP4uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glNormalP3ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glNormalP3ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glNormalP3uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glNormalP3uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPatchParameterfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPatchParameterfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPatchParameteri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPatchParameteri.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPauseTransformFeedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPauseTransformFeedback.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPixelStoref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPixelStoref.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPixelStorei.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPixelStorei.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPointParameterf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPointParameterf.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPointParameterfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPointParameterfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPointParameteri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPointParameteri.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPointParameteriv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPointParameteriv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPointSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPointSize.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPolygonMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPolygonMode.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPolygonOffset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPolygonOffset.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glPrimitiveRestartIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glPrimitiveRestartIndex.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramParameteri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramParameteri.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform1d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform1d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform1dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform1dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform1f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform1f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform1fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform1fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform1i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform1i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform1iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform1iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform1ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform1ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform1uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform1uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform2d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform2dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform2dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform2f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform2f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform2fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform2fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform2i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform2i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform2iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform2iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform2ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform2ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform2uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform2uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform3d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform3dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform3dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform3f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform3f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform3fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform3fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform3i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform3i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform3iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform3iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform3ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform3ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform3uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform3uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform4d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform4d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform4dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform4dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform4f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform4f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform4fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform4fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform4i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform4i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform4iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform4iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform4ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform4ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProgramUniform4uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProgramUniform4uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glProvokingVertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glProvokingVertex.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glQueryCounter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glQueryCounter.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glReadBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glReadBuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glReadPixels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glReadPixels.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glReleaseShaderCompiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glReleaseShaderCompiler.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glRenderbufferStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glRenderbufferStorage.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glSampleCoverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glSampleCoverage.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glSampleMaski.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glSampleMaski.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glSamplerParameterIiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glSamplerParameterIiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glSamplerParameterIuiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glSamplerParameterIuiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glSamplerParameterf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glSamplerParameterf.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glSamplerParameterfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glSamplerParameterfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glSamplerParameteri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glSamplerParameteri.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glSamplerParameteriv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glSamplerParameteriv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glScissor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glScissor.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glScissorArrayv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glScissorArrayv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glScissorIndexed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glScissorIndexed.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glScissorIndexedv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glScissorIndexedv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glSecondaryColorP3ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glSecondaryColorP3ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glSecondaryColorP3uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glSecondaryColorP3uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glShaderSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glShaderSource.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glStencilFunc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glStencilFunc.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glStencilFuncSeparate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glStencilFuncSeparate.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glStencilMask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glStencilMask.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glStencilMaskSeparate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glStencilMaskSeparate.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glStencilOp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glStencilOp.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glStencilOpSeparate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glStencilOpSeparate.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexBuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexCoordP1ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexCoordP1ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexCoordP1uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexCoordP1uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexCoordP2ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexCoordP2ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexCoordP2uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexCoordP2uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexCoordP3ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexCoordP3ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexCoordP3uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexCoordP3uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexCoordP4ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexCoordP4ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexCoordP4uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexCoordP4uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexImage2D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexImage2D.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexImage2DMultisample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexImage2DMultisample.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexImage3DMultisample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexImage3DMultisample.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexParameterIiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexParameterIiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexParameterIuiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexParameterIuiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexParameterf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexParameterf.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexParameterfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexParameterfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexParameteri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexParameteri.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glTexParameteriv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glTexParameteriv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform1d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform1d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform1dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform1dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform1f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform1f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform1fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform1fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform1i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform1i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform1iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform1iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform1ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform1ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform1uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform1uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform2d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform2dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform2dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform2f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform2f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform2fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform2fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform2i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform2i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform2iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform2iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform2ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform2ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform2uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform2uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform3d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform3dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform3dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform3f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform3f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform3fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform3fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform3i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform3i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform3iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform3iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform3ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform3ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform3uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform3uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform4d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform4d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform4dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform4dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform4f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform4f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform4fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform4fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform4i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform4i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform4iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform4iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform4ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform4ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniform4uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniform4uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformBlockBinding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformBlockBinding.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix2dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix2dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix2fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix2fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix2x3dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix2x3dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix2x3fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix2x3fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix2x4dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix2x4dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix2x4fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix2x4fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix3dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix3dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix3fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix3fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix3x2dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix3x2dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix3x2fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix3x2fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix3x4dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix3x4dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix3x4fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix3x4fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix4dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix4dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix4f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix4f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix4fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix4fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix4x2dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix4x2dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix4x2fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix4x2fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix4x3dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix4x3dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformMatrix4x3fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformMatrix4x3fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformSubroutinesuiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformSubroutinesuiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformVec2f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformVec2f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformVec3f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformVec3f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUniformVec4f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUniformVec4f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUnmapBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUnmapBuffer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUseProgram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUseProgram.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glUseProgramStages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glUseProgramStages.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glValidateProgram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glValidateProgram.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib1d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib1d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib1dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib1dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib1f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib1f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib1fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib1fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib1s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib1s.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib1sv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib1sv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib2d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib2dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib2dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib2f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib2f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib2fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib2fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib2s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib2s.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib2sv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib2sv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib3d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib3dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib3dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib3f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib3f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib3fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib3fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib3s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib3s.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib3sv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib3sv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4Nbv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4Nbv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4Niv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4Niv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4Nsv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4Nsv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4Nub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4Nub.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4Nubv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4Nubv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4Nuiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4Nuiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4Nusv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4Nusv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4bv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4bv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4f.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4fv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4fv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4s.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4sv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4sv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4ubv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4ubv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttrib4usv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttrib4usv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribDivisor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribDivisor.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI1i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI1i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI1iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI1iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI1ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI1ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI1uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI1uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI2i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI2i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI2iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI2iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI2ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI2ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI2uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI2uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI3i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI3i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI3iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI3iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI3ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI3ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI3uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI3uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI4bv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI4bv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI4i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI4i.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI4iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI4iv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI4sv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI4sv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI4ubv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI4ubv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI4ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI4ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI4uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI4uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribI4usv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribI4usv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribL1d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribL1d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribL1dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribL1dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribL2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribL2d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribL2dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribL2dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribL3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribL3d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribL3dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribL3dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribL4d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribL4d.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribL4dv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribL4dv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribP1ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribP1ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribP1uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribP1uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribP2ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribP2ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribP2uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribP2uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribP3ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribP3ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribP3uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribP3uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribP4ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribP4ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribP4uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribP4uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexAttribPointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexAttribPointer.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexP2ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexP2ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexP2uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexP2uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexP3ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexP3ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexP3uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexP3uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexP4ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexP4ui.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glVertexP4uiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glVertexP4uiv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glViewport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glViewport.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glViewportArrayv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glViewportArrayv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glViewportIndexedf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glViewportIndexedf.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glViewportIndexedfv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glViewportIndexedfv.md -------------------------------------------------------------------------------- /docs/API/OpenGL/glWaitSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/OpenGL/glWaitSync.md -------------------------------------------------------------------------------- /docs/API/Texture/Texture2D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/API/Texture/Texture2D.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | phpgl.net -------------------------------------------------------------------------------- /docs/DEBUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/DEBUG.md -------------------------------------------------------------------------------- /docs/examples/00-about-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/00-about-examples.md -------------------------------------------------------------------------------- /docs/examples/opengl/01-tirangle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/opengl/01-tirangle.md -------------------------------------------------------------------------------- /docs/examples/opengl/02-3d-cube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/opengl/02-3d-cube.md -------------------------------------------------------------------------------- /docs/examples/opengl/03-textured-cube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/opengl/03-textured-cube.md -------------------------------------------------------------------------------- /docs/examples/opengl/04-instacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/opengl/04-instacing.md -------------------------------------------------------------------------------- /docs/examples/opengl/06-basic-lighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/opengl/06-basic-lighting.md -------------------------------------------------------------------------------- /docs/examples/opengl/07-text-rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/opengl/07-text-rendering.md -------------------------------------------------------------------------------- /docs/examples/opengl/08-input-and-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/opengl/08-input-and-events.md -------------------------------------------------------------------------------- /docs/examples/opengl/10-sponza.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/opengl/10-sponza.md -------------------------------------------------------------------------------- /docs/examples/vector-graphics/noise_grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/vector-graphics/noise_grid.md -------------------------------------------------------------------------------- /docs/examples/vector-graphics/text_boxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/vector-graphics/text_boxes.md -------------------------------------------------------------------------------- /docs/examples/vector-graphics/text_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/examples/vector-graphics/text_intro.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/getting-started/04_drawing_textures.md: -------------------------------------------------------------------------------- 1 | # Using textures -------------------------------------------------------------------------------- /docs/getting-started/05_rendering-a-cube.md: -------------------------------------------------------------------------------- 1 | # Rendering a 3D cube -------------------------------------------------------------------------------- /docs/getting-started/drawing_a_triangle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/getting-started/drawing_a_triangle.md -------------------------------------------------------------------------------- /docs/getting-started/window-creation-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/getting-started/window-creation-01.png -------------------------------------------------------------------------------- /docs/getting-started/window-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/getting-started/window-creation.md -------------------------------------------------------------------------------- /docs/glfw-previews_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/glfw-previews_s.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/logo_phpglfw_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/logo_phpglfw_s.png -------------------------------------------------------------------------------- /docs/overrides/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/overrides/home.html -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/user-guide/audio/audio_engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/user-guide/audio/audio_engine.md -------------------------------------------------------------------------------- /docs/user-guide/math/math_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/user-guide/math/math_functions.md -------------------------------------------------------------------------------- /docs/user-guide/noise/noise_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/user-guide/noise/noise_functions.md -------------------------------------------------------------------------------- /docs/user-guide/vector-graphics/colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/user-guide/vector-graphics/colors.md -------------------------------------------------------------------------------- /docs/user-guide/vector-graphics/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/user-guide/vector-graphics/images.md -------------------------------------------------------------------------------- /docs/user-guide/vector-graphics/shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/user-guide/vector-graphics/shapes.md -------------------------------------------------------------------------------- /docs/user-guide/vector-graphics/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/docs/user-guide/vector-graphics/text.md -------------------------------------------------------------------------------- /examples/01_triangle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/01_triangle.php -------------------------------------------------------------------------------- /examples/02_3D_cube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/02_3D_cube.php -------------------------------------------------------------------------------- /examples/03_textured_cube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/03_textured_cube.php -------------------------------------------------------------------------------- /examples/04_instancing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/04_instancing.php -------------------------------------------------------------------------------- /examples/05_objloading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/05_objloading.php -------------------------------------------------------------------------------- /examples/06_basic_light.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/06_basic_light.php -------------------------------------------------------------------------------- /examples/07_text_rendering.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/07_text_rendering.php -------------------------------------------------------------------------------- /examples/08_input_and_events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/08_input_and_events.php -------------------------------------------------------------------------------- /examples/10_sponza/shaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/10_sponza/shaders.php -------------------------------------------------------------------------------- /examples/10_sponza_scene.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/10_sponza_scene.php -------------------------------------------------------------------------------- /examples/11_vector_graphics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/11_vector_graphics.php -------------------------------------------------------------------------------- /examples/99_example_helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/99_example_helpers.php -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/font/cozette/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/font/cozette/LICENSE -------------------------------------------------------------------------------- /examples/font/cozette/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/font/cozette/README.md -------------------------------------------------------------------------------- /examples/font/cozette/chars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/font/cozette/chars.txt -------------------------------------------------------------------------------- /examples/font/cozette/cozette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/font/cozette/cozette.png -------------------------------------------------------------------------------- /examples/font/cozette/cozette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/font/cozette/cozette.xml -------------------------------------------------------------------------------- /examples/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/gamecontrollerdb.txt -------------------------------------------------------------------------------- /examples/phpglfwlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/phpglfwlogo.png -------------------------------------------------------------------------------- /examples/ship_light.obj.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/ship_light.obj.zip -------------------------------------------------------------------------------- /examples/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/test.php -------------------------------------------------------------------------------- /examples/vg/arc_pie_progress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/arc_pie_progress.php -------------------------------------------------------------------------------- /examples/vg/audio_musicplayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/audio_musicplayer.php -------------------------------------------------------------------------------- /examples/vg/circle_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/circle_basic.php -------------------------------------------------------------------------------- /examples/vg/color_constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/color_constants.php -------------------------------------------------------------------------------- /examples/vg/color_lightness.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/color_lightness.php -------------------------------------------------------------------------------- /examples/vg/ellipse_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/ellipse_basic.php -------------------------------------------------------------------------------- /examples/vg/fun_asteroids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/fun_asteroids.php -------------------------------------------------------------------------------- /examples/vg/fun_bitshifting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/fun_bitshifting.php -------------------------------------------------------------------------------- /examples/vg/fun_primes_1_full.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/fun_primes_1_full.php -------------------------------------------------------------------------------- /examples/vg/fun_solar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/fun_solar.php -------------------------------------------------------------------------------- /examples/vg/gradient_linear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/gradient_linear.php -------------------------------------------------------------------------------- /examples/vg/gradient_radial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/gradient_radial.php -------------------------------------------------------------------------------- /examples/vg/gradient_wave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/gradient_wave.php -------------------------------------------------------------------------------- /examples/vg/images_filtering.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/images_filtering.php -------------------------------------------------------------------------------- /examples/vg/images_repeating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/images_repeating.php -------------------------------------------------------------------------------- /examples/vg/images_scaling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/images_scaling.php -------------------------------------------------------------------------------- /examples/vg/images_texture_rotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/images_texture_rotation.php -------------------------------------------------------------------------------- /examples/vg/input_joystick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/input_joystick.php -------------------------------------------------------------------------------- /examples/vg/ml_genetic_cars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/ml_genetic_cars.php -------------------------------------------------------------------------------- /examples/vg/noise_explorer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/noise_explorer.php -------------------------------------------------------------------------------- /examples/vg/noise_grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/noise_grid.php -------------------------------------------------------------------------------- /examples/vg/polygon_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/polygon_basic.php -------------------------------------------------------------------------------- /examples/vg/rectangle_animation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/rectangle_animation.php -------------------------------------------------------------------------------- /examples/vg/rectangle_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/rectangle_basic.php -------------------------------------------------------------------------------- /examples/vg/rectangle_rounded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/rectangle_rounded.php -------------------------------------------------------------------------------- /examples/vg/shapes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/shapes.php -------------------------------------------------------------------------------- /examples/vg/stroke_inner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/stroke_inner.php -------------------------------------------------------------------------------- /examples/vg/stroke_outer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/stroke_outer.php -------------------------------------------------------------------------------- /examples/vg/stroke_size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/stroke_size.php -------------------------------------------------------------------------------- /examples/vg/text_alignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/text_alignment.php -------------------------------------------------------------------------------- /examples/vg/text_boxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/text_boxes.php -------------------------------------------------------------------------------- /examples/vg/text_color_words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/text_color_words.php -------------------------------------------------------------------------------- /examples/vg/text_intro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/text_intro.php -------------------------------------------------------------------------------- /examples/vg/videomodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/examples/vg/videomodes.php -------------------------------------------------------------------------------- /generator/README.md: -------------------------------------------------------------------------------- 1 | # PHP-GLFW binding generator 2 | -------------------------------------------------------------------------------- /generator/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/bootstrap.php -------------------------------------------------------------------------------- /generator/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/build -------------------------------------------------------------------------------- /generator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/composer.json -------------------------------------------------------------------------------- /generator/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/composer.lock -------------------------------------------------------------------------------- /generator/data/fncdoc_override/vg/circle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/data/fncdoc_override/vg/circle.md -------------------------------------------------------------------------------- /generator/data/fncdoc_override/vg/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/data/fncdoc_override/vg/fill.md -------------------------------------------------------------------------------- /generator/data/fncdoc_override/vg/reset.md: -------------------------------------------------------------------------------- 1 | Resets the current render state to default values. 2 | -------------------------------------------------------------------------------- /generator/data/gl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/data/gl.xml -------------------------------------------------------------------------------- /generator/data/glrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/data/glrefs.json -------------------------------------------------------------------------------- /generator/import-gl-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/import-gl-docs -------------------------------------------------------------------------------- /generator/make-example-docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/make-example-docs.php -------------------------------------------------------------------------------- /generator/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/phpunit.xml -------------------------------------------------------------------------------- /generator/src/ExtArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/ExtArgument.php -------------------------------------------------------------------------------- /generator/src/ExtConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/ExtConstant.php -------------------------------------------------------------------------------- /generator/src/ExtConstantGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/ExtConstantGroup.php -------------------------------------------------------------------------------- /generator/src/ExtDocParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/ExtDocParser.php -------------------------------------------------------------------------------- /generator/src/ExtFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/ExtFunction.php -------------------------------------------------------------------------------- /generator/src/ExtGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/ExtGenerator.php -------------------------------------------------------------------------------- /generator/src/ExtInternalPtrObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/ExtInternalPtrObject.php -------------------------------------------------------------------------------- /generator/src/ExtResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/ExtResource.php -------------------------------------------------------------------------------- /generator/src/ExtType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/ExtType.php -------------------------------------------------------------------------------- /generator/src/GLFWHeaderParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/GLFWHeaderParser.php -------------------------------------------------------------------------------- /generator/src/GLSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/GLSpec.php -------------------------------------------------------------------------------- /generator/src/GLSpec/GLConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/GLSpec/GLConstant.php -------------------------------------------------------------------------------- /generator/src/GLSpec/GLConstantGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/GLSpec/GLConstantGroup.php -------------------------------------------------------------------------------- /generator/src/GLSpec/GLFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/GLSpec/GLFunction.php -------------------------------------------------------------------------------- /generator/src/GLSpec/GLFunctionArg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/GLSpec/GLFunctionArg.php -------------------------------------------------------------------------------- /generator/src/GLSpec/GLVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/GLSpec/GLVersion.php -------------------------------------------------------------------------------- /generator/src/GLSpecReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/GLSpecReader.php -------------------------------------------------------------------------------- /generator/src/NVGParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/NVGParser.php -------------------------------------------------------------------------------- /generator/src/PHPGLFWBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/PHPGLFWBuffer.php -------------------------------------------------------------------------------- /generator/src/PHPGLFWMathObj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/PHPGLFWMathObj.php -------------------------------------------------------------------------------- /generator/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/src/functions.php -------------------------------------------------------------------------------- /generator/templates/docs/buffer.md.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/templates/docs/buffer.md.php -------------------------------------------------------------------------------- /generator/templates/docs/math_mat.md.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/templates/docs/math_mat.md.php -------------------------------------------------------------------------------- /generator/templates/docs/math_vec.md.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/templates/docs/math_vec.md.php -------------------------------------------------------------------------------- /generator/templates/phpglfw.stub.php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/templates/phpglfw.stub.php.php -------------------------------------------------------------------------------- /generator/templates/phpglfw_buffer.c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/templates/phpglfw_buffer.c.php -------------------------------------------------------------------------------- /generator/templates/phpglfw_buffer.h.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/templates/phpglfw_buffer.h.php -------------------------------------------------------------------------------- /generator/templates/phpglfw_math.c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/templates/phpglfw_math.c.php -------------------------------------------------------------------------------- /generator/templates/phpglfw_math.h.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/templates/phpglfw_math.h.php -------------------------------------------------------------------------------- /generator/templates/phpglfw_vg.c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/templates/phpglfw_vg.c.php -------------------------------------------------------------------------------- /generator/templates/phpglfw_vg.h.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/templates/phpglfw_vg.h.php -------------------------------------------------------------------------------- /generator/tests/ExtArgumentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/tests/ExtArgumentTest.php -------------------------------------------------------------------------------- /generator/tests/ExtFunctionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/generator/tests/ExtFunctionTest.php -------------------------------------------------------------------------------- /install/macos-installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/install/macos-installer.php -------------------------------------------------------------------------------- /linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/linmath.h -------------------------------------------------------------------------------- /mkdocs.insiders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/mkdocs.insiders.yml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /ogt_vox_c_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/ogt_vox_c_wrapper.cpp -------------------------------------------------------------------------------- /ogt_vox_c_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/ogt_vox_c_wrapper.h -------------------------------------------------------------------------------- /phpglfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw.c -------------------------------------------------------------------------------- /phpglfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw.h -------------------------------------------------------------------------------- /phpglfw.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw.stub.php -------------------------------------------------------------------------------- /phpglfw_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_arginfo.h -------------------------------------------------------------------------------- /phpglfw_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_audio.c -------------------------------------------------------------------------------- /phpglfw_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_audio.h -------------------------------------------------------------------------------- /phpglfw_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_buffer.c -------------------------------------------------------------------------------- /phpglfw_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_buffer.h -------------------------------------------------------------------------------- /phpglfw_constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_constants.c -------------------------------------------------------------------------------- /phpglfw_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_constants.h -------------------------------------------------------------------------------- /phpglfw_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_functions.c -------------------------------------------------------------------------------- /phpglfw_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_functions.h -------------------------------------------------------------------------------- /phpglfw_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_math.c -------------------------------------------------------------------------------- /phpglfw_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_math.h -------------------------------------------------------------------------------- /phpglfw_objparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_objparser.c -------------------------------------------------------------------------------- /phpglfw_objparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_objparser.h -------------------------------------------------------------------------------- /phpglfw_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_texture.c -------------------------------------------------------------------------------- /phpglfw_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_texture.h -------------------------------------------------------------------------------- /phpglfw_vg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_vg.c -------------------------------------------------------------------------------- /phpglfw_vg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_vg.h -------------------------------------------------------------------------------- /phpglfw_voxparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_voxparser.c -------------------------------------------------------------------------------- /phpglfw_voxparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mario-deluna/php-glfw/HEAD/phpglfw_voxparser.h -------------------------------------------------------------------------------- /phpunit.php: -------------------------------------------------------------------------------- 1 |