雖然這篇glBegin鄉民發文沒有被收入到精華區:在glBegin這個話題中,我們另外找到其它相關的精選爆讚文章
[爆卦]glBegin是什麼?優點缺點精華區懶人包
你可能也想看看
搜尋相關網站
-
#1glBegin 函式(Gl) - Win32 apps | Microsoft Docs
GlBegin 和glend 函式會分隔基本或類似基本類型群組的頂點。 |glBegin 函式(Gl)
-
#2OpenGL关于glBegin的参数的理解_Tan_HandSome的博客
include<GL/glut.h>#include<iostream>using namespace std;void init(){glClearColor(0.0, 0.0, 0.0, 0.0);glMatrixMode(GL_PROJECTION) ...
-
#3glBegin_百度百科
glBegin 是OpenGL裏使用的函數。而OpenGL是一種高性能圖形算法行業標準,是行業領域中最為廣泛接納的2D/3D 圖形API,其自誕生至今已催生了各種計算機平台及設備上的數千 ...
-
#4glBegin - Khronos Group
glBegin and glEnd delimit the vertices that define a primitive or a group of like primitives. glBegin accepts a single argument that specifies in which of ...
-
#5glBegin - OpenGL 3 - docs.gl
glBegin and glEnd delimit the vertices that define a primitive or a group of like primitives. glBegin accepts a single argument that specifies in which of ten ...
-
#6glBegin - 中文百科知識
glBegin 是OpenGL里使用的函式。而OpenGL是一種高性能圖形算法行業標準,是行業領域中最為廣泛接納的2D/3D 圖形API,其自誕生至今已催生了各種計算機平台及設備上的數千 ...
-
#7glBegin or glEnd Subroutine - IBM
glBegin and · glEnd subroutines delimit the vertices that define a primitive or group of like primitives. The · glBegin subroutine accepts a single argument that ...
-
#8Python GL.glBegin方法代碼示例- 純淨天空
需要導入模塊: from OpenGL import GL [as 別名] # 或者: from OpenGL.GL import glBegin [as 別名] def draw_box(self, x0, y0, x1, y1): '''Draws a selection box ...
-
#9glBegin
glBegin and glEnd delimit the vertices that define a primitive or a group of like primitives. glBegin accepts a single argument that specifies which of ten ways ...
-
#10glBegin, glEnd Reference Page
glBegin and glEnd delimit the verties that define a primitive or a group of like primitives. glBegin accepts a single argument that specifies which of ten ways ...
-
#11What is the modern OpenGL equivalent to glBegin/glEnd
You pretty much answered your own question. is there any modern equivalent to glBegin/glEnd? It doesn't have to a call for every vertex, ...
-
#12glBegin()使用小结- 叶梅树 - 博客园
在glBegin()和glEnd()之间可调用的函数函数函数意义glVertex*()设置顶点坐标glColor*()设置当前颜色glIndex*()设置当前颜色表glNormal*()设置法向 ...
-
#13OpenGL Tutorial - computer graphics
glBegin (GL_TRIANGLES);. • glVertex2f(-2, -1);. • glVertex2f(1, -1);. • glVertex2f(0, 2);. • glEnd();. • *Default color is actually white. (-5,-5).
-
#14glbegin—搜狗百科
glBegin 是OpenGL里使用的函数。而OpenGL是一种高性能图形算法行业标准,是行业领域中最为广泛接纳的2D/3D 图形API,其自诞生至今已催生了各种计算机平台及设备上的数千 ...
-
#15glBegin – DGL Wiki
glBegin und glEnd umschließen eine Liste von Eckpunkten (Vertices) die eine Primitive oder Gruppe von Primitiven darstellt. glBegin erhält ein ...
-
#16org.lwjgl.opengl.GL11.glBegin java code examples | Tabnine
glColor4f(renderingBackgroundColor.r, renderingBackgroundColor.g, renderingBackgroundColor.b, renderingBackgroundColor.a); glBegin(GL_QUADS); glVertex3f(0, ...
-
#17Python OpenGL.GL.glBegin() Examples - ProgramCreek.com
glBegin () Examples. The following are 23 code examples for showing how to use OpenGL.GL.glBegin(). These examples are extracted from open source projects.
-
#18OpenGL,glBegin / glEnd等效於一個繪製調用?
使用glBegin / glEnd時,是否等效於一次繪製調用?我的意思是,據我所知,使用glDrawArrays時,這就是將數據傳輸到GPU(客戶端到服務器端)的關鍵。什麼時候...
-
#19【C++】glPushMatrix()和glBegin()之間有聯絡嗎? - 程式人生
【C++】glPushMatrix()和glBegin()之間有聯絡嗎? 2020-11-30 C++. 我計算了很多頂點,然後用四邊形條顯示它們以生成3D表面圖。 我對某些頂點有奇怪的行為,以無法預測 ...
-
#20OpenGL Programming/reference/glBegin - Wikibooks
2.1 Allowed Primitive Types; 2.2 Functions allowed inside a glBegin glEnd section. 3 Useage Examples; 4 functon definitions; 5 Related functions ...
-
#21glBegin - 快懂百科
glBegin 是OpenGL里使用的函数。而OpenGL是一种高性能图形算法行业标准,是行业领域中最为广泛接纳的2D/3D图形API,其自诞生至今已催生了各种计算机平台及设备上的数千 ...
-
#22C++ (Cpp) glBegin Examples - HotExamples
C++ (Cpp) glBegin - 30 examples found. These are the top rated real world C++ (Cpp) examples of glBegin extracted from open source projects.
-
#23glBegin, glEnd and glVertex2f not recognised when using ...
Even learnopengl is somewhat out of date but still about 95% similar to more modern opengl, where the older api you're trying to learn is 15 ...
-
#24win32/glbegin.md at docs - GitHub
The glBegin and glend functions delimit the vertices of a primitive or a group of like primitives. Syntax. void WINAPI glBegin( GLenum mode ); ...
-
#25glBegin(GL_LINE_STRIP)學習- IT閱讀 - ITREAD01.COM
glBegin (GL_LINE_STRIP)學習 ... 呼叫一次void myDisplay(void) { glColor3f(0.25, 0.25, 0.0); glBegin(GL_TRIANGLE_STRIP); glVertex3f(0.25, 0.25, ...
-
#26glBegin(GL_LINE_STRIP)学习_海涛高软-程序员宝宝
glBegin (GL_LINE_STRIP)学习_海涛高软-程序员宝宝. 技术标签: OpenGL. #include <GL\glut.h> #include <iostream> //FR:海涛软件(QQ技术交流群:386476712) //鼠标 ...
-
#27openGL function-glBegin, glEnd(Others-Community) - TitanWolf
Vertices 1 to n define this polygon. Function description: The glBegin and glEnd functions define the fixed-point definition of one or more groups of primitives ...
-
#28glBegin : PyOpenGL 3.1.0 GL Man Pages
glBegin. OpenGLContext tests/glu_tess.py Lines: 61. OpenGLContext tests/nehe4.py Lines: 52, 70. OpenGLContext tests/nehe7.py Lines: 178.
-
#29JOGL圖形形狀 - 極客書
隻要gl.glBegin()的Java JOGL的方法被調用時,它在內部調用OpenGL的glBegin()方法。這是在安裝JOGL的時間對用戶的係統上安裝本地庫文件的原因。
-
#30QOpenGLFunctions_1_0 Class | Qt GUI 5.9
void, glBegin(GLenum mode). void, glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap).
-
#31Points in OpenGL - PerCV Lab. at KHU
glBegin (GL_POINTS);. glVertex2fv(p0);. glVertex2fv(p1); ... glBegin(GL_LINES);. glVertex2fv(p0); ... glBegin(GL_LINE_STRIP);. glVertex2fv(p0);.
-
#32Linhas, Pontos e Polígonos - Introdução à OpenGL - Profa ...
glBegin (GL_POINTS); glColor3f(0.0f, 0.0f, 0.0f); glVertex2i(100, 50); glVertex2i(100, 130); glVertex2i(150, 130); glEnd();. Para desenhar outras primitivas, ...
-
#33glBegin - Twitter
De seneste tweets fra glBegin (@glBegin). Born 1992, retired 2008, still loved by many, hated by some. I'm in you GL driver.
-
#34Your First Polygon - NeHe Productions
glBegin (GL_TRIANGLES) means we want to start drawing a triangle, and glEnd() tells OpenGL we are done creating the triangle. Typically if you want 3 points, ...
-
#35glBegin - The Phix Programming Language
The glBegin() and glEnd() functions delimit the vertices that define a primitive or a group of like primitives. The glBegin() function accepts a single argument ...
-
#36glBegin - 代码交流
glBegin 是OpenGL里使用的函数。而OpenGL是一种高性能图形算法行业标准, 是行业领域中最为广泛接纳的2D/3D 图形API,其自诞生至今已催生了各种计算机平台及设备上的数千优秀 ...
-
#37openGL 函数-glBegin,glEnd_roaylchen的博客-程序员信息网
glBegin 是OpenGL里使用的函数。而OpenGL是一种高性能图形算法行业标准,是行业领域中最为广泛接纳的2D/3D 图形API,其自诞生至今已催生了各种计算机平台及设备上的数千 ...
-
#38关于c ++:与glBegin / glEnd等效的现代OpenGL是什么| 码农家园
What is the modern OpenGL equivalent to glBegin/glEnd我正在为OpenGL构建图形API,该API基于基本的调用绘图图形样式。 基本上,不是将数据存储 ...
-
#39CS248 OpenGL introduction - Simple Triangle Drawing
Simple Triangle Drawing. glBegin(GL_TRIANGLES); glColor3f(0.1, 0.2, 0.3); glVertex3f(0, 0, 0); glVertex3f(1, 0, 0); glVertex3f(0, 1, 0); glEnd();.
-
#40c++ - glMultMatrix在glBegin()内部不起作用
c++ - glMultMatrix在glBegin()内部不起作用 ... 我正在创建一个程序,允许我在3个空间中绘制点,使用Catmull-Rom样条线连接它们,然后在样条线周围绘制一个圆柱体。我正在 ...
-
#41#include <GL/glut.h> #include <math.h> #include <stdlib.h ...
... 0, rangeZ); glEnd(); } // function plotting void drawFunction(int x0, int y0, float amp) { glBegin(GL_LINE_STRIP); // GL_POINTS, GL_LINES glColor3f(1.0, ...
-
#42man glBegin(3) - manpagez
glBegin (3) glBegin(3). NAME. glBegin, glEnd - delimit the vertices of a primitive or a group of like primitives. C SPECIFICATION. void glBegin( GLenum mode ) ...
-
#43glBegin, glEnd - OpenGL 1.1 Reference - Talisman
glBegin, glEnd: delimit the vertices of a primitive or a group of like primitives. C Specification | Parameters | Description | Errors | See Also. [Up] C ...
-
#44OpenGL OpenGL - Cs Umd
– OpenGL functions begin gl, each word in caps: eg., glBegin, glPolygonMode. – Constants: GL_2D, GL_RGB, … – Data types: GLbyte, GLfloat, … Page 3. 3. GLUT. • ...
-
#45Manpage of GLBEGIN
glBegin, glEnd - délimite une primitive ou un groupe de primitives similaires de vertex. SPÉCIFICATION C. void glBegin( GLenum mode ). delim $$. PARAMÈTRES.
-
#46OpenGL:VBO或glBegin()+ glEnd()? - QA Stack
最近,我将原始OGL红皮书的读者链接到了教程站点。向下的第三个标头明确表示忘记了glBegin()和glEnd()作为典型的渲染方法。我是通过Redbook的方法学习的,但我 ...
-
#47SharpGL.OpenGL.glBegin(uint) Example - CSharpCodi
CSharp code examples for SharpGL.OpenGL.glBegin(uint). Learn how to use CSharp api SharpGL.OpenGL.glBegin(uint)
-
#48OpenGL关于glBegin的参数的理解_Tan_HandSome的博客
glBegin (GL_LINES); /*绘制一系列的非连接直线段。两点确定一条直线*/ glVertex2f(20.0, 100.0);/*v0*/ glVertex2f(100.0, 150.0);/*v1*/ glColor3f(1.0, 0.0, 0.0);
-
#49What are the primitive types available to a glBegin ... - Quizack
What are the primitive types available to a glBegin statement? Note: this question is often flagged by test takers. Read carefully and choose wisely, ...
-
#50glBegin()使用小结 - 360doc个人图书馆
在glBegin()和glEnd()之间可调用的函数 ... //glBegin(GL_POLYGON);//有顶点就必须要有glBegin() glEnd(); //for(i=0; i<n; ++i)
-
#51vertex array slower than glbegin/glend? - JOGL Development
Why is the vertex array slower than the glbegin/glend? And how could i improve the performance. The code is part of a particle engine. vertex array: init: ...
-
#52opengl Lesson 1 glBegin glend Drawing, - Programmer Group
Callable functions between glBegin() and glEnd(). Functional Meaning. glVertex*() Sets vertex coordinates glColor*() Sets the current color
-
#53OpenGL 解析glBegin()_爱博客-程序员宅基地
函数原型:void glBegin(GLenum mode)glBegin()是和glEnd()结合起来使用。参数解析:mode:创建元素的类型,比如:点,线等。可以是以下数值:GL_POINTS:把每个顶点 ...
-
#54OpenGL Overview - Song Ho Ahn
OpenGL Overview. Introduction; State Machine; glBegin() and glEnd(); glFlush() and glFinish(). OpenGL Introduction. OpenGL is a software interface to ...
-
#55Output graphics rendered by glBegin () and glEnd () as PDF
For example, ofApp.cpp glBegin(GL_LINES); glVertex2f(10, 15); glVertex2f(20, 200); glEnd(); How can I output this code written in ofApp.cpp ...
-
#56Legacy OpenGL code (glBegin/glEnd) on Switch - devkitPro
I understand that switch-glad only supports OpenGL 4.3, without legacy APIs such as glBegin() / glEnd(). What options do I have, ...
-
#57opengl第一课glBegin glend 绘图, - CodeAntenna
参考点击打开链接程序代码:1.在glBegin()和glEnd()之间可调用的函数函数函数意义glVertex*() 设置顶点坐标glColor*()设置当前颜...,CodeAntenna技术文章技术问题代码 ...
-
#58openGL 基礎知識(一)繪製簡單圖形 - 台部落
glBegin 與 glEnd 中,所畫圖形的不同都是通過設置glBegin中的參數來決定。 畫點 GL_POINTS 示例(所有代碼展示皆爲 ...
-
#59Shapes and Colors in OpenGL 1.1
The parameter to glBegin tells which type of primitive is being drawn. The GL_TRIANGLES primitive allows you to draw more than one triangle: Just specify three ...
-
#60OpenGL 二維向量(glVertex2f) 與三維向量(glVertex3f) Ch002
glBegin (GL_QUADS) ; glVertex2f(-0.5,-0.5) ; glVertex2f(-0.5,0.5) ; glVertex2f(0.5,0.5) ; glVertex2f(0.5,-0.5) ; glEnd() ; glFlush(); }
-
#61OpenGL學習: 用glVertex指定點,glbegin指定繪制操作
glBegin (GL_POINTS);. glVertex2f(0.0f, 0.0f);. glVertex2f(0.5f, 0.0f);. glEnd();. 則這兩個點將分別被畫 ...
-
#62Primitives • Functions: *void glBegin (GLenum mode)
Legal API calls between glBegin/End pairs. glVertex*(). glColor*(). glIndex*(). glSecondaryColor*(). glNormal*(). glMaterial*(). glFogCoord*().
-
#63ACCESS_VIOLATION exception on glBegin() with new driver
Hi, We have a legacy application which worked for years with many NVidia GPUs and drivers. Lately we installed the R460 U3 (461.40) driver ...
-
#64glBegin(GLenummode) glEnd -ANDSTRAN - 简书
函数原型: void glBegin(GLenummode) void glEnd(void) 参数说明: mode:创建图元的类型。可以是以下数值GL_POINTS:把每...
-
#65OpenGL学习之glBegin - 代码先锋网
函数原型:. void glBegin(GLenum mode) void glEnd(void). 参数说明:. mode:创建图元的类型。可以是以下数值GL_POINTS:把每一个顶点作为一个点进行处理,顶点n ...
-
#66關於新舊版之OpenGL 說明助教
glBegin 、glEnd、glNormal、glRotate、glTranslate、. glLoadIdentity、gl_Select 並不會有問題發生,可以完全正常的. 執行。但上述函式都已經在新版OpenGL 中(3.0 ...
-
#67Bug 739716 - Gentoo Bugzilla
... yes checking for GL/gl.h... yes checking for glBegin in -lGL... no configure: error: GL required Any hints how to solve this? cheers, t.
-
#68Drawing Lines in 3D - InformIT
The following short section of code draws a single line between two points (0,0,0) and (50,50,50): glBegin(GL_LINES); glVertex3f(0.0f, 0.0f, 0.0 ...
-
#69Manpages OpenGL - glbegin - Developpez.com
glBegin and glEnd delimit the vertices that define a primitive or a group of like primitives. glBegin accepts a single argument that specifies in which of ten ...
-
#71JOGL - Drawing with GL Lines - Tutorialspoint
We draw lines by passing a predefined field, Gl_lines to glBegin() method. This chapter provides examples to draw shapes like triangle, rhombus and a house, ...
-
#72How to convert from glBegin() and glEnd() to VBOs?
Back when I did the transition from immediate mode to vertex buffer object (VBO) in my own code base, I have found it easier to proceed with ...
-
#734.기본 도형 - OpenGL 매뉴얼
glBegin ~ glEnd 사이는 하나의 도형을 정의하는 논리적인 블록이다. 그래서 가독성을 높이기 위해 두 블록 사이에 { } 괄호로 감싸고 들여쓰기를 하기도 한다. void ...
-
#74Points, Circles & Lines
One way to draw primitives is to use the. glBegin command to tell OpenGL to begin interpreting a list of vertices as a particular primitive. • You then end the ...
-
#7517407 – (glGetString) Invocation of ... - freedesktop.org Bugzilla
Bugzilla – Bug 17407 Invocation of the interface glGetString between glBegin and glEnd does not generate GL_INVALID_OPERATION error Last ...
-
#76prog2b.cpp
... yint; glClear(GL_COLOR_BUFFER_BIT); glPointSize(6.0); // a DOT is 4 by 4 pixels glBegin(GL_POINTS); // Stars of the Big Dipper glVertex2i(289,190); ...
-
#77Triangle strip - Wikipedia
Newer versions support triangle strips using glDrawElements and glDrawArrays. To draw a triangle strip using immediate mode OpenGL, glBegin() must be passed the ...
-
#78macOS開發之OpenGL畫線及點線畫圍棋盤 - tw511教學網
glLineWidth(4.0f); glBegin(GL_LINES); glVertex2f(0.0f, 0.0f); glVertex2f(1.0f, 0.0f);. glEnd(); glDisable(GL_LINE_STIPPLE); 其中 ...
-
#79Pygame + OpenGL-在glBegin()之后如何绘制文本?
问题是我打电话 drawText 后不能打电话 glBegin(GL_QUADS) 。我如何创建一个矩形并使用文本的内容对其进行纹理处理,然后显示它,以便 drawText 甚至 ...
-
#80demo-4-simple-ogl.cc
Performing a Rendering Pass // // Simple method: glBegin / glEnd // - The ... Some Commands // glBegin(PRIMITIVE); // Start a rendering pass to render ...
-
#81Bug #1239792 “missing page for glBegin”
opengl-4.2-man-doc appears to have most functions documented, but is missing a man page for glBegin. Specifically, cayley:~% man glBegin No ...
-
#82Write code between glBegin()…glEnd() pair below to - Chegg
Write code between glBegin()…glEnd() pair below to draw the shape in Green shown in Fig. 3. 3 (5.3) 3 2 16,1) 1 (1.0) 0 (. glBegin ; If glend(); b.
-
#83你的第一个多边形 - qiliang.net
glBegin (GL_TRIANGLES)的意思是开始绘制三角形,glEnd() 告诉OpenGL三角形已经创建好了。通常您会需要画3个顶点,可以使用GL_TRIANGLES。在绝大多数的显卡上,绘制 ...
-
#84何种代码可以用于替换glBegin/glEnd? - 知乎
glBegin (GL_QUADS); // 定义一个或一组原始的顶点 { glTexCoord2f(0.0f, 1.0f); glVe…
-
#85Drawing Objects
glBegin ( GL_POLYGON ); glVertex2f(0.0, 0.0); glVertex2f(0.0, 3.0); glVertex2f(4.0, 3.0); glVertex2f(6.0, 3.0); glVertex2f(4.0, 3.0); glEnd();; Primitives: ...
-
#86OpenGL Primitives and Colours
glBegin (GL_POINTS); glVertex2f(1.0, 2.0); // x=1, y=2 glVertex2f(2.0, 3.0); // x=2, y=3 glVertex2fv(pt); // x=3, y=4 glVertex2i(4,5); // x=4, y=5 glEnd();.
-
#87glVertex2f - グラフィックス科学演習 / Graphics Science ...
glBegin () の引数 mode には描画する図形のタイプを指定します. void glVertex2f(GLfloat x, GLfloat y): glVertex2f() は2次元の座標値を設定するのに使います.
-
#88DerelictGL3 and glBegin() access violation. - Dlang Forum
Maybe I'm missing something, but whenever I attempt to call glBegin() with anything my program immediately encounters an access violation.
-
#89Restrictions on Using glBegin() and glEnd() - what-when-how ...
Describing Points, Lines, and Polygons (State Management and Drawing Geometric Objects) (OpenGL Programming) Part 2. Restrictions on Using glBegin() and glEnd().
-
#90“Fair” Quadrilateral Interpolation <ul><li>glBegin(GL_QUADS)
Fair” Quadrilateral Interpolation glBegin(GL_QUADS); glColor3fv(red); glVertex3fv(lowerLeft); glColor3fv(green); glVertex3fv(lowerRight); glColor3fv(red);…
-
#91glBegin()用法小结_唯有小天 - 新浪博客
在glBegin()和glEnd()之间可调用的函数. 函数函数意义 glVertex*() 设置顶点坐标 glColor*() 设置当前颜色 glIndex*() 设置当前颜色表
-
#92glBegin() glEnd() - Разные уроки по Программированию
Параметрами для glBegin() могут быть следующие флаги GL_POINTS, GL_LINES, GL_LINE_STRIP, GL_LINE_LOOP, GL_TRIANGLES, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, ...
-
#93OpenGL Distilled - 第 38 頁 - Google 圖書結果
Vertex arrays dramatically reduce function call overhead compared with glBegin()/ glEnd() and also allow vertex sharing. Using buffer objects causes OpenGL ...
-
#94glBegin() / glEnd() - 구차니의 잡동사니 모음
void glBegin(GLenum mode); GL_POINTS, GL_LINES, GL_LINE_STRIP, GL_LINE_LOOP, GL_TRIANGLES, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_QUADS,
-
#95Minimizing glBegin/glEnd not always optimal, was - Google ...
-- This is faster on a lit sphere. ... -- Gl.Glbegin(Gl.Gl_Quads); for I in Positive'Max(The_Model.First_Lat(Col), 2) .. ... -- Render only visible pixels.
-
#96Modeling void DrawPyramid(){ glBegin(GL_TRIANGLES)
Modeling: cylinder void DrawCylinder (int res){ GLfloat a, d = 2*PI/res ; glBegin(GL_TRIANGLE_FAN); glVertex3f(0.0, 0.0, 0.0); for (int i = 0, ...
-
#97计算机图形学 - Google 圖書結果
{ glBegin ( GL_LINES ) ; glvertex2f ( -0.8f , 0.8f ) ; glvertex2f ( 0.8f , 0.8f ) ; glEnd ( ) ; 64 glEnable ( GL_LINE_STIPPLE ) ; glLinestipple ( 1,0x00FF ) ...
-
#98COMPUTER GRAPHICS AND MULTIMEDIA INSIGHTS, MATHEMATICAL ...
Everytime when a primitive needs to be drawn on the screen, glBegin is called. A certain mode parameter indicative of the primitive that needs to be drawn ...
-
#99Opengl 3d polygon
The first line after glBegin, sets the first point of our polygon. ... steps of 3D rendering pipeline for each polygon glBegin(GL 3D Graphics in openGL.
-
#100#7 opengl 좌표계, glBegin(GL_POINTS)로 스프링 그리기 ...
#7 opengl 좌표계, glBegin(GL_POINTS)로 스프링 그리기, opengl 입력 받기 ... 모두가 ChangeSize 전까지 알기에 바로 ChangeSize함수로 가겠다. 클리핑 ...
glbegin 在 コバにゃんチャンネル Youtube 的最讚貼文
glbegin 在 大象中醫 Youtube 的最佳貼文
glbegin 在 大象中醫 Youtube 的最佳解答