comparison libgui/graphics/qopengl-functions.h @ 30899:48ef5fabe9b7

maint: Use "fcn" as preferred abbreviation for "function" in libgui/. * Logger.cc, qopengl-functions.h: Replace "func", "fun" in variable names with "fcn".
author Rik <rik@octave.org>
date Tue, 05 Apr 2022 13:33:39 -0700
parents 796f54d4ddbf
children c6d54dd31a7e
comparison
equal deleted inserted replaced
30898:51a3d3a69193 30899:48ef5fabe9b7
61 #endif 61 #endif
62 } 62 }
63 63
64 #if defined (HAVE_QOPENGLFUNCTIONS_1_1) 64 #if defined (HAVE_QOPENGLFUNCTIONS_1_1)
65 65
66 void glAlphaFunc (GLenum func, GLclampf ref) 66 void glAlphaFunc (GLenum fcn, GLclampf ref)
67 { 67 {
68 m_glfcns.glAlphaFunc (func, ref); 68 m_glfcns.glAlphaFunc (fcn, ref);
69 } 69 }
70 70
71 void glBegin (GLenum mode) 71 void glBegin (GLenum mode)
72 { 72 {
73 m_glfcns.glBegin (mode); 73 m_glfcns.glBegin (mode);
148 void glDeleteTextures (GLsizei n, const GLuint *textures) 148 void glDeleteTextures (GLsizei n, const GLuint *textures)
149 { 149 {
150 m_glfcns.glDeleteTextures (n, textures); 150 m_glfcns.glDeleteTextures (n, textures);
151 } 151 }
152 152
153 void glDepthFunc (GLenum func) 153 void glDepthFunc (GLenum fcn)
154 { 154 {
155 m_glfcns.glDepthFunc (func); 155 m_glfcns.glDepthFunc (fcn);
156 } 156 }
157 157
158 void glDisable (GLenum cap) 158 void glDisable (GLenum cap)
159 { 159 {
160 m_glfcns.glDisable (cap); 160 m_glfcns.glDisable (cap);