First commit
This commit is contained in:
36
engine/programInfo.js
Executable file
36
engine/programInfo.js
Executable file
@@ -0,0 +1,36 @@
|
||||
/**
|
||||
* Kepler - Core
|
||||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Author: Kaj Dijksta
|
||||
*
|
||||
**/
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Program info Object
|
||||
* Object preserved to store a glsl program
|
||||
*/
|
||||
class programInfo{
|
||||
|
||||
constructor() {
|
||||
|
||||
this.url;
|
||||
this.program;
|
||||
this.pragmas;
|
||||
this.librarys;
|
||||
|
||||
this.rawData;
|
||||
this.vertexShader;
|
||||
this.fragmentShader;
|
||||
this.vertexShaderData;
|
||||
this.fragmentShaderData;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
export {programInfo as default};
|
||||
Reference in New Issue
Block a user