Functions | Variables
sharing.c File Reference
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include <stdio.h>
#include <stdlib.h>
#include "getopt.h"
#include "linmath.h"
Include dependency graph for sharing.c:

Go to the source code of this file.

Functions

static void error_callback (int error, const char *description)
 
static void key_callback (GLFWwindow *window, int key, int scancode, int action, int mods)
 
int main (int argc, char **argv)
 

Variables

static const char * fragment_shader_text
 
static const char * vertex_shader_text
 
static const vec2 vertices [4]
 

Function Documentation

static void error_callback ( int  error,
const char *  description 
)
static

Definition at line 64 of file sharing.c.

static void key_callback ( GLFWwindow window,
int  key,
int  scancode,
int  action,
int  mods 
)
static

Definition at line 69 of file sharing.c.

int main ( int  argc,
char **  argv 
)

Definition at line 75 of file sharing.c.

Variable Documentation

const char* fragment_shader_text
static
Initial value:
=
"#version 110\n"
"uniform sampler2D texture;\n"
"uniform vec3 color;\n"
"varying vec2 texcoord;\n"
"void main()\n"
"{\n"
" gl_FragColor = vec4(color * texture2D(texture, texcoord).rgb, 1.0);\n"
"}\n"

Definition at line 46 of file sharing.c.

const char* vertex_shader_text
static
Initial value:
=
"#version 110\n"
"uniform mat4 MVP;\n"
"attribute vec2 vPos;\n"
"varying vec2 texcoord;\n"
"void main()\n"
"{\n"
" gl_Position = MVP * vec4(vPos, 0.0, 1.0);\n"
" texcoord = vPos;\n"
"}\n"

Definition at line 35 of file sharing.c.

const vec2 vertices[4]
static
Initial value:
=
{
{ 0.f, 0.f },
{ 1.f, 0.f },
{ 1.f, 1.f },
{ 0.f, 1.f }
}

Definition at line 56 of file sharing.c.



librealsense2
Author(s): Sergey Dorodnicov , Doron Hirshberg , Mark Horn , Reagan Lopez , Itay Carpis
autogenerated on Mon May 3 2021 02:50:29