TDME2 1.9.121
|
Vulkan renderer. More...
#include <tdme/engine/subsystems/renderer/VKRenderer.h>
Classes | |
struct | buffer_object_type |
struct | context_type |
struct | delete_buffer_type |
struct | delete_image_type |
struct | framebuffer_object_type |
struct | framebuffer_pipelines_type |
struct | image_layout_change |
struct | program_type |
struct | shader_type |
struct | texture_type |
struct | uniform_buffer_type |
struct | window_frambuffer_buffer_type |
Public Member Functions | |
const string | getVendor () override |
const string | getRenderer () override |
const string | getShaderVersion () override |
void | initialize () override |
Initialize renderer. More... | |
void | initializeFrame () override |
Pre Frame Initialization. More... | |
void | finishFrame () override |
Finish frame. More... | |
bool | isSupportingMultithreadedRendering () override |
bool | isBufferObjectsAvailable () override |
Checks if buffer objects is available. More... | |
bool | isDepthTextureAvailable () override |
Checks if depth texture is available. More... | |
bool | isUsingProgramAttributeLocation () override |
bool | isSupportingIntegerProgramAttributes () override |
bool | isSpecularMappingAvailable () override |
bool | isNormalMappingAvailable () override |
bool | isInstancedRenderingAvailable () override |
Checks if instanced rendering is available. More... | |
bool | isPBRAvailable () override |
bool | isComputeShaderAvailable () override |
bool | isGLCLAvailable () override |
bool | isUsingShortIndices () override |
bool | isDeferredShadingAvailable () override |
int32_t | getTextureUnits () override |
int32_t | loadShader (int32_t type, const string &pathName, const string &fileName, const string &definitions=string(), const string &functions=string()) override |
Loads a shader. More... | |
void | useProgram (int contextIdx, int32_t programId) override |
Use shader program. More... | |
int32_t | createProgram (int type) override |
Creates a shader program. More... | |
void | attachShaderToProgram (int32_t programId, int32_t shaderId) override |
Attaches a shader to a program. More... | |
bool | linkProgram (int32_t programId) override |
Links attached shaders to a program. More... | |
int32_t | getProgramUniformLocation (int32_t programId, const string &name) override |
Returns location of given uniform variable. More... | |
void | setProgramUniformInteger (int contextIdx, int32_t uniformId, int32_t value) override |
Set up a integer uniform value. More... | |
void | setProgramUniformFloat (int contextIdx, int32_t uniformId, float value) override |
Set up a float uniform value. More... | |
void | setProgramUniformFloatMatrix3x3 (int contextIdx, int32_t uniformId, const array< float, 9 > &data) override |
Set up a float matrix 3x3 uniform value. More... | |
void | setProgramUniformFloatMatrix4x4 (int contextIdx, int32_t uniformId, const array< float, 16 > &data) override |
Set up a float matrix 4x4 uniform value. More... | |
void | setProgramUniformFloatMatrices4x4 (int contextIdx, int32_t uniformId, int32_t count, FloatBuffer *data) override |
Set up a float matrices 4x4 uniform values. More... | |
void | setProgramUniformFloatVec4 (int contextIdx, int32_t uniformId, const array< float, 4 > &data) override |
Set up a float vec4 uniform value. More... | |
void | setProgramUniformFloatVec3 (int contextIdx, int32_t uniformId, const array< float, 3 > &data) override |
Set up a float vec3 uniform value. More... | |
void | setProgramUniformFloatVec2 (int contextIdx, int32_t uniformId, const array< float, 2 > &data) override |
Set up a float vec2 uniform value. More... | |
void | setProgramAttributeLocation (int32_t programId, int32_t location, const string &name) override |
Bind attribute to a input location. More... | |
void | setViewPort (int32_t width, int32_t height) override |
Set up viewport parameter. More... | |
void | updateViewPort () override |
Update viewport. More... | |
void | setClearColor (float red, float green, float blue, float alpha) override |
Set up clear color. More... | |
void | enableCulling (int contextIdx) override |
Enable culling. More... | |
void | disableCulling (int contextIdx) override |
Disable culling. More... | |
void | setFrontFace (int contextIdx, int32_t frontFace) override |
Set up clock wise or counter clock wise faces as front face. More... | |
void | setCullFace (int32_t cullFace) override |
Sets up which face will be culled. More... | |
void | enableBlending () override |
Enables blending. More... | |
void | enableAdditionBlending () override |
Enable blending with c = a + b. More... | |
void | disableBlending () override |
Disables blending. More... | |
void | enableDepthBufferWriting () override |
Enable depth buffer writing. More... | |
void | disableDepthBufferWriting () override |
Disable depth buffer writing. More... | |
void | disableDepthBufferTest () override |
Disable depth buffer test. More... | |
void | enableDepthBufferTest () override |
Enable depth buffer test. More... | |
void | setDepthFunction (int32_t depthFunction) override |
Set up depth function. More... | |
void | setColorMask (bool red, bool green, bool blue, bool alpha) override |
Set up GL rendering colormask. More... | |
void | clear (int32_t mask) override |
Clear render buffer with given mask. More... | |
int32_t | createTexture () override |
Creates a texture. More... | |
int32_t | createDepthBufferTexture (int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex) override |
Creates a depth buffer texture. More... | |
int32_t | createColorBufferTexture (int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex) override |
Creates a color buffer texture. More... | |
int32_t | createGBufferGeometryTexture (int32_t width, int32_t height) override |
Creates a geometry buffer geometry texture. More... | |
int32_t | createGBufferColorTexture (int32_t width, int32_t height) override |
Creates a geometry buffer color RGBA texture. More... | |
void | uploadTexture (int contextIdx, Texture *texture) override |
Uploads texture data to current bound texture. More... | |
void | uploadCubeMapTexture (int contextIdx, Texture *textureLeft, Texture *textureRight, Texture *textureTop, Texture *textureBottom, Texture *textureFront, Texture *textureBack) override |
Uploads cube map texture data to current bound texture. More... | |
int32_t | createCubeMapTexture (int contextIdx, int32_t width, int32_t height) override |
Create cube map texture from frame buffers. More... | |
void | resizeDepthBufferTexture (int32_t textureId, int32_t width, int32_t height) override |
Resizes a depth texture. More... | |
void | resizeColorBufferTexture (int32_t textureId, int32_t width, int32_t height) override |
Resize color buffer texture. More... | |
void | resizeGBufferGeometryTexture (int32_t textureId, int32_t width, int32_t height) override |
Resizes a geometry buffer geometry texture. More... | |
void | resizeGBufferColorTexture (int32_t textureId, int32_t width, int32_t height) override |
Resizes a geometry buffer color RGBA texture. More... | |
void | bindTexture (int contextIdx, int32_t textureId) override |
Binds a texture with given id or unbinds when using ID_NONE. More... | |
void | bindCubeMapTexture (int contextIdx, int32_t textureId) override |
Binds a cube map texture with given id or unbinds when using ID_NONE. More... | |
void | disposeTexture (int32_t textureId) override |
Dispose a texture. More... | |
int32_t | createFramebufferObject (int32_t depthBufferTextureId, int32_t colorBufferTextureId, int32_t cubeMapTextureId=0, int32_t cubeMapTextureIndex=0) override |
Creates a frame buffer object with depth texture attached. More... | |
int32_t | createGeometryBufferObject (int32_t depthBufferTextureId, int32_t geometryBufferTextureId1, int32_t geometryBufferTextureId2, int32_t geometryBufferTextureId3, int32_t colorBufferTextureId1, int32_t colorBufferTextureId2, int32_t colorBufferTextureId3, int32_t colorBufferTextureId4, int32_t colorBufferTextureId5) override |
Creates a geometry frame buffer object. More... | |
void | bindFrameBuffer (int32_t frameBufferId) override |
Enables a framebuffer to be rendered. More... | |
void | disposeFrameBufferObject (int32_t frameBufferId) override |
Disposes a frame buffer object. More... | |
vector< int32_t > | createBufferObjects (int32_t bufferCount, bool useGPUMemory, bool shared) override |
Generate buffer objects for vertex data and such. More... | |
void | uploadBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data) override |
Uploads buffer data to buffer object. More... | |
void | uploadBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer *data) override |
Uploads buffer data to buffer object. More... | |
void | uploadBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer *data) override |
Uploads buffer data to buffer object. More... | |
void | uploadIndicesBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer *data) override |
Uploads buffer data to buffer object. More... | |
void | uploadIndicesBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer *data) override |
Uploads buffer data to buffer object. More... | |
void | bindIndicesBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind indices buffer object. More... | |
void | bindTextureCoordinatesBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind texture coordinates buffer object. More... | |
void | bindVerticesBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind vertices buffer object. More... | |
void | bindNormalsBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind normals buffer object. More... | |
void | bindColorsBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind colors buffer object. More... | |
void | bindTangentsBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind tangents buffer object. More... | |
void | bindBitangentsBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind bitangents buffer object. More... | |
void | bindModelMatricesBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind model matrices buffer object. More... | |
void | bindEffectColorMulsBufferObject (int contextIdx, int32_t bufferObjectId, int32_t divisor) override |
Bind effect color muls buffer object. More... | |
void | bindEffectColorAddsBufferObject (int contextIdx, int32_t bufferObjectIdd, int32_t divisor) override |
Bind effect color adds buffer object. More... | |
void | bindOriginsBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind origins buffer object. More... | |
void | bindTextureSpriteIndicesBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind texture and sprite indices buffer object. More... | |
void | bindPointSizesBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind point sizes buffer object. More... | |
void | bindSpriteSheetDimensionBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind sprite sheet dimension buffer object. More... | |
void | drawInstancedIndexedTrianglesFromBufferObjects (int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances) override |
Draw instanced indexed triangles from buffer objects. More... | |
void | drawIndexedTrianglesFromBufferObjects (int contextIdx, int32_t triangles, int32_t trianglesOffset) override |
Draw indexed triangles from buffer objects. More... | |
void | drawInstancedTrianglesFromBufferObjects (int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances) override |
Draw instanced triangles from buffer objects. More... | |
void | drawTrianglesFromBufferObjects (int contextIdx, int32_t triangles, int32_t trianglesOffset) override |
Draw triangles from buffer objects. More... | |
void | drawPointsFromBufferObjects (int contextIdx, int32_t points, int32_t pointsOffset) override |
Draw points from buffer objects. More... | |
void | setLineWidth (float lineWidth) override |
Set line width. More... | |
void | drawLinesFromBufferObjects (int contextIdx, int32_t points, int32_t pointsOffset) override |
Draw lines from buffer objects. More... | |
void | unbindBufferObjects (int contextIdx) override |
Unbind buffer objects. More... | |
void | disposeBufferObjects (vector< int32_t > &bufferObjectIds) override |
Disposes a frame buffer object. More... | |
float | readPixelDepth (int32_t x, int32_t y) override |
Reads a pixel depth. More... | |
ByteBuffer * | readPixels (int32_t x, int32_t y, int32_t width, int32_t height) override |
Read pixels. More... | |
void | initGuiMode () override |
Set up renderer for GUI rendering. More... | |
void | doneGuiMode () override |
Set up renderer for 3d rendering. More... | |
void | dispatchCompute (int contextIdx, int32_t numNodesX, int32_t numNodesY, int32_t numNodesZ) override |
Dispatch compute. More... | |
void | memoryBarrier () override |
Memory barrier. More... | |
void | uploadSkinningBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data) override |
Upload skinning buffer object. More... | |
void | uploadSkinningBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer *data) override |
Upload skinning buffer object. More... | |
void | bindSkinningVerticesBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind skinning vertices buffer object. More... | |
void | bindSkinningNormalsBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind skinning normal buffer object. More... | |
void | bindSkinningVertexJointsBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind skinning vertex joints buffer object. More... | |
void | bindSkinningVertexJointIdxsBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind skinning vertex joint indices buffer object. More... | |
void | bindSkinningVertexJointWeightsBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind skinning vertex joint weights buffer object. More... | |
void | bindSkinningVerticesResultBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind skinning vertices result buffer object. More... | |
void | bindSkinningNormalsResultBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind skinning normals result buffer object. More... | |
void | bindSkinningMatricesBufferObject (int contextIdx, int32_t bufferObjectId) override |
Bind skinning matrices result buffer object. More... | |
int32_t | getTextureUnit (int contextIdx) override |
Get texture unit. More... | |
void | setTextureUnit (int contextIdx, int32_t textureUnit) override |
Sets up texture unit. More... | |
const Renderer_Statistics | getStatistics () override |
void | setVSync (bool vSync) override |
Enable/Disable v-sync. More... | |
![]() | |
Renderer () | |
Public constructor. More... | |
virtual | ~Renderer () |
Destructor. More... | |
RendererType | getRendererType () |
virtual bool | prepareWindowSystemRendererContext (int tryIdx)=0 |
Prepare window system renderer context. More... | |
virtual bool | initializeWindowSystemRendererContext (GLFWwindow *glfwWindow)=0 |
Initialize window system renderer context. More... | |
virtual void | initialize ()=0 |
Initialize renderer. More... | |
virtual void | initializeFrame ()=0 |
Pre Frame Initialization. More... | |
virtual void | finishFrame ()=0 |
Finish frame. More... | |
virtual const string | getVendor ()=0 |
virtual const string | getRenderer ()=0 |
virtual const string | getShaderVersion ()=0 |
virtual bool | isSupportingMultithreadedRendering ()=0 |
virtual bool | isBufferObjectsAvailable ()=0 |
Checks if buffer objects is available. More... | |
virtual bool | isDepthTextureAvailable ()=0 |
Checks if depth texture is available. More... | |
virtual bool | isUsingProgramAttributeLocation ()=0 |
virtual bool | isSupportingIntegerProgramAttributes ()=0 |
virtual bool | isSpecularMappingAvailable ()=0 |
virtual bool | isNormalMappingAvailable ()=0 |
virtual bool | isInstancedRenderingAvailable ()=0 |
Checks if instanced rendering is available. More... | |
virtual bool | isPBRAvailable ()=0 |
virtual bool | isComputeShaderAvailable ()=0 |
virtual bool | isGLCLAvailable ()=0 |
virtual bool | isUsingShortIndices ()=0 |
virtual bool | isDeferredShadingAvailable ()=0 |
virtual int32_t | getTextureUnits ()=0 |
int32_t | getViewPortWidth () |
int32_t | getViewPortHeight () |
virtual int32_t | loadShader (int32_t type, const string &pathName, const string &fileName, const string &definitions=string(), const string &functions=string())=0 |
Loads a shader. More... | |
virtual void | useProgram (int contextIdx, int32_t programId)=0 |
Use shader program. More... | |
virtual int32_t | createProgram (int type)=0 |
Creates a shader program. More... | |
virtual void | attachShaderToProgram (int32_t programId, int32_t shaderId)=0 |
Attaches a shader to a program. More... | |
virtual bool | linkProgram (int32_t programId)=0 |
Links attached shaders to a program. More... | |
virtual int32_t | getProgramUniformLocation (int32_t programId, const string &name)=0 |
Returns location of given uniform variable. More... | |
virtual void | setProgramUniformInteger (int contextIdx, int32_t uniformId, int32_t value)=0 |
Set up a integer uniform value. More... | |
virtual void | setProgramUniformFloat (int contextIdx, int32_t uniformId, float value)=0 |
Set up a float uniform value. More... | |
virtual void | setProgramUniformFloatMatrix3x3 (int contextIdx, int32_t uniformId, const array< float, 9 > &value)=0 |
Set up a float matrix 3x3 uniform value. More... | |
virtual void | setProgramUniformFloatMatrix4x4 (int contextIdx, int32_t uniformId, const array< float, 16 > &value)=0 |
Set up a float matrix 4x4 uniform value. More... | |
virtual void | setProgramUniformFloatMatrices4x4 (int contextIdx, int32_t uniformId, int32_t count, FloatBuffer *data)=0 |
Set up a float matrices 4x4 uniform values. More... | |
virtual void | setProgramUniformFloatVec4 (int contextIdx, int32_t uniformId, const array< float, 4 > &data)=0 |
Set up a float vec4 uniform value. More... | |
virtual void | setProgramUniformFloatVec3 (int contextIdx, int32_t uniformId, const array< float, 3 > &data)=0 |
Set up a float vec3 uniform value. More... | |
virtual void | setProgramUniformFloatVec2 (int contextIdx, int32_t uniformId, const array< float, 2 > &data)=0 |
Set up a float vec2 uniform value. More... | |
virtual void | setProgramAttributeLocation (int32_t programId, int32_t location, const string &name)=0 |
Bind attribute to a input location. More... | |
int32_t | getEffectPass () |
Get effect pass. More... | |
void | setEffectPass (int32_t effectPass) |
Set effect pass. More... | |
const string & | getShaderPrefix () |
Get shader prefix. More... | |
void | setShaderPrefix (const string &shaderPrefix) |
Set shader prefix. More... | |
int32_t | getLighting (int contextIdx) |
Get current lighting model. More... | |
void | setLighting (int contextIdx, int32_t lighting) |
Set current lighting model. More... | |
Vector3 & | getCameraPosition () |
virtual void | setViewPort (int32_t width, int32_t height)=0 |
Set up viewport parameter. More... | |
virtual void | updateViewPort ()=0 |
Update viewport. More... | |
Matrix4x4 & | getProjectionMatrix () |
virtual void | onUpdateProjectionMatrix (int contextIdx)=0 |
Update projection matrix event. More... | |
Matrix4x4 & | getCameraMatrix () |
virtual void | onUpdateCameraMatrix (int contextIdx)=0 |
Update camera matrix event. More... | |
Matrix4x4 & | getModelViewMatrix () |
virtual void | onUpdateModelViewMatrix (int contextIdx)=0 |
Update model view matrix event. More... | |
Matrix4x4 & | getViewportMatrix () |
Matrix2D3x3 & | getTextureMatrix (int contextIdx) |
Get texture matrix. More... | |
virtual void | onUpdateTextureMatrix (int contextIdx)=0 |
Update texture matrix for active texture unit event. More... | |
virtual void | setClearColor (float red, float green, float blue, float alpha)=0 |
Set up clear color. More... | |
virtual void | enableCulling (int contextIdx)=0 |
Enable culling. More... | |
virtual void | disableCulling (int contextIdx)=0 |
Disable culling. More... | |
virtual void | setFrontFace (int contextIdx, int32_t frontFace)=0 |
Set up clock wise or counter clock wise faces as front face. More... | |
virtual void | setCullFace (int32_t cullFace)=0 |
Sets up which face will be culled. More... | |
virtual void | enableBlending ()=0 |
Enables blending. More... | |
virtual void | enableAdditionBlending ()=0 |
Enable blending with c = a + b. More... | |
virtual void | disableBlending ()=0 |
Disables blending. More... | |
virtual void | enableDepthBufferWriting ()=0 |
Enable depth buffer writing. More... | |
virtual void | disableDepthBufferWriting ()=0 |
Disable depth buffer writing. More... | |
virtual void | disableDepthBufferTest ()=0 |
Disable depth buffer test. More... | |
virtual void | enableDepthBufferTest ()=0 |
Enable depth buffer test. More... | |
virtual void | setDepthFunction (int32_t depthFunction)=0 |
Set up depth function. More... | |
virtual void | setColorMask (bool red, bool green, bool blue, bool alpha)=0 |
Set up GL rendering colormask. More... | |
virtual void | clear (int32_t mask)=0 |
Clear render buffer with given mask. More... | |
virtual int32_t | createTexture ()=0 |
Creates a texture. More... | |
virtual int32_t | createDepthBufferTexture (int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex)=0 |
Creates a depth buffer texture. More... | |
virtual int32_t | createColorBufferTexture (int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex)=0 |
Creates a color buffer texture. More... | |
virtual int32_t | createGBufferGeometryTexture (int32_t width, int32_t height)=0 |
Creates a geometry buffer geometry texture. More... | |
virtual int32_t | createGBufferColorTexture (int32_t width, int32_t height)=0 |
Creates a geometry buffer color RGBA texture. More... | |
virtual void | uploadTexture (int contextIdx, Texture *texture)=0 |
Uploads texture data to current bound texture. More... | |
virtual void | uploadCubeMapTexture (int contextIdx, Texture *textureLeft, Texture *textureRight, Texture *textureTop, Texture *textureBottom, Texture *textureFront, Texture *textureBack)=0 |
Uploads cube map texture data to current bound texture. More... | |
virtual int32_t | createCubeMapTexture (int contextIdx, int32_t width, int32_t height)=0 |
Create cube map texture from frame buffers. More... | |
virtual void | resizeDepthBufferTexture (int32_t textureId, int32_t width, int32_t height)=0 |
Resizes a depth texture. More... | |
virtual void | resizeColorBufferTexture (int32_t textureId, int32_t width, int32_t height)=0 |
Resize color buffer texture. More... | |
virtual void | resizeGBufferGeometryTexture (int32_t textureId, int32_t width, int32_t height)=0 |
Resizes a geometry buffer geometry texture. More... | |
virtual void | resizeGBufferColorTexture (int32_t textureId, int32_t width, int32_t height)=0 |
Resizes a geometry buffer color RGBA texture. More... | |
virtual void | bindTexture (int contextIdx, int32_t textureId)=0 |
Binds a texture with given id or unbinds when using ID_NONE. More... | |
virtual void | bindCubeMapTexture (int contextIdx, int32_t textureId)=0 |
Binds a cube map texture with given id or unbinds when using ID_NONE. More... | |
virtual void | onBindTexture (int contextIdx, int32_t textureId)=0 |
On bind texture event. More... | |
virtual void | disposeTexture (int32_t textureId)=0 |
Dispose a texture. More... | |
virtual int32_t | createFramebufferObject (int32_t depthBufferTextureId, int32_t colorBufferTextureId, int32_t cubeMapTextureId=0, int32_t cubeMapTextureIndex=0)=0 |
Creates a frame buffer object with depth texture attached. More... | |
virtual int32_t | createGeometryBufferObject (int32_t depthBufferTextureId, int32_t geometryBufferTextureId1, int32_t geometryBufferTextureId2, int32_t geometryBufferTextureId3, int32_t colorBufferTextureId1, int32_t colorBufferTextureId2, int32_t colorBufferTextureId3, int32_t colorBufferTextureId4, int32_t colorBufferTextureId5)=0 |
Creates a geometry frame buffer object. More... | |
virtual void | bindFrameBuffer (int32_t frameBufferId)=0 |
Enables a framebuffer to be rendered. More... | |
virtual void | disposeFrameBufferObject (int32_t frameBufferId)=0 |
Disposes a frame buffer object. More... | |
virtual vector< int32_t > | createBufferObjects (int32_t buffers, bool useGPUMemory, bool shared)=0 |
Generate buffer objects for vertex data and such. More... | |
virtual void | uploadBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data)=0 |
Uploads buffer data to buffer object. More... | |
virtual void | uploadBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer *data)=0 |
Uploads buffer data to buffer object. More... | |
virtual void | uploadBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer *data)=0 |
Uploads buffer data to buffer object. More... | |
virtual void | uploadIndicesBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer *data)=0 |
Uploads buffer data to buffer object. More... | |
virtual void | uploadIndicesBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer *data)=0 |
Uploads buffer data to buffer object. More... | |
virtual void | bindIndicesBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind indices buffer object. More... | |
virtual void | bindTextureCoordinatesBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind texture coordinates buffer object. More... | |
virtual void | bindVerticesBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind vertices buffer object. More... | |
virtual void | bindNormalsBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind normals buffer object. More... | |
virtual void | bindColorsBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind colors buffer object. More... | |
virtual void | bindTangentsBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind tangents buffer object. More... | |
virtual void | bindBitangentsBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind bitangents buffer object. More... | |
virtual void | bindModelMatricesBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind model matrices buffer object. More... | |
virtual void | bindEffectColorMulsBufferObject (int contextIdx, int32_t bufferObjectId, int32_t divisor)=0 |
Bind effect color muls buffer object. More... | |
virtual void | bindEffectColorAddsBufferObject (int contextIdx, int32_t bufferObjectId, int32_t divisor)=0 |
Bind effect color adds buffer object. More... | |
virtual void | bindOriginsBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind origins buffer object. More... | |
virtual void | bindTextureSpriteIndicesBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind texture and sprite indices buffer object. More... | |
virtual void | bindPointSizesBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind point sizes buffer object. More... | |
virtual void | bindSpriteSheetDimensionBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind sprite sheet dimension buffer object. More... | |
virtual void | drawInstancedIndexedTrianglesFromBufferObjects (int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances)=0 |
Draw instanced indexed triangles from buffer objects. More... | |
virtual void | drawIndexedTrianglesFromBufferObjects (int contextIdx, int32_t triangles, int32_t trianglesOffset)=0 |
Draw indexed triangles from buffer objects. More... | |
virtual void | drawInstancedTrianglesFromBufferObjects (int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances)=0 |
Draw instanced triangles from buffer objects. More... | |
virtual void | drawTrianglesFromBufferObjects (int contextIdx, int32_t triangles, int32_t trianglesOffset)=0 |
Draw triangles from buffer objects. More... | |
virtual void | drawPointsFromBufferObjects (int contextIdx, int32_t points, int32_t pointsOffset)=0 |
Draw points from buffer objects. More... | |
virtual void | setLineWidth (float lineWidth)=0 |
Set line width. More... | |
virtual void | drawLinesFromBufferObjects (int contextIdx, int32_t points, int32_t pointsOffset)=0 |
Draw lines from buffer objects. More... | |
virtual void | unbindBufferObjects (int contextIdx)=0 |
Unbind buffer objects. More... | |
virtual void | disposeBufferObjects (vector< int32_t > &bufferObjectIds)=0 |
Disposes a frame buffer object. More... | |
virtual int32_t | getTextureUnit (int contextIdx)=0 |
Get texture unit. More... | |
virtual void | setTextureUnit (int contextIdx, int32_t textureUnit)=0 |
Sets up texture unit. More... | |
Renderer_Light & | getLight (int contextIdx, int32_t lightIdx) |
Get light. More... | |
virtual void | onUpdateLight (int contextIdx, int32_t lightId)=0 |
Update light. More... | |
array< float, 4 > & | getEffectColorMul (int contextIdx) |
Get effect color mul. More... | |
array< float, 4 > & | getEffectColorAdd (int contextIdx) |
Get effect color add. More... | |
virtual void | onUpdateEffect (int contextIdx)=0 |
Update material. More... | |
Renderer_SpecularMaterial & | getSpecularMaterial (int contextIdx) |
Get specular material. More... | |
Renderer_PBRMaterial & | getPBRMaterial (int contextIdx) |
Get PBR material. More... | |
virtual void | onUpdateMaterial (int contextIdx)=0 |
On update material. More... | |
const string & | getShader (int contextIdx) |
Get shader. More... | |
void | setShader (int contextIdx, const string &id) |
Set shader. More... | |
virtual void | onUpdateShader (int contextIdx)=0 |
On update shader. More... | |
const EntityShaderParameters & | getShaderParameters (int contextIdx) |
Get shader parameters. More... | |
void | setShaderParameters (int contextIdx, const EntityShaderParameters ¶meters) |
Set shader parameters. More... | |
virtual void | onUpdateShaderParameters (int contextIdx)=0 |
On update shader parameters. More... | |
virtual float | readPixelDepth (int32_t x, int32_t y)=0 |
Reads a pixel depth. More... | |
virtual ByteBuffer * | readPixels (int32_t x, int32_t y, int32_t width, int32_t height)=0 |
Read pixels. More... | |
virtual void | dispatchCompute (int contextIdx, int32_t numGroupsX, int32_t numGroupsY, int32_t numGroupsZ)=0 |
Dispatch compute. More... | |
virtual void | memoryBarrier ()=0 |
Memory barrier. More... | |
virtual void | uploadSkinningBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data)=0 |
Upload skinning buffer object. More... | |
virtual void | uploadSkinningBufferObject (int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer *data)=0 |
Upload skinning buffer object. More... | |
virtual void | bindSkinningVerticesBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind skinning vertices buffer object. More... | |
virtual void | bindSkinningNormalsBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind skinning normal buffer object. More... | |
virtual void | bindSkinningVertexJointsBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind skinning vertex joints buffer object. More... | |
virtual void | bindSkinningVertexJointIdxsBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind skinning vertex joint indices buffer object. More... | |
virtual void | bindSkinningVertexJointWeightsBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind skinning vertex joint weights buffer object. More... | |
virtual void | bindSkinningVerticesResultBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind skinning vertices result buffer object. More... | |
virtual void | bindSkinningNormalsResultBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind skinning normals result buffer object. More... | |
virtual void | bindSkinningMatricesBufferObject (int contextIdx, int32_t bufferObjectId)=0 |
Bind skinning matrices result buffer object. More... | |
float | getMaskMaxValue (int contextIdx) |
Get mask max value. More... | |
void | setMaskMaxValue (int contextIdx, float maskMaxValue) |
Set mask max value. More... | |
array< float, 3 > & | getEnvironmentMappingCubeMapPosition (int contextIdx) |
Get environment mapping cube map position. More... | |
void | setEnvironmentMappingCubeMapPosition (int contextIdx, array< float, 3 > &position) |
Set environment mapping cube map position. More... | |
virtual void | initGuiMode ()=0 |
Set up renderer for GUI rendering. More... | |
virtual void | doneGuiMode ()=0 |
Set up renderer for 3d rendering. More... | |
virtual void | setVSync (bool vSync)=0 |
Enable/Disable v-sync. More... | |
virtual const Renderer_Statistics | getStatistics ()=0 |
Texture * | generateMipMap (const string &id, Texture *texture, int32_t level, int32_t atlasBorderSize) |
Generate mip map for atlas texture currently. More... | |
Protected Member Functions | |
VKRenderer () | |
Protected constructor. More... | |
Private Types | |
enum | BlendingMode { BLENDING_NONE , BLENDING_NORMAL , BLENDING_ADDITIVE } |
Private Member Functions | |
VkBool32 | checkLayers (uint32_t checkCount, const char **checkNames, const vector< VkLayerProperties > &instanceLayers) |
void | setImageLayout (int contextIdx, texture_type *textureObject, const array< ThsvsAccessType, 2 > &nextAccessTypes, ThsvsImageLayout nextLayout, bool discardContent, uint32_t baseMipLevel=0, uint32_t levelCount=1, bool submit=true) |
void | getImageLayoutChange (image_layout_change &imageLayoutChange, texture_type *textureObject, const array< ThsvsAccessType, 2 > &prevAccessTypes, const array< ThsvsAccessType, 2 > &nextAccessTypes, ThsvsImageLayout prevLayout, ThsvsImageLayout nextLayout, bool discardContent, uint32_t baseMipLevel=0, uint32_t levelCount=1) |
void | applyImageLayoutChange (int contextIdx, const image_layout_change &imageLayoutChange, texture_type *textureObject, bool submit=true) |
void | applyImageLayoutChanges (int contextIdx, const array< image_layout_change, 8 > imageLayoutChanges, array< texture_type *, 8 > textureObjects, bool submit=true) |
void | setImageLayout2 (int contextIdx, texture_type *textureObject, const array< ThsvsAccessType, 2 > &accessTypes, const array< ThsvsAccessType, 2 > &nextAccessTypes, ThsvsImageLayout layout, ThsvsImageLayout nextLayout, bool discardContent, uint32_t baseMipLevel, uint32_t levelCount, uint32_t baseArrayLayer, uint32_t layerCount, bool updateTextureObject) |
void | setImageLayout3 (int contextIdx, VkImage image, VkImageAspectFlags aspectMask, const array< ThsvsAccessType, 2 > &accessTypes, const array< ThsvsAccessType, 2 > &nextAccessTypes, ThsvsImageLayout layout, ThsvsImageLayout nextLayout) |
uint32_t | getMipLevels (Texture *texture) |
void | prepareTextureImage (int contextIdx, struct texture_type *textureObject, VkImageTiling tiling, VkImageUsageFlags usage, VkFlags requiredFlags, Texture *texture, const array< ThsvsAccessType, 2 > &nextAccesses, ThsvsImageLayout imageLayout, bool disableMipMaps=true, uint32_t baseLevel=0, uint32_t levelCount=1) |
VkBuffer | getBindBufferObjectInternal (int32_t bufferObjectId, uint32_t &size) |
void | createBuffer (VkDeviceSize size, VkBufferUsageFlags usage, VkMemoryPropertyFlags properties, VkBuffer &buffer, VmaAllocation &allocation, VmaAllocationInfo &allocationInfo) |
buffer_object_type * | getBufferObjectInternal (int32_t bufferObjectId) |
void | vmaMemCpy (VmaAllocation allocationDst, const uint8_t *src, uint32_t size, uint32_t offset=0) |
void | uploadBufferObjectInternal (int contextIdx, buffer_object_type *buffer, int32_t size, const uint8_t *data, VkBufferUsageFlagBits usage) |
void | uploadBufferObjectInternal (int contextIdx, int32_t bufferObjectId, int32_t size, const uint8_t *data, VkBufferUsageFlagBits usage) |
texture_type * | getTextureInternal (int32_t textureId) |
texture_type * | getBindTextureInternal (int32_t textureId) |
framebuffer_pipelines_type * | getFramebufferPipelines (uint64_t framebufferPipelinesId) |
framebuffer_pipelines_type * | createFramebufferPipelines (uint64_t framebufferPipelinesId) |
VkPipeline | getPipelineInternal (int contextIdx, program_type *programm, uint64_t framebuffePipelineId, uint32_t pipelineIdx) |
void | setProgramUniformInternal (int contextIdx, int32_t uniformId, uint8_t *data, int32_t size) |
void | initializeSwapChain () |
void | initializeFrameBuffers () |
void | endDrawCommandsAllContexts () |
void | requestSubmitDrawBuffers (int contextIdx) |
void | initializeRenderPass () |
void | startRenderPass (int contextIdx) |
void | endRenderPass (int contextIdx) |
void | createRenderProgram (program_type *program) |
void | createObjectsRenderingPipeline (int contextIdx, program_type *program) |
void | setupObjectsRenderingPipeline (int contextIdx, program_type *program) |
void | createPointsRenderingPipeline (int contextIdx, program_type *program) |
void | setupPointsRenderingPipeline (int contextIdx, program_type *program) |
void | createLinesRenderingPipeline (int contextIdx, program_type *program) |
void | setupLinesRenderingPipeline (int contextIdx, program_type *program) |
void | createSkinningComputingProgram (program_type *program) |
void | setupSkinningComputingPipeline (int contextIdx, program_type *program) |
void | unsetPipeline (int contextIdx) |
void | prepareSetupCommandBuffer (int contextIdx) |
void | finishSetupCommandBuffer (int contextIdx) |
void | finishSetupCommandBuffers () |
void | reshape () |
void | createRasterizationStateCreateInfo (int contextIdx, VkPipelineRasterizationStateCreateInfo &rasterizationStateCreateInfo) |
void | createColorBlendAttachmentState (VkPipelineColorBlendAttachmentState &blendAttachmentState) |
void | createDepthStencilStateCreateInfo (VkPipelineDepthStencilStateCreateInfo &depthStencilStateCreateInfo) |
uint64_t | createPipelineFramebufferId () |
uint16_t | createPipelineIndex (program_type *program, int contextIdx) |
void | createDepthBufferTexture (int32_t textureId, int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex) |
void | createBufferTexture (int32_t textureId, int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex, VkFormat format) |
void | drawInstancedTrianglesFromBufferObjects (int contextIdx, int32_t triangles, int32_t trianglesOffset, VkBuffer indicesBuffer, int32_t instances) |
void | createFramebufferObject (int32_t frameBufferId) |
bool | beginDrawCommandBuffer (int contextIdx, int bufferId=-1) |
VkCommandBuffer | endDrawCommandBuffer (int contextIdx, int bufferId=-1, bool cycleBuffers=true) |
void | submitDrawCommandBuffers (int commandBufferCount, VkCommandBuffer *commandBuffers, VkFence &fence) |
void | uploadCubeMapSingleTexture (int contextIdx, texture_type *cubemapTextureType, Texture *texture, uint32_t baseArrayLayer) |
void | finishRendering () |
void | invalidateTextureDescriptorCaches (int textureId) |
void | invalidatePipelines () |
Private Attributes | |
VkSurfaceKHR | surface { VK_NULL_HANDLE } |
VkInstance | instance { VK_NULL_HANDLE } |
VkPhysicalDevice | physicalDevice { VK_NULL_HANDLE } |
VkDevice | device { VK_NULL_HANDLE } |
SpinLock | queueSpinlock |
VkQueue | queue { VK_NULL_HANDLE } |
VkPhysicalDeviceProperties | gpuProperties |
VkPhysicalDeviceFeatures | gpuFeatures |
VkQueueFamilyProperties * | queueProperties { nullptr } |
VkPhysicalDeviceMemoryProperties | memoryProperties |
uint32_t | graphicsQueueNodeIndex { 0 } |
PFN_vkGetPhysicalDeviceSurfaceSupportKHR | fpGetPhysicalDeviceSurfaceSupportKHR { nullptr } |
PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR | fpGetPhysicalDeviceSurfaceCapabilitiesKHR { nullptr } |
PFN_vkGetPhysicalDeviceSurfaceFormatsKHR | fpGetPhysicalDeviceSurfaceFormatsKHR { nullptr } |
PFN_vkGetPhysicalDeviceSurfacePresentModesKHR | fpGetPhysicalDeviceSurfacePresentModesKHR { nullptr } |
PFN_vkCreateSwapchainKHR | fpCreateSwapchainKHR { nullptr } |
PFN_vkDestroySwapchainKHR | fpDestroySwapchainKHR { nullptr } |
PFN_vkGetSwapchainImagesKHR | fpGetSwapchainImagesKHR { nullptr } |
PFN_vkAcquireNextImageKHR | fpAcquireNextImageKHR { nullptr } |
PFN_vkQueuePresentKHR | fpQueuePresentKHR { nullptr } |
uint32_t | windowSwapchainImageCount { 0 } |
VkSwapchainKHR | windowSwapchain { VK_NULL_HANDLE } |
vector< window_frambuffer_buffer_type > | windowFramebufferBuffers |
uint32_t | lastWindowFramebufferIdx { 0 } |
uint32_t | currentWindowFramebufferIdx { 0 } |
SpinLock | pipelinesSpinLock |
uint64_t | framebufferPipelinesId { 0 } |
framebuffer_pipelines_type * | framebufferPipelinesCache { nullptr } |
vector< framebuffer_pipelines_type * > | framebuffersPipelines |
VkRenderPass | renderPass { VK_NULL_HANDLE } |
int32_t | shaderIdx { 1 } |
int32_t | bufferIdx { 1 } |
int32_t | textureIdx { 1 } |
vector< program_type * > | programVector { nullptr } |
unordered_map< int32_t, shader_type * > | shaders |
array< buffer_object_type *, BUFFERS_MAX+1 > | buffers |
array< texture_type *, TEXTURES_MAX+1 > | textures |
vector< int32_t > | freeTextureIds |
vector< int32_t > | freeBufferIds |
vector< framebuffer_object_type * > | framebuffers { nullptr } |
Mutex | buffersMutex |
Mutex | texturesMutex |
uint32_t | windowWidth { 0 } |
uint32_t | windowHeight { 0 } |
VkFormat | windowFormat { VK_FORMAT_UNDEFINED } |
VkColorSpaceKHR | windowColorSpace { VK_COLOR_SPACE_SRGB_NONLINEAR_KHR } |
buffer_object_type * | emptyVertexBuffer { nullptr } |
int | emptyVertexBufferId { 0 } |
int | depthBufferDefault { 0 } |
int | whiteTextureSampler2dDefaultId { 0 } |
texture_type * | whiteTextureSampler2dDefault { nullptr } |
int | whiteTextureSamplerCubeDefaultId { 0 } |
texture_type * | whiteTextureSamplerCubeDefault { nullptr } |
VkDescriptorPool | descriptorPool1 { VK_NULL_HANDLE } |
VkDescriptorPool | descriptorPool2 { VK_NULL_HANDLE } |
uint32_t | queueCount { 0 } |
VkSemaphore | imageAcquiredSemaphore { VK_NULL_HANDLE } |
VkSemaphore | drawCompleteSemaphore { VK_NULL_HANDLE } |
float | clearRed { 0.0f } |
float | clearGreen { 0.0f } |
float | clearBlue { 0.0f } |
float | clearAlpha { 1.0f } |
VkViewport | viewport |
VkRect2D | scissor |
int32_t | boundFrameBufferId { 0 } |
BlendingMode | blendingMode { BLENDING_NONE } |
VkCullModeFlagBits | cullMode { VK_CULL_MODE_FRONT_BIT} |
bool | depthBufferWriting { true } |
bool | depthBufferTesting { true } |
int | depthFunction { VK_COMPARE_OP_LESS_OR_EQUAL } |
float | lineWidth { 1.0f } |
int64_t | frame { 0 } |
Mutex | deleteMutex |
vector< delete_buffer_type > | deleteBuffers |
vector< delete_image_type > | deleteImages |
Mutex | disposeMutex |
vector< int32_t > | disposeTextures |
vector< int32_t > | disposeBuffers |
vector< VkPipeline > | disposePipelines |
VmaAllocator | vmaAllocator { VK_NULL_HANDLE } |
SpinLock | vmaSpinlock |
vector< context_type > | contexts |
vector< VkFence > | contextsDrawFences |
string | deviceName |
VkPresentModeKHR | swapchainPresentMode { VK_PRESENT_MODE_IMMEDIATE_KHR } |
VkPresentModeKHR | lastSwapchainPresentMode { VK_PRESENT_MODE_IMMEDIATE_KHR } |
bool | vSync { false } |
Static Private Attributes | |
static constexpr bool | VERBOSE { false } |
static constexpr int | DRAW_COMMANDBUFFER_MAX { 3 } |
static constexpr int | SHADERSSTAGES_MAX { 2 } |
static constexpr int | TEXTUREUNITS_MAX { 16 } |
static constexpr int | SHADERS_MAX { 100 } |
static constexpr int | SHADERS_COMPUTE_MAX { 1 } |
static constexpr int | COMMANDS_MAX { 16 } |
static constexpr int | COMMANDS_MAX_GRAPHICS { 16 } |
static constexpr int | COMMANDS_MAX_COMPUTE { 5 } |
static constexpr int | DESC_MAX_UNCACHED { COMMANDS_MAX } |
static constexpr int | DESC_MAX_CACHED { 512 } |
static constexpr int | OBJECTS_VERTEX_BUFFER_COUNT { 10 } |
static constexpr int | POINTS_VERTEX_BUFFER_COUNT { 9 } |
static constexpr int | LINES_VERTEX_BUFFER_COUNT { 4 } |
static constexpr int | COMPUTE_STORAGE_BUFFER_COUNT { 8 } |
static constexpr int | BUFFERS_MAX { 65535 } |
static constexpr int | TEXTURES_MAX { 65535 } |
static constexpr int | PROGRAMS_MAX { 128 } |
static constexpr int | CUBEMAPTEXTUREINDEX_MIN { 1 } |
Friends | |
class | VKGL3CoreShaderProgram |
|
private |
Enumerator | |
---|---|
BLENDING_NONE | |
BLENDING_NORMAL | |
BLENDING_ADDITIVE |
Definition at line 458 of file VKRenderer.h.
|
protected |
Protected constructor.
Definition at line 139 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 519 of file VKRenderer.cpp.
|
private |
Definition at line 539 of file VKRenderer.cpp.
|
overridevirtual |
Attaches a shader to a program.
programId | program id |
shaderId | shader id |
Implements Renderer.
Definition at line 3109 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 267 of file VKRenderer.cpp.
|
overridevirtual |
Bind bitangents buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6041 of file VKRenderer.cpp.
|
overridevirtual |
Bind colors buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6029 of file VKRenderer.cpp.
|
overridevirtual |
Binds a cube map texture with given id or unbinds when using ID_NONE.
contextIdx | context index |
textureId | textureId |
Implements Renderer.
Definition at line 4968 of file VKRenderer.cpp.
|
overridevirtual |
Bind effect color adds buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
divisor | divisor |
Implements Renderer.
Definition at line 6059 of file VKRenderer.cpp.
|
overridevirtual |
Bind effect color muls buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
divisor | divisor |
Implements Renderer.
Definition at line 6053 of file VKRenderer.cpp.
|
overridevirtual |
Enables a framebuffer to be rendered.
frameBufferId | frameBufferId |
Implements Renderer.
Definition at line 5414 of file VKRenderer.cpp.
|
overridevirtual |
Bind indices buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6004 of file VKRenderer.cpp.
|
overridevirtual |
Bind model matrices buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6047 of file VKRenderer.cpp.
|
overridevirtual |
Bind normals buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6023 of file VKRenderer.cpp.
|
overridevirtual |
Bind origins buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6065 of file VKRenderer.cpp.
|
overridevirtual |
Bind point sizes buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6075 of file VKRenderer.cpp.
|
overridevirtual |
Bind skinning matrices result buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 7295 of file VKRenderer.cpp.
|
overridevirtual |
Bind skinning normal buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 7212 of file VKRenderer.cpp.
|
overridevirtual |
Bind skinning normals result buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 7264 of file VKRenderer.cpp.
|
overridevirtual |
Bind skinning vertex joint indices buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 7222 of file VKRenderer.cpp.
|
overridevirtual |
Bind skinning vertex joints buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 7217 of file VKRenderer.cpp.
|
overridevirtual |
Bind skinning vertex joint weights buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 7227 of file VKRenderer.cpp.
|
overridevirtual |
Bind skinning vertices buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 7207 of file VKRenderer.cpp.
|
overridevirtual |
Bind skinning vertices result buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 7232 of file VKRenderer.cpp.
|
overridevirtual |
Bind sprite sheet dimension buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6080 of file VKRenderer.cpp.
|
overridevirtual |
Bind tangents buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6035 of file VKRenderer.cpp.
|
overridevirtual |
Binds a texture with given id or unbinds when using ID_NONE.
contextIdx | context index |
textureId | textureId |
Implements Renderer.
Definition at line 4973 of file VKRenderer.cpp.
|
overridevirtual |
Bind texture coordinates buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6011 of file VKRenderer.cpp.
|
overridevirtual |
Bind texture and sprite indices buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6070 of file VKRenderer.cpp.
|
overridevirtual |
Bind vertices buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
Implements Renderer.
Definition at line 6017 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 181 of file VKRenderer.cpp.
|
overridevirtual |
Clear render buffer with given mask.
mask | mask |
Implements Renderer.
Definition at line 3552 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 5735 of file VKRenderer.cpp.
|
overridevirtual |
Generate buffer objects for vertex data and such.
buffers | buffers |
useGPUMemory | use GPU memory |
shared | shared between different threads |
Implements Renderer.
Definition at line 5690 of file VKRenderer.cpp.
|
private |
Definition at line 3831 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 2098 of file VKRenderer.cpp.
|
overridevirtual |
Creates a color buffer texture.
width | width |
height | height @oaram cubeMapTextureId cube map texture id |
cubeMapTextureIndex | cube map texture index |
Implements Renderer.
Definition at line 3795 of file VKRenderer.cpp.
|
overridevirtual |
Create cube map texture from frame buffers.
contextIdx | context index |
width | width |
height | height |
Implements Renderer.
Definition at line 4202 of file VKRenderer.cpp.
|
private |
Definition at line 3666 of file VKRenderer.cpp.
|
overridevirtual |
Creates a depth buffer texture.
width | width |
height | height @oaram cubeMapTextureId cube map texture id |
cubeMapTextureIndex | cube map texture index |
Implements Renderer.
Definition at line 3630 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 2109 of file VKRenderer.cpp.
|
overridevirtual |
Creates a frame buffer object with depth texture attached.
depthBufferTextureId | depth buffer texture id |
colorBufferTextureId | color buffer texture id |
cubeMapTextureId | cube map texture id |
cubeMapTextureIndex | cube map texture index |
Implements Renderer.
Definition at line 5308 of file VKRenderer.cpp.
|
private |
Definition at line 5006 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 5984 of file VKRenderer.cpp.
|
overridevirtual |
Creates a geometry buffer color RGBA texture.
width | width |
height | height |
Implements Renderer.
Definition at line 3999 of file VKRenderer.cpp.
|
overridevirtual |
Creates a geometry buffer geometry texture.
width | width |
height | height |
Implements Renderer.
Definition at line 3963 of file VKRenderer.cpp.
|
overridevirtual |
Creates a geometry frame buffer object.
depthBufferTextureId | depth buffer texture id |
geometryBufferTextureId1 | geometry texture id 1 |
geometryBufferTextureId2 | geometry texture id 2 |
geometryBufferTextureId3 | geometry texture id 3 |
colorBufferTextureId1 | color buffer texture id 1 |
colorBufferTextureId2 | color buffer texture id 2 |
colorBufferTextureId3 | color buffer texture id 3 |
colorBufferTextureId4 | color buffer texture id 4 |
colorBufferTextureId5 | color buffer texture id 5 |
Implements Renderer.
Definition at line 5351 of file VKRenderer.cpp.
|
private |
Definition at line 2735 of file VKRenderer.cpp.
|
private |
Definition at line 2264 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 2124 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 2131 of file VKRenderer.cpp.
|
private |
Definition at line 2513 of file VKRenderer.cpp.
|
overridevirtual |
Creates a shader program.
type | type |
Implements Renderer.
Definition at line 3082 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 2087 of file VKRenderer.cpp.
|
private |
Definition at line 2142 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 2918 of file VKRenderer.cpp.
|
overridevirtual |
Creates a texture.
Implements Renderer.
Definition at line 3606 of file VKRenderer.cpp.
|
overridevirtual |
|
overridevirtual |
Disable culling.
contextIdx | context index |
Implements Renderer.
Definition at line 3468 of file VKRenderer.cpp.
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
Dispatch compute.
contextIdx | context index |
numGroupsX | num groups x |
numGroupsY | num groups y |
numGroupsZ | num groups z |
Implements Renderer.
Definition at line 7048 of file VKRenderer.cpp.
|
overridevirtual |
Disposes a frame buffer object.
bufferObjectIds | frame buffer id |
Implements Renderer.
Definition at line 6688 of file VKRenderer.cpp.
|
overridevirtual |
Disposes a frame buffer object.
frameBufferId | frame buffer id |
Implements Renderer.
Definition at line 5674 of file VKRenderer.cpp.
|
overridevirtual |
Dispose a texture.
textureId | texture id |
Implements Renderer.
Definition at line 4998 of file VKRenderer.cpp.
|
overridevirtual |
Set up renderer for 3d rendering.
Implements Renderer.
Definition at line 7040 of file VKRenderer.cpp.
|
overridevirtual |
Draw indexed triangles from buffer objects.
contextIdx | context index |
triangles | triangles |
trianglesOffset | triangles offset |
Implements Renderer.
Definition at line 6312 of file VKRenderer.cpp.
|
overridevirtual |
Draw instanced indexed triangles from buffer objects.
contextIdx | context index |
triangles | triangles |
trianglesOffset | triangles offset |
instances | instances |
Implements Renderer.
Definition at line 6085 of file VKRenderer.cpp.
|
overridevirtual |
Draw instanced triangles from buffer objects.
contextIdx | context index |
triangles | triangles |
trianglesOffset | triangles offset |
instances | instances |
Implements Renderer.
Definition at line 6351 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 6089 of file VKRenderer.cpp.
|
overridevirtual |
Draw lines from buffer objects.
contextIdx | context index |
points | points |
pointsOffset | points offset |
Implements Renderer.
Definition at line 6522 of file VKRenderer.cpp.
|
overridevirtual |
Draw points from buffer objects.
contextIdx | context index |
points | points |
pointsOffset | points offset |
Implements Renderer.
Definition at line 6361 of file VKRenderer.cpp.
|
overridevirtual |
Draw triangles from buffer objects.
contextIdx | context index |
triangles | triangles |
trianglesOffset | triangles offset |
Implements Renderer.
Definition at line 6356 of file VKRenderer.cpp.
|
overridevirtual |
Enable blending with c = a + b.
Implements Renderer.
Definition at line 3500 of file VKRenderer.cpp.
|
overridevirtual |
|
overridevirtual |
Enable culling.
contextIdx | context index |
Implements Renderer.
Definition at line 3459 of file VKRenderer.cpp.
|
overridevirtual |
|
overridevirtual |
|
inlineprivate |
Definition at line 353 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 6320 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 1597 of file VKRenderer.cpp.
|
overridevirtual |
|
inlineprivate |
Definition at line 7144 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 221 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 412 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 5722 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 5965 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 5731 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 5971 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 468 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 659 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 5995 of file VKRenderer.cpp.
|
overridevirtual |
Returns location of given uniform variable.
programId | program id |
name | uniform name |
Implements Renderer.
Definition at line 3241 of file VKRenderer.cpp.
|
overridevirtual |
|
overridevirtual |
Implements Renderer.
Definition at line 913 of file VKRenderer.cpp.
|
overridevirtual |
|
inlineprivate |
Definition at line 5961 of file VKRenderer.cpp.
|
overridevirtual |
Get texture unit.
contextIdx | context index |
Implements Renderer.
Definition at line 6697 of file VKRenderer.cpp.
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
Set up renderer for GUI rendering.
Implements Renderer.
Definition at line 7032 of file VKRenderer.cpp.
|
overridevirtual |
|
overridevirtual |
|
private |
Definition at line 1604 of file VKRenderer.cpp.
|
private |
Definition at line 1483 of file VKRenderer.cpp.
|
private |
TODO = a.drewke, ???
Definition at line 758 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 1750 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 1726 of file VKRenderer.cpp.
|
overridevirtual |
Checks if buffer objects is available.
Implements Renderer.
Definition at line 2002 of file VKRenderer.cpp.
|
overridevirtual |
Implements Renderer.
Definition at line 2041 of file VKRenderer.cpp.
|
overridevirtual |
Implements Renderer.
Definition at line 2053 of file VKRenderer.cpp.
|
overridevirtual |
Checks if depth texture is available.
Implements Renderer.
Definition at line 2007 of file VKRenderer.cpp.
|
overridevirtual |
Implements Renderer.
Definition at line 2045 of file VKRenderer.cpp.
|
overridevirtual |
Checks if instanced rendering is available.
Implements Renderer.
Definition at line 2032 of file VKRenderer.cpp.
|
overridevirtual |
Implements Renderer.
Definition at line 2027 of file VKRenderer.cpp.
|
overridevirtual |
Implements Renderer.
Definition at line 2036 of file VKRenderer.cpp.
|
overridevirtual |
Implements Renderer.
Definition at line 2022 of file VKRenderer.cpp.
|
overridevirtual |
Implements Renderer.
Definition at line 2017 of file VKRenderer.cpp.
|
overridevirtual |
Implements Renderer.
Definition at line 918 of file VKRenderer.cpp.
|
overridevirtual |
Implements Renderer.
Definition at line 2012 of file VKRenderer.cpp.
|
overridevirtual |
Implements Renderer.
Definition at line 2049 of file VKRenderer.cpp.
|
overridevirtual |
Links attached shaders to a program.
programId | program id |
Implements Renderer.
Definition at line 3126 of file VKRenderer.cpp.
|
overridevirtual |
Loads a shader.
type | type |
pathName | path name |
fileName | file name |
definitions | preprocessor definitions |
functions | included functions |
Implements Renderer.
Definition at line 2063 of file VKRenderer.cpp.
|
overridevirtual |
|
inlineprivate |
Definition at line 199 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 674 of file VKRenderer.cpp.
|
overridevirtual |
Reads a pixel depth.
x | x |
y | y |
Implements Renderer.
Definition at line 6707 of file VKRenderer.cpp.
|
overridevirtual |
Read pixels.
x | x |
y | y |
width | width |
height | height |
Implements Renderer.
Definition at line 6849 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 6336 of file VKRenderer.cpp.
|
private |
Definition at line 1628 of file VKRenderer.cpp.
|
overridevirtual |
Resize color buffer texture.
textureId | texture id |
width | width |
height | height |
Implements Renderer.
Definition at line 4847 of file VKRenderer.cpp.
|
overridevirtual |
Resizes a depth texture.
textureId | texture id |
width | width |
height | height |
Implements Renderer.
Definition at line 4806 of file VKRenderer.cpp.
|
overridevirtual |
Resizes a geometry buffer color RGBA texture.
textureId | texture id |
width | width |
height | height |
Implements Renderer.
Definition at line 4928 of file VKRenderer.cpp.
|
overridevirtual |
Resizes a geometry buffer geometry texture.
textureId | texture id |
width | width |
height | height |
Implements Renderer.
Definition at line 4888 of file VKRenderer.cpp.
|
overridevirtual |
Set up clear color.
red | red |
green | green |
blue | blue |
alpha | alpha |
Implements Renderer.
Definition at line 3450 of file VKRenderer.cpp.
|
overridevirtual |
Set up GL rendering colormask.
red | red |
green | green |
blue | blue |
alpha | alpha |
Implements Renderer.
Definition at line 3548 of file VKRenderer.cpp.
|
overridevirtual |
Sets up which face will be culled.
cullFace | cull face |
Implements Renderer.
Definition at line 3486 of file VKRenderer.cpp.
|
overridevirtual |
Set up depth function.
depthFunction | depth function |
Implements Renderer.
Definition at line 3541 of file VKRenderer.cpp.
|
overridevirtual |
Set up clock wise or counter clock wise faces as front face.
contextIdx | context index |
frontFace | frontFace |
Implements Renderer.
Definition at line 3477 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 416 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 576 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 620 of file VKRenderer.cpp.
|
overridevirtual |
Set line width.
lineWidth | line width |
Implements Renderer.
Definition at line 6517 of file VKRenderer.cpp.
|
overridevirtual |
Bind attribute to a input location.
programId | program id |
location | location |
name | attribute name |
Implements Renderer.
Definition at line 3425 of file VKRenderer.cpp.
|
overridevirtual |
Set up a float uniform value.
contextIdx | context index |
uniformId | uniform id |
value | value |
Implements Renderer.
Definition at line 3376 of file VKRenderer.cpp.
|
overridevirtual |
Set up a float matrices 4x4 uniform values.
contextIdx | context index |
uniformId | uniform id |
count | count |
data | data |
Implements Renderer.
Definition at line 3405 of file VKRenderer.cpp.
|
overridevirtual |
Set up a float matrix 3x3 uniform value.
contextIdx | context index |
uniformId | uniform id |
value | value |
Implements Renderer.
Definition at line 3381 of file VKRenderer.cpp.
|
overridevirtual |
Set up a float matrix 4x4 uniform value.
contextIdx | context index |
uniformId | uniform id |
value | value |
Implements Renderer.
Definition at line 3400 of file VKRenderer.cpp.
|
overridevirtual |
Set up a float vec2 uniform value.
contextIdx | context index |
uniformId | uniform id |
data | data |
Implements Renderer.
Definition at line 3420 of file VKRenderer.cpp.
|
overridevirtual |
Set up a float vec3 uniform value.
contextIdx | context index |
uniformId | uniform id |
data | data |
Implements Renderer.
Definition at line 3415 of file VKRenderer.cpp.
|
overridevirtual |
Set up a float vec4 uniform value.
contextIdx | context index |
uniformId | uniform id |
data | data |
Implements Renderer.
Definition at line 3410 of file VKRenderer.cpp.
|
overridevirtual |
Set up a integer uniform value.
contextIdx | context index |
uniformId | uniform id |
value | value |
Implements Renderer.
Definition at line 3371 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 3258 of file VKRenderer.cpp.
|
overridevirtual |
Sets up texture unit.
contextIdx | context index |
textureUnit | texture unit |
Implements Renderer.
Definition at line 6702 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 2899 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 2495 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 2716 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 3042 of file VKRenderer.cpp.
|
overridevirtual |
Set up viewport parameter.
width | width |
height | height |
Implements Renderer.
Definition at line 3429 of file VKRenderer.cpp.
|
overridevirtual |
Enable/Disable v-sync.
vSync | V-sync enabled |
Implements Renderer.
Definition at line 7300 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 1563 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 384 of file VKRenderer.cpp.
|
overridevirtual |
Unbind buffer objects.
contextIdx | context index |
Implements Renderer.
Definition at line 6678 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 2079 of file VKRenderer.cpp.
|
overridevirtual |
|
overridevirtual |
Uploads buffer data to buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
size | size |
data | data |
Implements Renderer.
Definition at line 5936 of file VKRenderer.cpp.
|
overridevirtual |
Uploads buffer data to buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
size | size |
data | data |
Implements Renderer.
Definition at line 5946 of file VKRenderer.cpp.
|
overridevirtual |
Uploads buffer data to buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
size | size |
data | data |
Implements Renderer.
Definition at line 5941 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 5802 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 5760 of file VKRenderer.cpp.
|
private |
Definition at line 4692 of file VKRenderer.cpp.
|
overridevirtual |
Uploads cube map texture data to current bound texture.
contextIdx | context index |
textureLeft | texture left |
textureRight | texture right |
textureTop | texture top |
textureBottom | texture bottom |
textureFront | texture front |
textureBack | texture back |
Implements Renderer.
Definition at line 4035 of file VKRenderer.cpp.
|
overridevirtual |
Uploads buffer data to buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
size | size |
data | data |
Implements Renderer.
Definition at line 5956 of file VKRenderer.cpp.
|
overridevirtual |
Uploads buffer data to buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
size | size |
data | data |
Implements Renderer.
Definition at line 5951 of file VKRenderer.cpp.
|
overridevirtual |
Upload skinning buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
size | size |
data | data |
Implements Renderer.
Definition at line 7198 of file VKRenderer.cpp.
|
overridevirtual |
Upload skinning buffer object.
contextIdx | context index |
bufferObjectId | buffer object id |
size | size |
data | data |
Implements Renderer.
Definition at line 7202 of file VKRenderer.cpp.
|
overridevirtual |
Uploads texture data to current bound texture.
contextIdx | context index |
texture | texture |
Implements Renderer.
Definition at line 4419 of file VKRenderer.cpp.
|
overridevirtual |
Use shader program.
contextIdx | context index |
programId | programId |
Implements Renderer.
Definition at line 3055 of file VKRenderer.cpp.
|
inlineprivate |
Definition at line 5776 of file VKRenderer.cpp.
|
friend |
Definition at line 86 of file VKRenderer.h.
|
private |
Definition at line 459 of file VKRenderer.h.
|
private |
Definition at line 456 of file VKRenderer.h.
|
private |
Definition at line 414 of file VKRenderer.h.
|
private |
Definition at line 418 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 103 of file VKRenderer.h.
|
private |
Definition at line 424 of file VKRenderer.h.
|
private |
Definition at line 451 of file VKRenderer.h.
|
private |
Definition at line 450 of file VKRenderer.h.
|
private |
Definition at line 449 of file VKRenderer.h.
|
private |
Definition at line 448 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 94 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 96 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 95 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 102 of file VKRenderer.h.
|
private |
Definition at line 479 of file VKRenderer.h.
|
private |
Definition at line 480 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 107 of file VKRenderer.h.
|
private |
Definition at line 460 of file VKRenderer.h.
|
private |
Definition at line 404 of file VKRenderer.h.
|
private |
Definition at line 468 of file VKRenderer.h.
|
private |
Definition at line 469 of file VKRenderer.h.
|
private |
Definition at line 467 of file VKRenderer.h.
|
private |
Definition at line 434 of file VKRenderer.h.
|
private |
Definition at line 462 of file VKRenderer.h.
|
private |
Definition at line 461 of file VKRenderer.h.
|
private |
Definition at line 463 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 98 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 97 of file VKRenderer.h.
|
private |
Definition at line 440 of file VKRenderer.h.
|
private |
Definition at line 441 of file VKRenderer.h.
|
private |
Definition at line 381 of file VKRenderer.h.
|
private |
Definition at line 482 of file VKRenderer.h.
|
private |
Definition at line 473 of file VKRenderer.h.
|
private |
Definition at line 471 of file VKRenderer.h.
|
private |
Definition at line 474 of file VKRenderer.h.
|
private |
Definition at line 472 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 89 of file VKRenderer.h.
|
private |
Definition at line 446 of file VKRenderer.h.
|
private |
Definition at line 432 of file VKRenderer.h.
|
private |
Definition at line 433 of file VKRenderer.h.
|
private |
Definition at line 397 of file VKRenderer.h.
|
private |
Definition at line 394 of file VKRenderer.h.
|
private |
Definition at line 395 of file VKRenderer.h.
|
private |
Definition at line 391 of file VKRenderer.h.
|
private |
Definition at line 392 of file VKRenderer.h.
|
private |
Definition at line 393 of file VKRenderer.h.
|
private |
Definition at line 390 of file VKRenderer.h.
|
private |
Definition at line 396 of file VKRenderer.h.
|
private |
Definition at line 398 of file VKRenderer.h.
|
private |
Definition at line 465 of file VKRenderer.h.
|
private |
Definition at line 408 of file VKRenderer.h.
|
private |
Definition at line 407 of file VKRenderer.h.
|
private |
Definition at line 422 of file VKRenderer.h.
|
private |
Definition at line 409 of file VKRenderer.h.
|
private |
Definition at line 421 of file VKRenderer.h.
|
private |
Definition at line 420 of file VKRenderer.h.
|
private |
Definition at line 385 of file VKRenderer.h.
|
private |
Definition at line 384 of file VKRenderer.h.
|
private |
Definition at line 388 of file VKRenderer.h.
|
private |
Definition at line 445 of file VKRenderer.h.
|
private |
Definition at line 379 of file VKRenderer.h.
|
private |
Definition at line 485 of file VKRenderer.h.
|
private |
Definition at line 403 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 101 of file VKRenderer.h.
|
private |
Definition at line 464 of file VKRenderer.h.
|
private |
Definition at line 387 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 99 of file VKRenderer.h.
|
private |
Definition at line 380 of file VKRenderer.h.
|
private |
Definition at line 406 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 100 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 105 of file VKRenderer.h.
|
private |
Definition at line 416 of file VKRenderer.h.
|
private |
Definition at line 383 of file VKRenderer.h.
|
private |
Definition at line 443 of file VKRenderer.h.
|
private |
Definition at line 386 of file VKRenderer.h.
|
private |
Definition at line 382 of file VKRenderer.h.
|
private |
Definition at line 411 of file VKRenderer.h.
|
private |
Definition at line 454 of file VKRenderer.h.
|
private |
Definition at line 413 of file VKRenderer.h.
|
private |
Definition at line 417 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 93 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 92 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 90 of file VKRenderer.h.
|
private |
Definition at line 377 of file VKRenderer.h.
|
private |
Definition at line 484 of file VKRenderer.h.
|
private |
Definition at line 415 of file VKRenderer.h.
|
private |
Definition at line 419 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 104 of file VKRenderer.h.
|
private |
Definition at line 425 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 91 of file VKRenderer.h.
|
staticconstexprprivate |
Definition at line 88 of file VKRenderer.h.
|
private |
Definition at line 453 of file VKRenderer.h.
|
private |
Definition at line 476 of file VKRenderer.h.
|
private |
Definition at line 477 of file VKRenderer.h.
|
private |
Definition at line 486 of file VKRenderer.h.
|
private |
Definition at line 436 of file VKRenderer.h.
|
private |
Definition at line 435 of file VKRenderer.h.
|
private |
Definition at line 438 of file VKRenderer.h.
|
private |
Definition at line 437 of file VKRenderer.h.
|
private |
Definition at line 430 of file VKRenderer.h.
|
private |
Definition at line 429 of file VKRenderer.h.
|
private |
Definition at line 402 of file VKRenderer.h.
|
private |
Definition at line 428 of file VKRenderer.h.
|
private |
Definition at line 401 of file VKRenderer.h.
|
private |
Definition at line 400 of file VKRenderer.h.
|
private |
Definition at line 427 of file VKRenderer.h.