GLKit 加載正方體圖形

首先在 xcode 中新建一個工程县钥,并導入一張圖片良价。然后在 ViewController.m 寫入以下代碼:

#import "ViewController.h"
#import <GLKit/GLKit.h>

typedef struct {
    
    GLKVector3 vertexCoordinate; //頂點坐標
    GLKVector2 textureCoordinate; //紋理坐標

}VertexData;

//頂點數(shù)
static NSInteger const kVertexCount = 36;

@interface ViewController ()<GLKViewDelegate>

@property(nonatomic,strong)GLKView * glkView;
@property(nonatomic,strong)GLKBaseEffect * baseEffect;
@property(nonatomic,assign)VertexData * vertices;

@property(nonatomic,strong)CADisplayLink * displayLink;
@property(nonatomic,assign)NSInteger angle;
@property(nonatomic,assign)GLuint * vertexBuffer;

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    //1.設置背景顏色
    self.view.backgroundColor = [UIColor blackColor];
    
    //2.設置 OpenGL ES 相關初始化配置
    [self setUpConfig];
    
    //3.圖形相關的頂點/紋理坐標數(shù)據(jù)
    [self setUpVertexData];
    
    //4.添加CADisplayLink
    [self addCADisplayLink];
}


-(void)setUpConfig
{
    //1.創(chuàng)建context并設置當前context
    EAGLContext * context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES3];
    [EAGLContext setCurrentContext:context];
    
    //2.創(chuàng)建GLKView并設置代理
    self.glkView = [[GLKView alloc] initWithFrame:CGRectMake(0, 100, self.view.bounds.size.width, self.view.bounds.size.width) context:context];
    self.glkView.backgroundColor = [UIColor clearColor];
    self.glkView.delegate = self;
    
    //3.設置使用的深度緩沖區(qū)個數(shù)
    self.glkView.drawableDepthFormat = GLKViewDrawableDepthFormat24;
    
    //4.添加GLKView
    [self.view addSubview:self.glkView];
    
    //5.獲取紋理圖片
    NSString * filePath = [[NSBundle mainBundle] pathForResource:@"mei" ofType:@"jpg"];
    UIImage * image = [UIImage imageWithContentsOfFile:filePath];
    
    //6.設置紋理參數(shù)
    NSDictionary * options = @{GLKTextureLoaderOriginBottomLeft:@(YES)};
    GLKTextureInfo * textureInfo = [GLKTextureLoader textureWithCGImage:image.CGImage options:options error:NULL];
    
    //7.創(chuàng)建GLKBaseEffect
    self.baseEffect = [[GLKBaseEffect alloc] init];
    self.baseEffect.texture2d0.name = textureInfo.name;
    self.baseEffect.texture2d0.target = textureInfo.target;
}


-(void)setUpVertexData
{
    //1.開辟頂點數(shù)據(jù)空間
    self.vertices = malloc(sizeof(VertexData) * kVertexCount);
    
    //2.設置頂點/紋理坐標數(shù)據(jù)
    // 前面
    self.vertices[0] = (VertexData){{-0.5, 0.5, 0.5},  {0, 1}};
    self.vertices[1] = (VertexData){{-0.5, -0.5, 0.5}, {0, 0}};
    self.vertices[2] = (VertexData){{0.5, 0.5, 0.5},   {1, 1}};
    
    self.vertices[3] = (VertexData){{-0.5, -0.5, 0.5}, {0, 0}};
    self.vertices[4] = (VertexData){{0.5, 0.5, 0.5},   {1, 1}};
    self.vertices[5] = (VertexData){{0.5, -0.5, 0.5},  {1, 0}};
    
    // 上面
    self.vertices[6] = (VertexData){{0.5, 0.5, 0.5},    {1, 1}};
    self.vertices[7] = (VertexData){{-0.5, 0.5, 0.5},   {0, 1}};
    self.vertices[8] = (VertexData){{0.5, 0.5, -0.5},   {1, 0}};
    self.vertices[9] = (VertexData){{-0.5, 0.5, 0.5},   {0, 1}};
    self.vertices[10] = (VertexData){{0.5, 0.5, -0.5},  {1, 0}};
    self.vertices[11] = (VertexData){{-0.5, 0.5, -0.5}, {0, 0}};
    
    // 下面
    self.vertices[12] = (VertexData){{0.5, -0.5, 0.5},    {1, 1}};
    self.vertices[13] = (VertexData){{-0.5, -0.5, 0.5},   {0, 1}};
    self.vertices[14] = (VertexData){{0.5, -0.5, -0.5},   {1, 0}};
    self.vertices[15] = (VertexData){{-0.5, -0.5, 0.5},   {0, 1}};
    self.vertices[16] = (VertexData){{0.5, -0.5, -0.5},   {1, 0}};
    self.vertices[17] = (VertexData){{-0.5, -0.5, -0.5},  {0, 0}};
    
    // 左面
    self.vertices[18] = (VertexData){{-0.5, 0.5, 0.5},    {1, 1}};
    self.vertices[19] = (VertexData){{-0.5, -0.5, 0.5},   {0, 1}};
    self.vertices[20] = (VertexData){{-0.5, 0.5, -0.5},   {1, 0}};
    self.vertices[21] = (VertexData){{-0.5, -0.5, 0.5},   {0, 1}};
    self.vertices[22] = (VertexData){{-0.5, 0.5, -0.5},   {1, 0}};
    self.vertices[23] = (VertexData){{-0.5, -0.5, -0.5},  {0, 0}};
    
    // 右面
    self.vertices[24] = (VertexData){{0.5, 0.5, 0.5},    {1, 1}};
    self.vertices[25] = (VertexData){{0.5, -0.5, 0.5},   {0, 1}};
    self.vertices[26] = (VertexData){{0.5, 0.5, -0.5},   {1, 0}};
    self.vertices[27] = (VertexData){{0.5, -0.5, 0.5},   {0, 1}};
    self.vertices[28] = (VertexData){{0.5, 0.5, -0.5},   {1, 0}};
    self.vertices[29] = (VertexData){{0.5, -0.5, -0.5},  {0, 0}};
    
    // 后面
    self.vertices[30] = (VertexData){{-0.5, 0.5, -0.5},   {0, 1}};
    self.vertices[31] = (VertexData){{-0.5, -0.5, -0.5},  {0, 0}};
    self.vertices[32] = (VertexData){{0.5, 0.5, -0.5},    {1, 1}};
    self.vertices[33] = (VertexData){{-0.5, -0.5, -0.5},  {0, 0}};
    self.vertices[34] = (VertexData){{0.5, 0.5, -0.5},    {1, 1}};
    self.vertices[35] = (VertexData){{0.5, -0.5, -0.5},   {1, 0}};
    
    //3.開辟數(shù)據(jù)緩存區(qū)
    glGenBuffers(1, &_vertexBuffer);
    glBindBuffer(GL_ARRAY_BUFFER, _vertexBuffer);
    GLsizeiptr bufferSize = sizeof(VertexData) * kVertexCount;
    glBufferData(GL_ARRAY_BUFFER, bufferSize, self.vertices, GL_STATIC_DRAW);
    
    //4.設置頂點數(shù)據(jù)讀取方式
    glEnableVertexAttribArray(GLKVertexAttribPosition);
    glVertexAttribPointer(GLKVertexAttribPosition, 3, GL_FLOAT, GL_FALSE, sizeof(VertexData), NULL + offsetof(VertexData, vertexCoordinate));
    
    //5.設置紋理坐標讀取方式
    glEnableVertexAttribArray(GLKVertexAttribTexCoord0);
    glVertexAttribPointer(GLKVertexAttribTexCoord0, 2, GL_FLOAT, GL_FALSE, sizeof(VertexData), NULL + offsetof(VertexData, textureCoordinate));
}


-(void)addCADisplayLink
{
    self.angle = 0;
    self.displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(update)];
    [self.displayLink addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes];
}


-(void)update
{
    //1.計算旋轉(zhuǎn)的度數(shù)(度數(shù)->弧度)
    self.angle = (self.angle + 5) % 360;
    
    //2.修改GLKBaseEffect中模型視圖矩陣堆棧
    self.baseEffect.transform.modelviewMatrix = GLKMatrix4MakeRotation(GLKMathDegreesToRadians(self.angle), 0.3f, 1.0f, -0.7f);
    
    //3.重新渲染
    [self.glkView display];
}


-(void)dealloc
{
    //1.設置EAGLContext為nil
    if ([EAGLContext currentContext] == self.glkView.context)
    {
        [EAGLContext setCurrentContext:nil];
    }
    
    //2.釋放頂點數(shù)據(jù)
    if (_vertices)
    {
        free(_vertices);
        _vertices = nil;
    }
    
    //3.刪除緩存區(qū)
    if (_vertexBuffer)
    {
        glDeleteBuffers(1, &_vertexBuffer);
        _vertexBuffer = 0;
    }
    
    //4.停止CADisplayLink
    [self.displayLink invalidate];
}


#pragma mark - GLKViewDelegate
- (void)glkView:(GLKView *)view drawInRect:(CGRect)rect
{
    //1.開啟深度測試
    glEnable(GL_DEPTH_TEST);
    
    //2.清除顏色/深度緩存區(qū)
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    
    //3.準備繪制
    [self.baseEffect prepareToDraw];
    
    //4.開始繪制
    glDrawArrays(GL_TRIANGLES, 0, kVertexCount);
}

@end

運行程序效果如下:
旋轉(zhuǎn)立方體.png

以下是程序的思維導圖:
思維導圖.png
最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末袖裕,一起剝皮案震驚了整個濱河市敷鸦,隨后出現(xiàn)的幾起案子材部,更是在濱河造成了極大的恐慌东亦,老刑警劉巖杏节,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡奋渔,警方通過查閱死者的電腦和手機镊逝,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來卒稳,“玉大人蹋半,你說我怎么就攤上這事〕淇樱” “怎么了减江?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長捻爷。 經(jīng)常有香客問我辈灼,道長,這世上最難降的妖魔是什么也榄? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任巡莹,我火速辦了婚禮,結果婚禮上甜紫,老公的妹妹穿的比我還像新娘降宅。我一直安慰自己,他們只是感情好囚霸,可當我...
    茶點故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布腰根。 她就那樣靜靜地躺著,像睡著了一般拓型。 火紅的嫁衣襯著肌膚如雪额嘿。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天劣挫,我揣著相機與錄音册养,去河邊找鬼。 笑死压固,一個胖子當著我的面吹牛球拦,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播帐我,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼坎炼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了焚刚?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤扇调,失蹤者是張志新(化名)和其女友劉穎矿咕,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡碳柱,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年捡絮,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片莲镣。...
    茶點故事閱讀 38,617評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡福稳,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出瑞侮,到底是詐尸還是另有隱情的圆,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布半火,位于F島的核電站越妈,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏钮糖。R本人自食惡果不足惜梅掠,卻給世界環(huán)境...
    茶點故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望店归。 院中可真熱鬧阎抒,春花似錦、人聲如沸消痛。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽肄满。三九已至谴古,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間稠歉,已是汗流浹背掰担。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留怒炸,地道東北人带饱。 一個月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像阅羹,于是被迫代替她去往敵國和親勺疼。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內(nèi)容