CSCI441 OpenGL Library 5.9.0
CS@Mines CSCI441 Computer Graphics Course Library
|
Sets up a default Gouraud Shader with vertex position and color inputs. More...
#include "ShaderUtils.hpp"
#include "objects.hpp"
#include <glad/gl.h>
#include <glm/glm.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <string>
#include <vector>
Go to the source code of this file.
Namespaces | |
namespace | CSCI441 |
CSCI441 Helper Functions for OpenGL. | |
namespace | SimpleShader2 |
Abstracts the process of working with a 2D shader program. | |
namespace | SimpleShader3 |
Abstracts the process of working with a 3D shader program. | |
Functions | |
void | CSCI441::SimpleShader2::enableFlatShading () |
turns on Flat Shading | |
void | CSCI441::SimpleShader2::enableSmoothShading () |
turns on Smooth Shading | |
void | CSCI441::SimpleShader2::setupSimpleShader () |
Registers a simple Gouraud shader for 2-Dimensional drawing. | |
GLuint | CSCI441::SimpleShader2::registerVertexArray (const std::vector< glm::vec2 > &VERTEX_POINTS, const std::vector< glm::vec3 > &VERTEX_COLORS) |
registers the associated vertex locations and colors with the GPU | |
void | CSCI441::SimpleShader2::updateVertexArray (GLuint VAOD, const std::vector< glm::vec2 > &VERTEX_POINTS, const std::vector< glm::vec3 > &VERTEX_COLORS) |
Updates GL_ARRAY_BUFFER for the corresponding VAO. | |
GLuint | CSCI441::SimpleShader2::registerVertexArray (GLuint NUM_POINTS, const glm::vec2 VERTEX_POINTS[], const glm::vec3 VERTEX_COLORS[]) |
registers the associated vertex locations and colors with the GPU | |
void | CSCI441::SimpleShader2::updateVertexArray (GLuint VAOD, GLuint NUM_POINTS, const glm::vec2 VERTEX_POINTS[], const glm::vec3 VERTEX_COLORS[]) |
Updates GL_ARRAY_BUFFER for the corresponding VAO. | |
void | CSCI441::SimpleShader2::setProjectionMatrix (const glm::mat4 &PROJECTION_MATRIX) |
Sets the Projection Matrix. | |
void | CSCI441::SimpleShader2::pushTransformation (const glm::mat4 &TRANSFORMATION_MATRIX) |
Pushes a transformation to the stack and updates our model matrix. | |
void | CSCI441::SimpleShader2::popTransformation () |
Pops the last transformation off the stack and updates our model matrix by the inverse of the last transformation. | |
void | CSCI441::SimpleShader2::resetTransformationMatrix () |
Sets the model matrix back to the identity matrix and clears the transformation stack. | |
void | CSCI441::SimpleShader2::draw (GLint PRIMITIVE_TYPE, GLuint VAOD, GLuint VERTEX_COUNT) |
loads associated VAO, drawing given primitive made up of corresponding number of vertices | |
void | CSCI441::SimpleShader3::enableFlatShading () |
turns on Flat Shading | |
void | CSCI441::SimpleShader3::enableSmoothShading () |
turns on Smooth Shading | |
void | CSCI441::SimpleShader3::setupSimpleShader () |
Registers a simple Gouraud Shader with Lambertian Illumination for 3-Dimensional drawing. | |
GLuint | CSCI441::SimpleShader3::registerVertexArray (const std::vector< glm::vec3 > &VERTEX_POINTS, const std::vector< glm::vec3 > &VERTEX_NORMALS) |
registers the associated vertex locations and colors with the GPU | |
void | CSCI441::SimpleShader3::updateVertexArray (GLuint VAOD, const std::vector< glm::vec3 > &VERTEX_POINTS, const std::vector< glm::vec3 > &VERTEX_NORMALS) |
Updates GL_ARRAY_BUFFER for the corresponding VAO. | |
GLuint | CSCI441::SimpleShader3::registerVertexArray (GLuint NUM_POINTS, const glm::vec3 VERTEX_POINTS[], const glm::vec3 VERTEX_NORMALS[]) |
registers the associated vertex locations and colors with the GPU | |
void | CSCI441::SimpleShader3::updateVertexArray (GLuint VAOD, GLuint NUM_POINTS, const glm::vec3 VERTEX_POINTS[], const glm::vec3 VERTEX_NORMALS[]) |
Updates GL_ARRAY_BUFFER for the corresponding VAO. | |
void | CSCI441::SimpleShader3::setProjectionMatrix (const glm::mat4 &PROJECTION_MATRIX) |
Sets the Projection Matrix. | |
void | CSCI441::SimpleShader3::setViewMatrix (const glm::mat4 &VIEW_MATRIX) |
Sets the View Matrix. | |
void | CSCI441::SimpleShader3::setLightPosition (const glm::vec3 &LIGHT_POSITION) |
sets position of single global light in world space | |
void | CSCI441::SimpleShader3::setLightColor (const glm::vec3 &LIGHT_COLOR) |
sets color of single global light | |
void | CSCI441::SimpleShader3::setMaterialColor (const glm::vec3 &MATERIAL_COLOR) |
sets current diffuse material color to apply to object | |
void | CSCI441::SimpleShader3::pushTransformation (const glm::mat4 &TRANSFORMATION_MATRIX) |
Pushes a transformation to the stack and updates our model matrix. | |
void | CSCI441::SimpleShader3::popTransformation () |
Pops the last transformation off the stack and updates our model matrix by the inverse of the last transformation. | |
void | CSCI441::SimpleShader3::resetTransformationMatrix () |
Sets the model matrix back to the identity matrix and clears the transformation stack. | |
void | CSCI441::SimpleShader3::enableLighting () |
turns on lighting and applies Phong Illumination to fragment | |
void | CSCI441::SimpleShader3::disableLighting () |
turns off lighting and applies material color to fragment | |
void | CSCI441::SimpleShader3::draw (GLint PRIMITIVE_TYPE, GLuint VAOD, GLuint VERTEX_COUNT) |
loads associated VAO, drawing given primitive made up of corresponding number of vertices | |
Sets up a default Gouraud Shader with vertex position and color inputs.
These functions, classes, and constants help minimize common code that needs to be written.
|
inline |
turns off lighting and applies material color to fragment
|
inline |
loads associated VAO, drawing given primitive made up of corresponding number of vertices
PRIMITIVE_TYPE | primitive type to use |
VAOD | VAO to load |
VERTEX_COUNT | number of vertices to draw |
|
inline |
loads associated VAO, drawing given primitive made up of corresponding number of vertices
PRIMITIVE_TYPE | primitive type to use |
VAOD | VAO to load |
VERTEX_COUNT | number of vertices to draw |
|
inline |
turns on Flat Shading
|
inline |
turns on Flat Shading
|
inline |
turns on lighting and applies Phong Illumination to fragment
|
inline |
turns on Smooth Shading
|
inline |
turns on Smooth Shading
|
inline |
Pushes a transformation to the stack and updates our model matrix.
TRANSFORMATION_MATRIX | homogeneous transformation to stack on model matrix |
|
inline |
Pushes a transformation to the stack and updates our model matrix.
TRANSFORMATION_MATRIX | transformation to stack on model matrix |
|
inline |
registers the associated vertex locations and colors with the GPU
VERTEX_POINTS | vector of vertex (x,y) locations |
VERTEX_COLORS | vector of vertex (r,g,b) colors |
|
inline |
registers the associated vertex locations and colors with the GPU
VERTEX_POINTS | vector of vertex (x,y,z) locations in object space |
VERTEX_NORMALS | vector of vertex (x,y,z) normals in object space |
|
inline |
registers the associated vertex locations and colors with the GPU
NUM_POINTS | number of points in each array |
VERTEX_POINTS | array of vertex (x,y) locations |
VERTEX_COLORS | array of vertex (r,g,b) colors |
|
inline |
registers the associated vertex locations and colors with the GPU
NUM_POINTS | number of points in each array |
VERTEX_POINTS | array of vertex (x,y,z) locations in object space |
VERTEX_NORMALS | array of vertex (x,y,z) normals in object space |
|
inline |
sets color of single global light
LIGHT_COLOR | light color in RGB space |
|
inline |
sets position of single global light in world space
LIGHT_POSITION | position of light in world space |
|
inline |
sets current diffuse material color to apply to object
MATERIAL_COLOR | diffuse material color in RGB space |
|
inline |
Sets the Projection Matrix.
PROJECTION_MATRIX | homogeneous projection matrix to set |
|
inline |
Sets the Projection Matrix.
PROJECTION_MATRIX | homogeneous projection matrix to set |
|
inline |
Sets the View Matrix.
VIEW_MATRIX | homogeneous view matrix to set |
|
inline |
Updates GL_ARRAY_BUFFER for the corresponding VAO.
Copies the data for the vertex positions and colors from CPU RAM to the GPU for the already registered VAO. The data is copied in to the GL_ARRAY_BUFFER VBO for this VAO. When function completes, the passed VAO is currently bound.
VAOD | Vertex Array Object Descriptor |
VERTEX_POINTS | vector of vertex (x,y) locations |
VERTEX_COLORS | vector of vertex (r,g,b) colors |
|
inline |
Updates GL_ARRAY_BUFFER for the corresponding VAO.
Copies the data for the vertex positions and colors from CPU RAM to the GPU for the already registered VAO. The data is copied in to the GL_ARRAY_BUFFER VBO for this VAO. When function completes, the passed VAO is currently bound.
VAOD | Vertex Array Object Descriptor |
VERTEX_POINTS | vector of vertex (x,y,z) locations in object space |
VERTEX_NORMALS | vector of vertex (x,y,z) normals in object space |
|
inline |
Updates GL_ARRAY_BUFFER for the corresponding VAO.
Copies the data for the vertex positions and colors from CPU RAM to the GPU for the already registered VAO. The data is copied in to the GL_ARRAY_BUFFER VBO for this VAO. When function completes, the passed VAO is currently bound.
VAOD | Vertex Array Object Descriptor |
NUM_POINTS | number of points in each array |
VERTEX_POINTS | vector of vertex (x,y) locations |
VERTEX_COLORS | vector of vertex (r,g,b) colors |
|
inline |
Updates GL_ARRAY_BUFFER for the corresponding VAO.
Copies the data for the vertex positions and colors from CPU RAM to the GPU for the already registered VAO. The data is copied in to the GL_ARRAY_BUFFER VBO for this VAO. When function completes, the passed VAO is currently bound.
VAOD | Vertex Array Object Descriptor |
NUM_POINTS | number of points in each array |
VERTEX_POINTS | array of vertex (x,y,z) locations in object space |
VERTEX_NORMALS | array of vertex (x,y,z) normals in object space |