ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

Linux之X11+OpenGL+EGL绘制(二十),这些面试官常问的开发面试题你都掌握好了吗

2021-12-19 18:31:47  阅读:405  来源: 互联网

标签:loc 面试题 Linux 0.0 offset 面试官 shader egl display


  • atan(pos.y,pos.x) - phase ); \

} \

";

// handle to the shader

void print_shader_info_log (GLuint shader){

GLint length;

glGetShaderiv ( shader , GL_INFO_LOG_LENGTH , &length );

if ( length ) {

char* buffer = new char [ length ];

glGetShaderInfoLog ( shader , length , NULL , buffer );

cout << "shader info: " << buffer << flush;

delete [] buffer;

GLint success;

glGetShaderiv( shader, GL_COMPILE_STATUS, &success );

if ( success != GL_TRUE ) exit ( 1 );

}

}

GLuint load_shader ( const char *shader_source, GLenum type){

GLuint shader = glCreateShader( type );

glShaderSource ( shader , 1 , &shader_source , NULL );

glCompileShader ( shader );

print_shader_info_log ( shader );

return shader;

}

Display *x_display;

Window win;

EGLDisplay egl_display;

EGLContext egl_context;

EGLSurface egl_surface;

GLfloat

norm_x = 0.0,

norm_y = 0.0,

offset_x = 0.0,

offset_y = 0.0,

p1_pos_x = 0.0,

p1_pos_y = 0.0;

GLint phase_loc, offset_loc, position_loc;

bool update_pos = false;

const float vertexArray[] = {

0.0, 0.5, 0.0,

-0.5, 0.0, 0.0,

0.0, -0.5, 0.0,

0.5, 0.0, 0.0,

0.0, 0.5, 0.0

};

void render(){

static float phase = 0;

static int donesetup = 0;

static XWindowAttributes gwa;

draw

if ( !donesetup ) {

XWindowAttributes gwa;

XGetWindowAttributes ( x_display , win , &gwa );

glViewport ( 0 , 0 , gwa.width , gwa.height );

glClearColor ( 0.08 , 0.06 , 0.07 , 1.); // background color

donesetup = 1;

}

glClear ( GL_COLOR_BUFFER_BIT );

glUniform1f ( phase_loc , phase ); // write the value of phase to the shaders phase

phase = fmodf ( phase + 0.5f , 2.f * 3.141f ); // and update the local variable

if ( update_pos ) { // if the position of the texture has changed due to user action

GLfloat old_offset_x = offset_x;

GLfloat old_offset_y = offset_y;

offset_x = norm_x - p1_pos_x;

offset_y = norm_y - p1_pos_y;

p1_pos_x = norm_x;

p1_pos_y = norm_y;

offset_x += old_offset_x;

offset

《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》

【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享

_y += old_offset_y;

update_pos = false;

}

glUniform4f ( offset_loc , offset_x , offset_y , 0.0 , 0.0 );

glVertexAttribPointer ( position_loc, 3, GL_FLOAT, false, 0, vertexArray );

glEnableVertexAttribArray ( position_loc );

glDrawArrays ( GL_TRIANGLE_STRIP, 0, 5 );

eglSwapBuffers ( egl_display, egl_surface ); // get the rendered buffer to the screen

}

int main(){

/// the X11 part //

// in the first part the program opens a connection to the X11 window manager

//

x_display = XOpenDisplay ( NULL ); // open the standard display (the primary screen)

if ( x_display == NULL ) {

cerr << “cannot connect to X server” << endl;

return 1;

}

Window root = DefaultRootWindow( x_display ); // get the root window (usually the whole screen)

XSetWindowAttributes swa;

swa.event_mask = ExposureMask | PointerMotionMask | KeyPressMask;

win = XCreateWindow ( // create a window with the provided parameters

x_display, root,

0, 0, 800, 480, 0,

CopyFromParent, InputOutput,

CopyFromParent, CWEventMask,

&swa );

XSetWindowAttributes xattr;

Atom atom;

int one = 1;

xattr.override_redirect = False;

XChangeWindowAttributes ( x_display, win, CWOverrideRedirect, &xattr );

atom = XInternAtom ( x_display, “_NET_WM_STATE_FULLSCREEN”, True );

XChangeProperty (

x_display, win,

XInternAtom ( x_display, “_NET_WM_STATE”, True ),

XA_ATOM, 32, PropModeReplace,

(unsigned char*) &atom, 1 );

XChangeProperty (

x_display, win,

XInternAtom ( x_display, “_HILDON_NON_COMPOSITED_WINDOW”, False ),

XA_INTEGER, 32, PropModeReplace,

(unsigned char*) &one, 1);

XWMHints hints;

hints.input = True;

hints.flags = InputHint;

XSetWMHints(x_display, win, &hints);

XMapWindow ( x_display , win ); // make the window visible on the screen

XStoreName ( x_display , win , “GL test” ); // give the window a name

get identifiers for the provided atom name strings

Atom wm_state = XInternAtom ( x_display, “_NET_WM_STATE”, False );

Atom fullscreen = XInternAtom ( x_display, “_NET_WM_STATE_FULLSCREEN”, False );

XEvent xev;

memset ( &xev, 0, sizeof(xev) );

xev.type = ClientMessage;

xev.xclient.window = win;

xev.xclient.message_type = wm_state;

xev.xclient.format = 32;

xev.xclient.data.l[0] = 1;

xev.xclient.data.l[1] = fullscreen;

XSendEvent ( // send an event mask to the X-server

x_display,

DefaultRootWindow ( x_display ),

False,

SubstructureNotifyMask,

&xev );

/// the egl part //

// egl provides an interface to connect the graphics related functionality of openGL ES

// with the windowing interface and functionality of the native operation system (X11

// in our case.

egl_display = eglGetDisplay( (EGLNativeDisplayType) x_display );

if ( egl_display == EGL_NO_DISPLAY ) {

cerr << “Got no EGL display.” << endl;

return 1;

}

if ( !eglInitialize( egl_display, NULL, NULL ) ) {

cerr << “Unable to initialize EGL” << endl;

return 1;

}

EGLint attr[] = { // some attributes to set up our egl-interface

EGL_BUFFER_SIZE, 16,

EGL_RENDERABLE_TYPE,

EGL_OPENGL_ES2_BIT,

EGL_NONE

};

EGLConfig ecfg;

EGLint num_config;

if ( !eglChooseConfig( egl_display, attr, &ecfg, 1, &num_config ) ) {

cerr << "Failed to choose config (eglError: " << eglGetError() << “)” << endl;

return 1;

}

if ( num_config != 1 ) {

cerr << "Didn’t get exactly one config, but " << num_config << endl;

return 1;

}

egl_surface = eglCreateWindowSurface ( egl_display, ecfg, win, NULL );

if ( egl_surface == EGL_NO_SURFACE ) {

cerr << "Unable to create EGL surface (eglError: " << eglGetError() << “)” << endl;

return 1;

}

egl-contexts collect all state descriptions needed required for operation

EGLint ctxattr[] = {

EGL_CONTEXT_CLIENT_VERSION, 2,

EGL_NONE

};

egl_context = eglCreateContext ( egl_display, ecfg, EGL_NO_CONTEXT, ctxattr );

if ( egl_context == EGL_NO_CONTEXT ) {

cerr << "Unable to create EGL context (eglError: " << eglGetError() << “)” << endl;

return 1;

}

associate the egl-context with the egl-surface

eglMakeCurrent( egl_display, egl_surface, egl_surface, egl_context );

/// the openGL part ///

GLuint vertexShader = load_shader ( vertex_src , GL_VERTEX_SHADER ); // load vertex shader

GLuint fragmentShader = load_shader ( fragment_src , GL_FRAGMENT_SHADER ); // load fragment shader

GLuint shaderProgram = glCreateProgram (); // create program object

glAttachShader ( shaderProgram, vertexShader ); // and attach both…

glAttachShader ( shaderProgram, fragmentShader ); // … shaders to it

glLinkProgram ( shaderProgram ); // link the program

glUseProgram ( shaderProgram ); // and select it for usage

now get the locations (kind of handle) of the shaders variables

position_loc = glGetAttribLocation ( shaderProgram , “position” );

phase_loc = glGetUniformLocation ( shaderProgram , “phase” );

offset_loc = glGetUniformLocation ( shaderProgram , “offset” );

if ( position_loc < 0 || phase_loc < 0 || offset_loc < 0 ) {

标签:loc,面试题,Linux,0.0,offset,面试官,shader,egl,display
来源: https://blog.csdn.net/m0_65146387/article/details/122027537

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有