TDME2 1.9.121
Classes | Public Member Functions | Protected Member Functions | Private Types | Private Member Functions | Private Attributes | Static Private Attributes | Friends | List of all members
VKRenderer Class Reference

Vulkan renderer. More...

#include <tdme/engine/subsystems/renderer/VKRenderer.h>

Inheritance diagram for VKRenderer:
Inheritance graph
Collaboration diagram for VKRenderer:
Collaboration graph

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...
 
ByteBufferreadPixels (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...
 
- Public Member Functions inherited from Renderer
 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...
 
Vector3getCameraPosition ()
 
virtual void setViewPort (int32_t width, int32_t height)=0
 Set up viewport parameter. More...
 
virtual void updateViewPort ()=0
 Update viewport. More...
 
Matrix4x4getProjectionMatrix ()
 
virtual void onUpdateProjectionMatrix (int contextIdx)=0
 Update projection matrix event. More...
 
Matrix4x4getCameraMatrix ()
 
virtual void onUpdateCameraMatrix (int contextIdx)=0
 Update camera matrix event. More...
 
Matrix4x4getModelViewMatrix ()
 
virtual void onUpdateModelViewMatrix (int contextIdx)=0
 Update model view matrix event. More...
 
Matrix4x4getViewportMatrix ()
 
Matrix2D3x3getTextureMatrix (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_LightgetLight (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_SpecularMaterialgetSpecularMaterial (int contextIdx)
 Get specular material. More...
 
Renderer_PBRMaterialgetPBRMaterial (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 EntityShaderParametersgetShaderParameters (int contextIdx)
 Get shader parameters. More...
 
void setShaderParameters (int contextIdx, const EntityShaderParameters &parameters)
 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 ByteBufferreadPixels (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
 
TexturegenerateMipMap (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_typegetBufferObjectInternal (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_typegetTextureInternal (int32_t textureId)
 
texture_typegetBindTextureInternal (int32_t textureId)
 
framebuffer_pipelines_typegetFramebufferPipelines (uint64_t framebufferPipelinesId)
 
framebuffer_pipelines_typecreateFramebufferPipelines (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_typewindowFramebufferBuffers
 
uint32_t lastWindowFramebufferIdx { 0 }
 
uint32_t currentWindowFramebufferIdx { 0 }
 
SpinLock pipelinesSpinLock
 
uint64_t framebufferPipelinesId { 0 }
 
framebuffer_pipelines_typeframebufferPipelinesCache { 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_typeemptyVertexBuffer { nullptr }
 
int emptyVertexBufferId { 0 }
 
int depthBufferDefault { 0 }
 
int whiteTextureSampler2dDefaultId { 0 }
 
texture_typewhiteTextureSampler2dDefault { nullptr }
 
int whiteTextureSamplerCubeDefaultId { 0 }
 
texture_typewhiteTextureSamplerCubeDefault { 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_typedeleteBuffers
 
vector< delete_image_typedeleteImages
 
Mutex disposeMutex
 
vector< int32_t > disposeTextures
 
vector< int32_t > disposeBuffers
 
vector< VkPipeline > disposePipelines
 
VmaAllocator vmaAllocator { VK_NULL_HANDLE }
 
SpinLock vmaSpinlock
 
vector< context_typecontexts
 
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
 

Additional Inherited Members

- Public Types inherited from Renderer
enum  RendererType { RENDERERTYPE_NONE , RENDERERTYPE_OPENGLES , RENDERERTYPE_OPENGL , RENDERERTYPE_VULKAN }
 
- Public Attributes inherited from Renderer
RendererType rendererType { RENDERERTYPE_NONE }
 
int32_t CONTEXTINDEX_DEFAULT
 
int32_t ID_NONE
 
int32_t CLEAR_DEPTH_BUFFER_BIT
 
int32_t CLEAR_COLOR_BUFFER_BIT
 
int32_t CULLFACE_FRONT
 
int32_t CULLFACE_BACK
 
int32_t TEXTUREUNITS_MAX
 
int32_t PROGRAM_OBJECTS
 
int32_t PROGRAM_POINTS
 
int32_t PROGRAM_LINES
 
int32_t PROGRAM_COMPUTE
 
int32_t SHADER_FRAGMENT_SHADER
 
int32_t SHADER_VERTEX_SHADER
 
int32_t SHADER_COMPUTE_SHADER
 
int32_t DEPTHFUNCTION_ALWAYS
 
int32_t DEPTHFUNCTION_EQUAL
 
int32_t DEPTHFUNCTION_LESSEQUAL
 
int32_t DEPTHFUNCTION_GREATEREQUAL
 
int32_t FRAMEBUFFER_DEFAULT
 
int32_t FRONTFACE_CW
 
int32_t FRONTFACE_CCW
 
int32_t CUBEMAPTEXTUREINDEX_NEGATIVE_X
 
int32_t CUBEMAPTEXTUREINDEX_POSITIVE_X
 
int32_t CUBEMAPTEXTUREINDEX_POSITIVE_Y
 
int32_t CUBEMAPTEXTUREINDEX_NEGATIVE_Y
 
int32_t CUBEMAPTEXTUREINDEX_POSITIVE_Z
 
int32_t CUBEMAPTEXTUREINDEX_NEGATIVE_Z
 
int32_t LIGHTING_NONE
 
int32_t LIGHTING_SPECULAR
 
int32_t LIGHTING_PBR
 
int32_t UNIFORM_CL_SKINNING_VERTEX_COUNT
 
int32_t UNIFORM_CL_SKINNING_MATRIX_COUNT
 
int32_t UNIFORM_CL_SKINNING_INSTANCE_COUNT
 
- Protected Attributes inherited from Renderer
int32_t viewPortWidth
 
int32_t viewPortHeight
 
Renderer_Statistics statistics
 
Vector3 cameraPosition
 
Matrix4x4 projectionMatrix
 
Matrix4x4 cameraMatrix
 
Matrix4x4 modelViewMatrix
 
Matrix4x4 viewportMatrix
 
int32_t effectPass
 
string shaderPrefix
 
vector< Renderer_ContextrendererContexts
 

Detailed Description

Vulkan renderer.

Author
Andreas Drewke
Version
$Id$

Definition at line 83 of file VKRenderer.h.

Member Enumeration Documentation

◆ BlendingMode

enum BlendingMode
private
Enumerator
BLENDING_NONE 
BLENDING_NORMAL 
BLENDING_ADDITIVE 

Definition at line 458 of file VKRenderer.h.

Constructor & Destructor Documentation

◆ VKRenderer()

VKRenderer ( )
protected

Protected constructor.

Definition at line 139 of file VKRenderer.cpp.

Member Function Documentation

◆ applyImageLayoutChange()

void applyImageLayoutChange ( int  contextIdx,
const image_layout_change imageLayoutChange,
texture_type textureObject,
bool  submit = true 
)
inlineprivate

Definition at line 519 of file VKRenderer.cpp.

◆ applyImageLayoutChanges()

void applyImageLayoutChanges ( int  contextIdx,
const array< image_layout_change, 8 >  imageLayoutChanges,
array< texture_type *, 8 >  textureObjects,
bool  submit = true 
)
private

Definition at line 539 of file VKRenderer.cpp.

◆ attachShaderToProgram()

void attachShaderToProgram ( int32_t  programId,
int32_t  shaderId 
)
overridevirtual

Attaches a shader to a program.

Parameters
programIdprogram id
shaderIdshader id

Implements Renderer.

Definition at line 3109 of file VKRenderer.cpp.

◆ beginDrawCommandBuffer()

bool beginDrawCommandBuffer ( int  contextIdx,
int  bufferId = -1 
)
inlineprivate

Definition at line 267 of file VKRenderer.cpp.

◆ bindBitangentsBufferObject()

void bindBitangentsBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind bitangents buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6041 of file VKRenderer.cpp.

◆ bindColorsBufferObject()

void bindColorsBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind colors buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6029 of file VKRenderer.cpp.

◆ bindCubeMapTexture()

void bindCubeMapTexture ( int  contextIdx,
int32_t  textureId 
)
overridevirtual

Binds a cube map texture with given id or unbinds when using ID_NONE.

Parameters
contextIdxcontext index
textureIdtextureId

Implements Renderer.

Definition at line 4968 of file VKRenderer.cpp.

◆ bindEffectColorAddsBufferObject()

void bindEffectColorAddsBufferObject ( int  contextIdx,
int32_t  bufferObjectId,
int32_t  divisor 
)
overridevirtual

Bind effect color adds buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id
divisordivisor

Implements Renderer.

Definition at line 6059 of file VKRenderer.cpp.

◆ bindEffectColorMulsBufferObject()

void bindEffectColorMulsBufferObject ( int  contextIdx,
int32_t  bufferObjectId,
int32_t  divisor 
)
overridevirtual

Bind effect color muls buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id
divisordivisor

Implements Renderer.

Definition at line 6053 of file VKRenderer.cpp.

◆ bindFrameBuffer()

void bindFrameBuffer ( int32_t  frameBufferId)
overridevirtual

Enables a framebuffer to be rendered.

Parameters
frameBufferIdframeBufferId

Implements Renderer.

Definition at line 5414 of file VKRenderer.cpp.

◆ bindIndicesBufferObject()

void bindIndicesBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind indices buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6004 of file VKRenderer.cpp.

◆ bindModelMatricesBufferObject()

void bindModelMatricesBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind model matrices buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6047 of file VKRenderer.cpp.

◆ bindNormalsBufferObject()

void bindNormalsBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind normals buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6023 of file VKRenderer.cpp.

◆ bindOriginsBufferObject()

void bindOriginsBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind origins buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6065 of file VKRenderer.cpp.

◆ bindPointSizesBufferObject()

void bindPointSizesBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind point sizes buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6075 of file VKRenderer.cpp.

◆ bindSkinningMatricesBufferObject()

void bindSkinningMatricesBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind skinning matrices result buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 7295 of file VKRenderer.cpp.

◆ bindSkinningNormalsBufferObject()

void bindSkinningNormalsBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind skinning normal buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 7212 of file VKRenderer.cpp.

◆ bindSkinningNormalsResultBufferObject()

void bindSkinningNormalsResultBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind skinning normals result buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 7264 of file VKRenderer.cpp.

◆ bindSkinningVertexJointIdxsBufferObject()

void bindSkinningVertexJointIdxsBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind skinning vertex joint indices buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 7222 of file VKRenderer.cpp.

◆ bindSkinningVertexJointsBufferObject()

void bindSkinningVertexJointsBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind skinning vertex joints buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 7217 of file VKRenderer.cpp.

◆ bindSkinningVertexJointWeightsBufferObject()

void bindSkinningVertexJointWeightsBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind skinning vertex joint weights buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 7227 of file VKRenderer.cpp.

◆ bindSkinningVerticesBufferObject()

void bindSkinningVerticesBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind skinning vertices buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 7207 of file VKRenderer.cpp.

◆ bindSkinningVerticesResultBufferObject()

void bindSkinningVerticesResultBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind skinning vertices result buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 7232 of file VKRenderer.cpp.

◆ bindSpriteSheetDimensionBufferObject()

void bindSpriteSheetDimensionBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind sprite sheet dimension buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6080 of file VKRenderer.cpp.

◆ bindTangentsBufferObject()

void bindTangentsBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind tangents buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6035 of file VKRenderer.cpp.

◆ bindTexture()

void bindTexture ( int  contextIdx,
int32_t  textureId 
)
overridevirtual

Binds a texture with given id or unbinds when using ID_NONE.

Parameters
contextIdxcontext index
textureIdtextureId

Implements Renderer.

Definition at line 4973 of file VKRenderer.cpp.

◆ bindTextureCoordinatesBufferObject()

void bindTextureCoordinatesBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind texture coordinates buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6011 of file VKRenderer.cpp.

◆ bindTextureSpriteIndicesBufferObject()

void bindTextureSpriteIndicesBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind texture and sprite indices buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6070 of file VKRenderer.cpp.

◆ bindVerticesBufferObject()

void bindVerticesBufferObject ( int  contextIdx,
int32_t  bufferObjectId 
)
overridevirtual

Bind vertices buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id

Implements Renderer.

Definition at line 6017 of file VKRenderer.cpp.

◆ checkLayers()

VkBool32 checkLayers ( uint32_t  checkCount,
const char **  checkNames,
const vector< VkLayerProperties > &  instanceLayers 
)
inlineprivate

Definition at line 181 of file VKRenderer.cpp.

◆ clear()

void clear ( int32_t  mask)
overridevirtual

Clear render buffer with given mask.

Parameters
maskmask

Implements Renderer.

Definition at line 3552 of file VKRenderer.cpp.

◆ createBuffer()

void createBuffer ( VkDeviceSize  size,
VkBufferUsageFlags  usage,
VkMemoryPropertyFlags  properties,
VkBuffer &  buffer,
VmaAllocation &  allocation,
VmaAllocationInfo &  allocationInfo 
)
inlineprivate

Definition at line 5735 of file VKRenderer.cpp.

◆ createBufferObjects()

vector< int32_t > createBufferObjects ( int32_t  buffers,
bool  useGPUMemory,
bool  shared 
)
overridevirtual

Generate buffer objects for vertex data and such.

Parameters
buffersbuffers
useGPUMemoryuse GPU memory
sharedshared between different threads
Returns
ids

Implements Renderer.

Definition at line 5690 of file VKRenderer.cpp.

◆ createBufferTexture()

void createBufferTexture ( int32_t  textureId,
int32_t  width,
int32_t  height,
int32_t  cubeMapTextureId,
int32_t  cubeMapTextureIndex,
VkFormat  format 
)
private

Definition at line 3831 of file VKRenderer.cpp.

◆ createColorBlendAttachmentState()

void createColorBlendAttachmentState ( VkPipelineColorBlendAttachmentState &  blendAttachmentState)
inlineprivate

Definition at line 2098 of file VKRenderer.cpp.

◆ createColorBufferTexture()

int32_t createColorBufferTexture ( int32_t  width,
int32_t  height,
int32_t  cubeMapTextureId,
int32_t  cubeMapTextureIndex 
)
overridevirtual

Creates a color buffer texture.

Parameters
widthwidth
heightheight @oaram cubeMapTextureId cube map texture id
cubeMapTextureIndexcube map texture index
Returns
color buffer texture id

Implements Renderer.

Definition at line 3795 of file VKRenderer.cpp.

◆ createCubeMapTexture()

int32_t createCubeMapTexture ( int  contextIdx,
int32_t  width,
int32_t  height 
)
overridevirtual

Create cube map texture from frame buffers.

Parameters
contextIdxcontext index
widthwidth
heightheight
Returns
texture id

Implements Renderer.

Definition at line 4202 of file VKRenderer.cpp.

◆ createDepthBufferTexture() [1/2]

void createDepthBufferTexture ( int32_t  textureId,
int32_t  width,
int32_t  height,
int32_t  cubeMapTextureId,
int32_t  cubeMapTextureIndex 
)
private

Definition at line 3666 of file VKRenderer.cpp.

◆ createDepthBufferTexture() [2/2]

int32_t createDepthBufferTexture ( int32_t  width,
int32_t  height,
int32_t  cubeMapTextureId,
int32_t  cubeMapTextureIndex 
)
overridevirtual

Creates a depth buffer texture.

Parameters
widthwidth
heightheight @oaram cubeMapTextureId cube map texture id
cubeMapTextureIndexcube map texture index
Returns
depth texture id

Implements Renderer.

Definition at line 3630 of file VKRenderer.cpp.

◆ createDepthStencilStateCreateInfo()

void createDepthStencilStateCreateInfo ( VkPipelineDepthStencilStateCreateInfo &  depthStencilStateCreateInfo)
inlineprivate

Definition at line 2109 of file VKRenderer.cpp.

◆ createFramebufferObject() [1/2]

int32_t createFramebufferObject ( int32_t  depthBufferTextureId,
int32_t  colorBufferTextureId,
int32_t  cubeMapTextureId = 0,
int32_t  cubeMapTextureIndex = 0 
)
overridevirtual

Creates a frame buffer object with depth texture attached.

Parameters
depthBufferTextureIddepth buffer texture id
colorBufferTextureIdcolor buffer texture id
cubeMapTextureIdcube map texture id
cubeMapTextureIndexcube map texture index
Returns
frame buffer object id

Implements Renderer.

Definition at line 5308 of file VKRenderer.cpp.

◆ createFramebufferObject() [2/2]

void createFramebufferObject ( int32_t  frameBufferId)
private

Definition at line 5006 of file VKRenderer.cpp.

◆ createFramebufferPipelines()

VKRenderer::framebuffer_pipelines_type * createFramebufferPipelines ( uint64_t  framebufferPipelinesId)
inlineprivate

Definition at line 5984 of file VKRenderer.cpp.

◆ createGBufferColorTexture()

int32_t createGBufferColorTexture ( int32_t  width,
int32_t  height 
)
overridevirtual

Creates a geometry buffer color RGBA texture.

Parameters
widthwidth
heightheight
Returns
geometry buffer color RGBA texture id

Implements Renderer.

Definition at line 3999 of file VKRenderer.cpp.

◆ createGBufferGeometryTexture()

int32_t createGBufferGeometryTexture ( int32_t  width,
int32_t  height 
)
overridevirtual

Creates a geometry buffer geometry texture.

Parameters
widthwidth
heightheight
Returns
geometry buffer geometry texture id

Implements Renderer.

Definition at line 3963 of file VKRenderer.cpp.

◆ createGeometryBufferObject()

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 
)
overridevirtual

Creates a geometry frame buffer object.

Parameters
depthBufferTextureIddepth buffer texture id
geometryBufferTextureId1geometry texture id 1
geometryBufferTextureId2geometry texture id 2
geometryBufferTextureId3geometry texture id 3
colorBufferTextureId1color buffer texture id 1
colorBufferTextureId2color buffer texture id 2
colorBufferTextureId3color buffer texture id 3
colorBufferTextureId4color buffer texture id 4
colorBufferTextureId5color buffer texture id 5
Returns
frame buffer object id

Implements Renderer.

Definition at line 5351 of file VKRenderer.cpp.

◆ createLinesRenderingPipeline()

void createLinesRenderingPipeline ( int  contextIdx,
program_type program 
)
private

Definition at line 2735 of file VKRenderer.cpp.

◆ createObjectsRenderingPipeline()

void createObjectsRenderingPipeline ( int  contextIdx,
program_type program 
)
private

Definition at line 2264 of file VKRenderer.cpp.

◆ createPipelineFramebufferId()

uint64_t createPipelineFramebufferId ( )
inlineprivate

Definition at line 2124 of file VKRenderer.cpp.

◆ createPipelineIndex()

uint16_t createPipelineIndex ( program_type program,
int  contextIdx 
)
inlineprivate

Definition at line 2131 of file VKRenderer.cpp.

◆ createPointsRenderingPipeline()

void createPointsRenderingPipeline ( int  contextIdx,
program_type program 
)
private

Definition at line 2513 of file VKRenderer.cpp.

◆ createProgram()

int32_t createProgram ( int  type)
overridevirtual

Creates a shader program.

Parameters
typetype
Returns
int

Implements Renderer.

Definition at line 3082 of file VKRenderer.cpp.

◆ createRasterizationStateCreateInfo()

void createRasterizationStateCreateInfo ( int  contextIdx,
VkPipelineRasterizationStateCreateInfo &  rasterizationStateCreateInfo 
)
inlineprivate

Definition at line 2087 of file VKRenderer.cpp.

◆ createRenderProgram()

void createRenderProgram ( program_type program)
private

Definition at line 2142 of file VKRenderer.cpp.

◆ createSkinningComputingProgram()

void createSkinningComputingProgram ( program_type program)
inlineprivate

Definition at line 2918 of file VKRenderer.cpp.

◆ createTexture()

int32_t createTexture ( )
overridevirtual

Creates a texture.

Returns
texture id

Implements Renderer.

Definition at line 3606 of file VKRenderer.cpp.

◆ disableBlending()

void disableBlending ( )
overridevirtual

Disables blending.

Implements Renderer.

Definition at line 3506 of file VKRenderer.cpp.

◆ disableCulling()

void disableCulling ( int  contextIdx)
overridevirtual

Disable culling.

Parameters
contextIdxcontext index

Implements Renderer.

Definition at line 3468 of file VKRenderer.cpp.

◆ disableDepthBufferTest()

void disableDepthBufferTest ( )
overridevirtual

Disable depth buffer test.

Implements Renderer.

Definition at line 3527 of file VKRenderer.cpp.

◆ disableDepthBufferWriting()

void disableDepthBufferWriting ( )
overridevirtual

Disable depth buffer writing.

Implements Renderer.

Definition at line 3520 of file VKRenderer.cpp.

◆ dispatchCompute()

void dispatchCompute ( int  contextIdx,
int32_t  numGroupsX,
int32_t  numGroupsY,
int32_t  numGroupsZ 
)
overridevirtual

Dispatch compute.

Parameters
contextIdxcontext index
numGroupsXnum groups x
numGroupsYnum groups y
numGroupsZnum groups z

Implements Renderer.

Definition at line 7048 of file VKRenderer.cpp.

◆ disposeBufferObjects()

void disposeBufferObjects ( vector< int32_t > &  bufferObjectIds)
overridevirtual

Disposes a frame buffer object.

Parameters
bufferObjectIdsframe buffer id

Implements Renderer.

Definition at line 6688 of file VKRenderer.cpp.

◆ disposeFrameBufferObject()

void disposeFrameBufferObject ( int32_t  frameBufferId)
overridevirtual

Disposes a frame buffer object.

Parameters
frameBufferIdframe buffer id

Implements Renderer.

Definition at line 5674 of file VKRenderer.cpp.

◆ disposeTexture()

void disposeTexture ( int32_t  textureId)
overridevirtual

Dispose a texture.

Parameters
textureIdtexture id

Implements Renderer.

Definition at line 4998 of file VKRenderer.cpp.

◆ doneGuiMode()

void doneGuiMode ( )
overridevirtual

Set up renderer for 3d rendering.

Implements Renderer.

Definition at line 7040 of file VKRenderer.cpp.

◆ drawIndexedTrianglesFromBufferObjects()

void drawIndexedTrianglesFromBufferObjects ( int  contextIdx,
int32_t  triangles,
int32_t  trianglesOffset 
)
overridevirtual

Draw indexed triangles from buffer objects.

Parameters
contextIdxcontext index
trianglestriangles
trianglesOffsettriangles offset

Implements Renderer.

Definition at line 6312 of file VKRenderer.cpp.

◆ drawInstancedIndexedTrianglesFromBufferObjects()

void drawInstancedIndexedTrianglesFromBufferObjects ( int  contextIdx,
int32_t  triangles,
int32_t  trianglesOffset,
int32_t  instances 
)
overridevirtual

Draw instanced indexed triangles from buffer objects.

Parameters
contextIdxcontext index
trianglestriangles
trianglesOffsettriangles offset
instancesinstances

Implements Renderer.

Definition at line 6085 of file VKRenderer.cpp.

◆ drawInstancedTrianglesFromBufferObjects() [1/2]

void drawInstancedTrianglesFromBufferObjects ( int  contextIdx,
int32_t  triangles,
int32_t  trianglesOffset,
int32_t  instances 
)
overridevirtual

Draw instanced triangles from buffer objects.

Parameters
contextIdxcontext index
trianglestriangles
trianglesOffsettriangles offset
instancesinstances

Implements Renderer.

Definition at line 6351 of file VKRenderer.cpp.

◆ drawInstancedTrianglesFromBufferObjects() [2/2]

void drawInstancedTrianglesFromBufferObjects ( int  contextIdx,
int32_t  triangles,
int32_t  trianglesOffset,
VkBuffer  indicesBuffer,
int32_t  instances 
)
inlineprivate

Definition at line 6089 of file VKRenderer.cpp.

◆ drawLinesFromBufferObjects()

void drawLinesFromBufferObjects ( int  contextIdx,
int32_t  points,
int32_t  pointsOffset 
)
overridevirtual

Draw lines from buffer objects.

Parameters
contextIdxcontext index
pointspoints
pointsOffsetpoints offset

Implements Renderer.

Definition at line 6522 of file VKRenderer.cpp.

◆ drawPointsFromBufferObjects()

void drawPointsFromBufferObjects ( int  contextIdx,
int32_t  points,
int32_t  pointsOffset 
)
overridevirtual

Draw points from buffer objects.

Parameters
contextIdxcontext index
pointspoints
pointsOffsetpoints offset

Implements Renderer.

Definition at line 6361 of file VKRenderer.cpp.

◆ drawTrianglesFromBufferObjects()

void drawTrianglesFromBufferObjects ( int  contextIdx,
int32_t  triangles,
int32_t  trianglesOffset 
)
overridevirtual

Draw triangles from buffer objects.

Parameters
contextIdxcontext index
trianglestriangles
trianglesOffsettriangles offset

Implements Renderer.

Definition at line 6356 of file VKRenderer.cpp.

◆ enableAdditionBlending()

void enableAdditionBlending ( )
overridevirtual

Enable blending with c = a + b.

Implements Renderer.

Definition at line 3500 of file VKRenderer.cpp.

◆ enableBlending()

void enableBlending ( )
overridevirtual

Enables blending.

Implements Renderer.

Definition at line 3493 of file VKRenderer.cpp.

◆ enableCulling()

void enableCulling ( int  contextIdx)
overridevirtual

Enable culling.

Parameters
contextIdxcontext index

Implements Renderer.

Definition at line 3459 of file VKRenderer.cpp.

◆ enableDepthBufferTest()

void enableDepthBufferTest ( )
overridevirtual

Enable depth buffer test.

Implements Renderer.

Definition at line 3534 of file VKRenderer.cpp.

◆ enableDepthBufferWriting()

void enableDepthBufferWriting ( )
overridevirtual

Enable depth buffer writing.

Implements Renderer.

Definition at line 3513 of file VKRenderer.cpp.

◆ endDrawCommandBuffer()

VkCommandBuffer endDrawCommandBuffer ( int  contextIdx,
int  bufferId = -1,
bool  cycleBuffers = true 
)
inlineprivate

Definition at line 353 of file VKRenderer.cpp.

◆ endDrawCommandsAllContexts()

void endDrawCommandsAllContexts ( )
inlineprivate

Definition at line 6320 of file VKRenderer.cpp.

◆ endRenderPass()

void endRenderPass ( int  contextIdx)
inlineprivate

Definition at line 1597 of file VKRenderer.cpp.

◆ finishFrame()

void finishFrame ( )
overridevirtual

Finish frame.

Implements Renderer.

Definition at line 1786 of file VKRenderer.cpp.

◆ finishRendering()

void finishRendering ( )
inlineprivate

Definition at line 7144 of file VKRenderer.cpp.

◆ finishSetupCommandBuffer()

void finishSetupCommandBuffer ( int  contextIdx)
inlineprivate

Definition at line 221 of file VKRenderer.cpp.

◆ finishSetupCommandBuffers()

void finishSetupCommandBuffers ( )
inlineprivate

Definition at line 412 of file VKRenderer.cpp.

◆ getBindBufferObjectInternal()

VkBuffer getBindBufferObjectInternal ( int32_t  bufferObjectId,
uint32_t &  size 
)
inlineprivate

Definition at line 5722 of file VKRenderer.cpp.

◆ getBindTextureInternal()

VKRenderer::texture_type * getBindTextureInternal ( int32_t  textureId)
inlineprivate

Definition at line 5965 of file VKRenderer.cpp.

◆ getBufferObjectInternal()

VKRenderer::buffer_object_type * getBufferObjectInternal ( int32_t  bufferObjectId)
inlineprivate

Definition at line 5731 of file VKRenderer.cpp.

◆ getFramebufferPipelines()

VKRenderer::framebuffer_pipelines_type * getFramebufferPipelines ( uint64_t  framebufferPipelinesId)
inlineprivate

Definition at line 5971 of file VKRenderer.cpp.

◆ getImageLayoutChange()

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 
)
inlineprivate

Definition at line 468 of file VKRenderer.cpp.

◆ getMipLevels()

uint32_t getMipLevels ( Texture texture)
inlineprivate

Definition at line 659 of file VKRenderer.cpp.

◆ getPipelineInternal()

VkPipeline getPipelineInternal ( int  contextIdx,
program_type programm,
uint64_t  framebuffePipelineId,
uint32_t  pipelineIdx 
)
inlineprivate

Definition at line 5995 of file VKRenderer.cpp.

◆ getProgramUniformLocation()

int32_t getProgramUniformLocation ( int32_t  programId,
const string &  name 
)
overridevirtual

Returns location of given uniform variable.

Parameters
programIdprogram id
nameuniform name
Returns

Implements Renderer.

Definition at line 3241 of file VKRenderer.cpp.

◆ getRenderer()

const string getRenderer ( )
overridevirtual
Returns
renderer

Implements Renderer.

Definition at line 909 of file VKRenderer.cpp.

◆ getShaderVersion()

const string getShaderVersion ( )
overridevirtual
Returns
shader version e.g. gl2, gl3 or gles2

Implements Renderer.

Definition at line 913 of file VKRenderer.cpp.

◆ getStatistics()

const Renderer::Renderer_Statistics getStatistics ( )
overridevirtual
Returns
renderer statistics

Implements Renderer.

Definition at line 7307 of file VKRenderer.cpp.

◆ getTextureInternal()

VKRenderer::texture_type * getTextureInternal ( int32_t  textureId)
inlineprivate

Definition at line 5961 of file VKRenderer.cpp.

◆ getTextureUnit()

int32_t getTextureUnit ( int  contextIdx)
overridevirtual

Get texture unit.

Parameters
contextIdxcontext index
Returns
active texture unit

Implements Renderer.

Definition at line 6697 of file VKRenderer.cpp.

◆ getTextureUnits()

int32_t getTextureUnits ( )
overridevirtual
Returns
number of texture units

Implements Renderer.

Definition at line 2057 of file VKRenderer.cpp.

◆ getVendor()

const string getVendor ( )
overridevirtual
Returns
vendor

Implements Renderer.

Definition at line 905 of file VKRenderer.cpp.

◆ initGuiMode()

void initGuiMode ( )
overridevirtual

Set up renderer for GUI rendering.

Implements Renderer.

Definition at line 7032 of file VKRenderer.cpp.

◆ initialize()

void initialize ( )
overridevirtual

Initialize renderer.

Implements Renderer.

Definition at line 922 of file VKRenderer.cpp.

◆ initializeFrame()

void initializeFrame ( )
overridevirtual

Pre Frame Initialization.

Implements Renderer.

Definition at line 1659 of file VKRenderer.cpp.

◆ initializeFrameBuffers()

void initializeFrameBuffers ( )
private

Definition at line 1604 of file VKRenderer.cpp.

◆ initializeRenderPass()

void initializeRenderPass ( )
private

Definition at line 1483 of file VKRenderer.cpp.

◆ initializeSwapChain()

void initializeSwapChain ( )
private

TODO = a.drewke, ???

Definition at line 758 of file VKRenderer.cpp.

◆ invalidatePipelines()

void invalidatePipelines ( )
inlineprivate

Definition at line 1750 of file VKRenderer.cpp.

◆ invalidateTextureDescriptorCaches()

void invalidateTextureDescriptorCaches ( int  textureId)
inlineprivate

Definition at line 1726 of file VKRenderer.cpp.

◆ isBufferObjectsAvailable()

bool isBufferObjectsAvailable ( )
overridevirtual

Checks if buffer objects is available.

Returns
buffer objects availability

Implements Renderer.

Definition at line 2002 of file VKRenderer.cpp.

◆ isComputeShaderAvailable()

bool isComputeShaderAvailable ( )
overridevirtual
Returns
if compute shaders are available

Implements Renderer.

Definition at line 2041 of file VKRenderer.cpp.

◆ isDeferredShadingAvailable()

bool isDeferredShadingAvailable ( )
overridevirtual
Returns
If deferred shading is available

Implements Renderer.

Definition at line 2053 of file VKRenderer.cpp.

◆ isDepthTextureAvailable()

bool isDepthTextureAvailable ( )
overridevirtual

Checks if depth texture is available.

Returns
depth texture is available

Implements Renderer.

Definition at line 2007 of file VKRenderer.cpp.

◆ isGLCLAvailable()

bool isGLCLAvailable ( )
overridevirtual
Returns
if OpenGL+CL is available

Implements Renderer.

Definition at line 2045 of file VKRenderer.cpp.

◆ isInstancedRenderingAvailable()

bool isInstancedRenderingAvailable ( )
overridevirtual

Checks if instanced rendering is available.

Returns
instance rendering availability

Implements Renderer.

Definition at line 2032 of file VKRenderer.cpp.

◆ isNormalMappingAvailable()

bool isNormalMappingAvailable ( )
overridevirtual
Returns
if normal mapping is supported

Implements Renderer.

Definition at line 2027 of file VKRenderer.cpp.

◆ isPBRAvailable()

bool isPBRAvailable ( )
overridevirtual
Returns
if PBR lighting is supported

Implements Renderer.

Definition at line 2036 of file VKRenderer.cpp.

◆ isSpecularMappingAvailable()

bool isSpecularMappingAvailable ( )
overridevirtual
Returns
if specular mapping is supported

Implements Renderer.

Definition at line 2022 of file VKRenderer.cpp.

◆ isSupportingIntegerProgramAttributes()

bool isSupportingIntegerProgramAttributes ( )
overridevirtual
Returns
is supporting integer program attributes

Implements Renderer.

Definition at line 2017 of file VKRenderer.cpp.

◆ isSupportingMultithreadedRendering()

bool isSupportingMultithreadedRendering ( )
overridevirtual
Returns
if renderer is supporting multi threaded rendering

Implements Renderer.

Definition at line 918 of file VKRenderer.cpp.

◆ isUsingProgramAttributeLocation()

bool isUsingProgramAttributeLocation ( )
overridevirtual
Returns
requires program attribute location

Implements Renderer.

Definition at line 2012 of file VKRenderer.cpp.

◆ isUsingShortIndices()

bool isUsingShortIndices ( )
overridevirtual
Returns
Returns if renderer is using short indices, otherwise it uses int indices

Implements Renderer.

Definition at line 2049 of file VKRenderer.cpp.

◆ linkProgram()

bool linkProgram ( int32_t  programId)
overridevirtual

Links attached shaders to a program.

Parameters
programIdprogram id
Returns
success

Implements Renderer.

Definition at line 3126 of file VKRenderer.cpp.

◆ loadShader()

int32_t loadShader ( int32_t  type,
const string &  pathName,
const string &  fileName,
const string &  definitions = string(),
const string &  functions = string() 
)
overridevirtual

Loads a shader.

Parameters
typetype
pathNamepath name
fileNamefile name
definitionspreprocessor definitions
functionsincluded functions
Returns
shader handle

Implements Renderer.

Definition at line 2063 of file VKRenderer.cpp.

◆ memoryBarrier()

void memoryBarrier ( )
overridevirtual

Memory barrier.

Implements Renderer.

Definition at line 7161 of file VKRenderer.cpp.

◆ prepareSetupCommandBuffer()

void prepareSetupCommandBuffer ( int  contextIdx)
inlineprivate

Definition at line 199 of file VKRenderer.cpp.

◆ prepareTextureImage()

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 
)
inlineprivate

Definition at line 674 of file VKRenderer.cpp.

◆ readPixelDepth()

float readPixelDepth ( int32_t  x,
int32_t  y 
)
overridevirtual

Reads a pixel depth.

Parameters
xx
yy
Returns
depth 0.0f..1.0f

Implements Renderer.

Definition at line 6707 of file VKRenderer.cpp.

◆ readPixels()

ByteBuffer * readPixels ( int32_t  x,
int32_t  y,
int32_t  width,
int32_t  height 
)
overridevirtual

Read pixels.

Parameters
xx
yy
widthwidth
heightheight
Returns
byte buffer

Implements Renderer.

Definition at line 6849 of file VKRenderer.cpp.

◆ requestSubmitDrawBuffers()

void requestSubmitDrawBuffers ( int  contextIdx)
inlineprivate

Definition at line 6336 of file VKRenderer.cpp.

◆ reshape()

void reshape ( )
private

Definition at line 1628 of file VKRenderer.cpp.

◆ resizeColorBufferTexture()

void resizeColorBufferTexture ( int32_t  textureId,
int32_t  width,
int32_t  height 
)
overridevirtual

Resize color buffer texture.

Parameters
textureIdtexture id
widthwidth
heightheight

Implements Renderer.

Definition at line 4847 of file VKRenderer.cpp.

◆ resizeDepthBufferTexture()

void resizeDepthBufferTexture ( int32_t  textureId,
int32_t  width,
int32_t  height 
)
overridevirtual

Resizes a depth texture.

Parameters
textureIdtexture id
widthwidth
heightheight

Implements Renderer.

Definition at line 4806 of file VKRenderer.cpp.

◆ resizeGBufferColorTexture()

void resizeGBufferColorTexture ( int32_t  textureId,
int32_t  width,
int32_t  height 
)
overridevirtual

Resizes a geometry buffer color RGBA texture.

Parameters
textureIdtexture id
widthwidth
heightheight
Returns
geometry buffer color RGBA texture id

Implements Renderer.

Definition at line 4928 of file VKRenderer.cpp.

◆ resizeGBufferGeometryTexture()

void resizeGBufferGeometryTexture ( int32_t  textureId,
int32_t  width,
int32_t  height 
)
overridevirtual

Resizes a geometry buffer geometry texture.

Parameters
textureIdtexture id
widthwidth
heightheight
Returns
geometry buffer geometry texture id

Implements Renderer.

Definition at line 4888 of file VKRenderer.cpp.

◆ setClearColor()

void setClearColor ( float  red,
float  green,
float  blue,
float  alpha 
)
overridevirtual

Set up clear color.

Parameters
redred
greengreen
blueblue
alphaalpha

Implements Renderer.

Definition at line 3450 of file VKRenderer.cpp.

◆ setColorMask()

void setColorMask ( bool  red,
bool  green,
bool  blue,
bool  alpha 
)
overridevirtual

Set up GL rendering colormask.

Parameters
redred
greengreen
blueblue
alphaalpha

Implements Renderer.

Definition at line 3548 of file VKRenderer.cpp.

◆ setCullFace()

void setCullFace ( int32_t  cullFace)
overridevirtual

Sets up which face will be culled.

Parameters
cullFacecull face

Implements Renderer.

Definition at line 3486 of file VKRenderer.cpp.

◆ setDepthFunction()

void setDepthFunction ( int32_t  depthFunction)
overridevirtual

Set up depth function.

Parameters
depthFunctiondepth function

Implements Renderer.

Definition at line 3541 of file VKRenderer.cpp.

◆ setFrontFace()

void setFrontFace ( int  contextIdx,
int32_t  frontFace 
)
overridevirtual

Set up clock wise or counter clock wise faces as front face.

Parameters
contextIdxcontext index
frontFacefrontFace

Implements Renderer.

Definition at line 3477 of file VKRenderer.cpp.

◆ setImageLayout()

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 
)
inlineprivate

Definition at line 416 of file VKRenderer.cpp.

◆ setImageLayout2()

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 
)
inlineprivate

Definition at line 576 of file VKRenderer.cpp.

◆ setImageLayout3()

void setImageLayout3 ( int  contextIdx,
VkImage  image,
VkImageAspectFlags  aspectMask,
const array< ThsvsAccessType, 2 > &  accessTypes,
const array< ThsvsAccessType, 2 > &  nextAccessTypes,
ThsvsImageLayout  layout,
ThsvsImageLayout  nextLayout 
)
inlineprivate

Definition at line 620 of file VKRenderer.cpp.

◆ setLineWidth()

void setLineWidth ( float  lineWidth)
overridevirtual

Set line width.

Parameters
lineWidthline width

Implements Renderer.

Definition at line 6517 of file VKRenderer.cpp.

◆ setProgramAttributeLocation()

void setProgramAttributeLocation ( int32_t  programId,
int32_t  location,
const string &  name 
)
overridevirtual

Bind attribute to a input location.

Parameters
programIdprogram id
locationlocation
nameattribute name

Implements Renderer.

Definition at line 3425 of file VKRenderer.cpp.

◆ setProgramUniformFloat()

void setProgramUniformFloat ( int  contextIdx,
int32_t  uniformId,
float  value 
)
overridevirtual

Set up a float uniform value.

Parameters
contextIdxcontext index
uniformIduniform id
valuevalue

Implements Renderer.

Definition at line 3376 of file VKRenderer.cpp.

◆ setProgramUniformFloatMatrices4x4()

void setProgramUniformFloatMatrices4x4 ( int  contextIdx,
int32_t  uniformId,
int32_t  count,
FloatBuffer data 
)
overridevirtual

Set up a float matrices 4x4 uniform values.

Parameters
contextIdxcontext index
uniformIduniform id
countcount
datadata

Implements Renderer.

Definition at line 3405 of file VKRenderer.cpp.

◆ setProgramUniformFloatMatrix3x3()

void setProgramUniformFloatMatrix3x3 ( int  contextIdx,
int32_t  uniformId,
const array< float, 9 > &  value 
)
overridevirtual

Set up a float matrix 3x3 uniform value.

Parameters
contextIdxcontext index
uniformIduniform id
valuevalue

Implements Renderer.

Definition at line 3381 of file VKRenderer.cpp.

◆ setProgramUniformFloatMatrix4x4()

void setProgramUniformFloatMatrix4x4 ( int  contextIdx,
int32_t  uniformId,
const array< float, 16 > &  value 
)
overridevirtual

Set up a float matrix 4x4 uniform value.

Parameters
contextIdxcontext index
uniformIduniform id
valuevalue

Implements Renderer.

Definition at line 3400 of file VKRenderer.cpp.

◆ setProgramUniformFloatVec2()

void setProgramUniformFloatVec2 ( int  contextIdx,
int32_t  uniformId,
const array< float, 2 > &  data 
)
overridevirtual

Set up a float vec2 uniform value.

Parameters
contextIdxcontext index
uniformIduniform id
datadata

Implements Renderer.

Definition at line 3420 of file VKRenderer.cpp.

◆ setProgramUniformFloatVec3()

void setProgramUniformFloatVec3 ( int  contextIdx,
int32_t  uniformId,
const array< float, 3 > &  data 
)
overridevirtual

Set up a float vec3 uniform value.

Parameters
contextIdxcontext index
uniformIduniform id
datadata

Implements Renderer.

Definition at line 3415 of file VKRenderer.cpp.

◆ setProgramUniformFloatVec4()

void setProgramUniformFloatVec4 ( int  contextIdx,
int32_t  uniformId,
const array< float, 4 > &  data 
)
overridevirtual

Set up a float vec4 uniform value.

Parameters
contextIdxcontext index
uniformIduniform id
datadata

Implements Renderer.

Definition at line 3410 of file VKRenderer.cpp.

◆ setProgramUniformInteger()

void setProgramUniformInteger ( int  contextIdx,
int32_t  uniformId,
int32_t  value 
)
overridevirtual

Set up a integer uniform value.

Parameters
contextIdxcontext index
uniformIduniform id
valuevalue

Implements Renderer.

Definition at line 3371 of file VKRenderer.cpp.

◆ setProgramUniformInternal()

void setProgramUniformInternal ( int  contextIdx,
int32_t  uniformId,
uint8_t *  data,
int32_t  size 
)
inlineprivate

Definition at line 3258 of file VKRenderer.cpp.

◆ setTextureUnit()

void setTextureUnit ( int  contextIdx,
int32_t  textureUnit 
)
overridevirtual

Sets up texture unit.

Parameters
contextIdxcontext index
textureUnittexture unit

Implements Renderer.

Definition at line 6702 of file VKRenderer.cpp.

◆ setupLinesRenderingPipeline()

void setupLinesRenderingPipeline ( int  contextIdx,
program_type program 
)
inlineprivate

Definition at line 2899 of file VKRenderer.cpp.

◆ setupObjectsRenderingPipeline()

void setupObjectsRenderingPipeline ( int  contextIdx,
program_type program 
)
inlineprivate

Definition at line 2495 of file VKRenderer.cpp.

◆ setupPointsRenderingPipeline()

void setupPointsRenderingPipeline ( int  contextIdx,
program_type program 
)
inlineprivate

Definition at line 2716 of file VKRenderer.cpp.

◆ setupSkinningComputingPipeline()

void setupSkinningComputingPipeline ( int  contextIdx,
program_type program 
)
inlineprivate

Definition at line 3042 of file VKRenderer.cpp.

◆ setViewPort()

void setViewPort ( int32_t  width,
int32_t  height 
)
overridevirtual

Set up viewport parameter.

Parameters
widthwidth
heightheight

Implements Renderer.

Definition at line 3429 of file VKRenderer.cpp.

◆ setVSync()

void setVSync ( bool  vSync)
overridevirtual

Enable/Disable v-sync.

Parameters
vSyncV-sync enabled

Implements Renderer.

Definition at line 7300 of file VKRenderer.cpp.

◆ startRenderPass()

void startRenderPass ( int  contextIdx)
inlineprivate

Definition at line 1563 of file VKRenderer.cpp.

◆ submitDrawCommandBuffers()

void submitDrawCommandBuffers ( int  commandBufferCount,
VkCommandBuffer *  commandBuffers,
VkFence &  fence 
)
inlineprivate

Definition at line 384 of file VKRenderer.cpp.

◆ unbindBufferObjects()

void unbindBufferObjects ( int  contextIdx)
overridevirtual

Unbind buffer objects.

Parameters
contextIdxcontext index

Implements Renderer.

Definition at line 6678 of file VKRenderer.cpp.

◆ unsetPipeline()

void unsetPipeline ( int  contextIdx)
inlineprivate

Definition at line 2079 of file VKRenderer.cpp.

◆ updateViewPort()

void updateViewPort ( )
overridevirtual

Update viewport.

Implements Renderer.

Definition at line 3436 of file VKRenderer.cpp.

◆ uploadBufferObject() [1/3]

void uploadBufferObject ( int  contextIdx,
int32_t  bufferObjectId,
int32_t  size,
FloatBuffer data 
)
overridevirtual

Uploads buffer data to buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id
sizesize
datadata

Implements Renderer.

Definition at line 5936 of file VKRenderer.cpp.

◆ uploadBufferObject() [2/3]

void uploadBufferObject ( int  contextIdx,
int32_t  bufferObjectId,
int32_t  size,
IntBuffer data 
)
overridevirtual

Uploads buffer data to buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id
sizesize
datadata

Implements Renderer.

Definition at line 5946 of file VKRenderer.cpp.

◆ uploadBufferObject() [3/3]

void uploadBufferObject ( int  contextIdx,
int32_t  bufferObjectId,
int32_t  size,
ShortBuffer data 
)
overridevirtual

Uploads buffer data to buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id
sizesize
datadata

Implements Renderer.

Definition at line 5941 of file VKRenderer.cpp.

◆ uploadBufferObjectInternal() [1/2]

void uploadBufferObjectInternal ( int  contextIdx,
buffer_object_type buffer,
int32_t  size,
const uint8_t *  data,
VkBufferUsageFlagBits  usage 
)
inlineprivate

Definition at line 5802 of file VKRenderer.cpp.

◆ uploadBufferObjectInternal() [2/2]

void uploadBufferObjectInternal ( int  contextIdx,
int32_t  bufferObjectId,
int32_t  size,
const uint8_t *  data,
VkBufferUsageFlagBits  usage 
)
inlineprivate

Definition at line 5760 of file VKRenderer.cpp.

◆ uploadCubeMapSingleTexture()

void uploadCubeMapSingleTexture ( int  contextIdx,
texture_type cubemapTextureType,
Texture texture,
uint32_t  baseArrayLayer 
)
private

Definition at line 4692 of file VKRenderer.cpp.

◆ uploadCubeMapTexture()

void uploadCubeMapTexture ( int  contextIdx,
Texture textureLeft,
Texture textureRight,
Texture textureTop,
Texture textureBottom,
Texture textureFront,
Texture textureBack 
)
overridevirtual

Uploads cube map texture data to current bound texture.

Parameters
contextIdxcontext index
textureLefttexture left
textureRighttexture right
textureToptexture top
textureBottomtexture bottom
textureFronttexture front
textureBacktexture back

Implements Renderer.

Definition at line 4035 of file VKRenderer.cpp.

◆ uploadIndicesBufferObject() [1/2]

void uploadIndicesBufferObject ( int  contextIdx,
int32_t  bufferObjectId,
int32_t  size,
IntBuffer data 
)
overridevirtual

Uploads buffer data to buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id
sizesize
datadata

Implements Renderer.

Definition at line 5956 of file VKRenderer.cpp.

◆ uploadIndicesBufferObject() [2/2]

void uploadIndicesBufferObject ( int  contextIdx,
int32_t  bufferObjectId,
int32_t  size,
ShortBuffer data 
)
overridevirtual

Uploads buffer data to buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id
sizesize
datadata

Implements Renderer.

Definition at line 5951 of file VKRenderer.cpp.

◆ uploadSkinningBufferObject() [1/2]

void uploadSkinningBufferObject ( int  contextIdx,
int32_t  bufferObjectId,
int32_t  size,
FloatBuffer data 
)
overridevirtual

Upload skinning buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id
sizesize
datadata

Implements Renderer.

Definition at line 7198 of file VKRenderer.cpp.

◆ uploadSkinningBufferObject() [2/2]

void uploadSkinningBufferObject ( int  contextIdx,
int32_t  bufferObjectId,
int32_t  size,
IntBuffer data 
)
overridevirtual

Upload skinning buffer object.

Parameters
contextIdxcontext index
bufferObjectIdbuffer object id
sizesize
datadata

Implements Renderer.

Definition at line 7202 of file VKRenderer.cpp.

◆ uploadTexture()

void uploadTexture ( int  contextIdx,
Texture texture 
)
overridevirtual

Uploads texture data to current bound texture.

Parameters
contextIdxcontext index
texturetexture

Implements Renderer.

Definition at line 4419 of file VKRenderer.cpp.

◆ useProgram()

void useProgram ( int  contextIdx,
int32_t  programId 
)
overridevirtual

Use shader program.

Parameters
contextIdxcontext index
programIdprogramId

Implements Renderer.

Definition at line 3055 of file VKRenderer.cpp.

◆ vmaMemCpy()

void vmaMemCpy ( VmaAllocation  allocationDst,
const uint8_t *  src,
uint32_t  size,
uint32_t  offset = 0 
)
inlineprivate

Definition at line 5776 of file VKRenderer.cpp.

Friends And Related Function Documentation

◆ VKGL3CoreShaderProgram

friend class VKGL3CoreShaderProgram
friend

Definition at line 86 of file VKRenderer.h.

Member Data Documentation

◆ blendingMode

BlendingMode blendingMode { BLENDING_NONE }
private

Definition at line 459 of file VKRenderer.h.

◆ boundFrameBufferId

int32_t boundFrameBufferId { 0 }
private

Definition at line 456 of file VKRenderer.h.

◆ bufferIdx

int32_t bufferIdx { 1 }
private

Definition at line 414 of file VKRenderer.h.

◆ buffers

array<buffer_object_type*, BUFFERS_MAX + 1> buffers
private

Definition at line 418 of file VKRenderer.h.

◆ BUFFERS_MAX

constexpr int BUFFERS_MAX { 65535 }
staticconstexprprivate

Definition at line 103 of file VKRenderer.h.

◆ buffersMutex

Mutex buffersMutex
private

Definition at line 424 of file VKRenderer.h.

◆ clearAlpha

float clearAlpha { 1.0f }
private

Definition at line 451 of file VKRenderer.h.

◆ clearBlue

float clearBlue { 0.0f }
private

Definition at line 450 of file VKRenderer.h.

◆ clearGreen

float clearGreen { 0.0f }
private

Definition at line 449 of file VKRenderer.h.

◆ clearRed

float clearRed { 0.0f }
private

Definition at line 448 of file VKRenderer.h.

◆ COMMANDS_MAX

constexpr int COMMANDS_MAX { 16 }
staticconstexprprivate

Definition at line 94 of file VKRenderer.h.

◆ COMMANDS_MAX_COMPUTE

constexpr int COMMANDS_MAX_COMPUTE { 5 }
staticconstexprprivate

Definition at line 96 of file VKRenderer.h.

◆ COMMANDS_MAX_GRAPHICS

constexpr int COMMANDS_MAX_GRAPHICS { 16 }
staticconstexprprivate

Definition at line 95 of file VKRenderer.h.

◆ COMPUTE_STORAGE_BUFFER_COUNT

constexpr int COMPUTE_STORAGE_BUFFER_COUNT { 8 }
staticconstexprprivate

Definition at line 102 of file VKRenderer.h.

◆ contexts

vector<context_type> contexts
private

Definition at line 479 of file VKRenderer.h.

◆ contextsDrawFences

vector<VkFence> contextsDrawFences
private

Definition at line 480 of file VKRenderer.h.

◆ CUBEMAPTEXTUREINDEX_MIN

constexpr int CUBEMAPTEXTUREINDEX_MIN { 1 }
staticconstexprprivate

Definition at line 107 of file VKRenderer.h.

◆ cullMode

VkCullModeFlagBits cullMode { VK_CULL_MODE_FRONT_BIT}
private

Definition at line 460 of file VKRenderer.h.

◆ currentWindowFramebufferIdx

uint32_t currentWindowFramebufferIdx { 0 }
private

Definition at line 404 of file VKRenderer.h.

◆ deleteBuffers

vector<delete_buffer_type> deleteBuffers
private

Definition at line 468 of file VKRenderer.h.

◆ deleteImages

vector<delete_image_type> deleteImages
private

Definition at line 469 of file VKRenderer.h.

◆ deleteMutex

Mutex deleteMutex
private

Definition at line 467 of file VKRenderer.h.

◆ depthBufferDefault

int depthBufferDefault { 0 }
private

Definition at line 434 of file VKRenderer.h.

◆ depthBufferTesting

bool depthBufferTesting { true }
private

Definition at line 462 of file VKRenderer.h.

◆ depthBufferWriting

bool depthBufferWriting { true }
private

Definition at line 461 of file VKRenderer.h.

◆ depthFunction

int depthFunction { VK_COMPARE_OP_LESS_OR_EQUAL }
private

Definition at line 463 of file VKRenderer.h.

◆ DESC_MAX_CACHED

constexpr int DESC_MAX_CACHED { 512 }
staticconstexprprivate

Definition at line 98 of file VKRenderer.h.

◆ DESC_MAX_UNCACHED

constexpr int DESC_MAX_UNCACHED { COMMANDS_MAX }
staticconstexprprivate

Definition at line 97 of file VKRenderer.h.

◆ descriptorPool1

VkDescriptorPool descriptorPool1 { VK_NULL_HANDLE }
private

Definition at line 440 of file VKRenderer.h.

◆ descriptorPool2

VkDescriptorPool descriptorPool2 { VK_NULL_HANDLE }
private

Definition at line 441 of file VKRenderer.h.

◆ device

VkDevice device { VK_NULL_HANDLE }
private

Definition at line 381 of file VKRenderer.h.

◆ deviceName

string deviceName
private

Definition at line 482 of file VKRenderer.h.

◆ disposeBuffers

vector<int32_t> disposeBuffers
private

Definition at line 473 of file VKRenderer.h.

◆ disposeMutex

Mutex disposeMutex
private

Definition at line 471 of file VKRenderer.h.

◆ disposePipelines

vector<VkPipeline> disposePipelines
private

Definition at line 474 of file VKRenderer.h.

◆ disposeTextures

vector<int32_t> disposeTextures
private

Definition at line 472 of file VKRenderer.h.

◆ DRAW_COMMANDBUFFER_MAX

constexpr int DRAW_COMMANDBUFFER_MAX { 3 }
staticconstexprprivate

Definition at line 89 of file VKRenderer.h.

◆ drawCompleteSemaphore

VkSemaphore drawCompleteSemaphore { VK_NULL_HANDLE }
private

Definition at line 446 of file VKRenderer.h.

◆ emptyVertexBuffer

buffer_object_type* emptyVertexBuffer { nullptr }
private

Definition at line 432 of file VKRenderer.h.

◆ emptyVertexBufferId

int emptyVertexBufferId { 0 }
private

Definition at line 433 of file VKRenderer.h.

◆ fpAcquireNextImageKHR

PFN_vkAcquireNextImageKHR fpAcquireNextImageKHR { nullptr }
private

Definition at line 397 of file VKRenderer.h.

◆ fpCreateSwapchainKHR

PFN_vkCreateSwapchainKHR fpCreateSwapchainKHR { nullptr }
private

Definition at line 394 of file VKRenderer.h.

◆ fpDestroySwapchainKHR

PFN_vkDestroySwapchainKHR fpDestroySwapchainKHR { nullptr }
private

Definition at line 395 of file VKRenderer.h.

◆ fpGetPhysicalDeviceSurfaceCapabilitiesKHR

PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR fpGetPhysicalDeviceSurfaceCapabilitiesKHR { nullptr }
private

Definition at line 391 of file VKRenderer.h.

◆ fpGetPhysicalDeviceSurfaceFormatsKHR

PFN_vkGetPhysicalDeviceSurfaceFormatsKHR fpGetPhysicalDeviceSurfaceFormatsKHR { nullptr }
private

Definition at line 392 of file VKRenderer.h.

◆ fpGetPhysicalDeviceSurfacePresentModesKHR

PFN_vkGetPhysicalDeviceSurfacePresentModesKHR fpGetPhysicalDeviceSurfacePresentModesKHR { nullptr }
private

Definition at line 393 of file VKRenderer.h.

◆ fpGetPhysicalDeviceSurfaceSupportKHR

PFN_vkGetPhysicalDeviceSurfaceSupportKHR fpGetPhysicalDeviceSurfaceSupportKHR { nullptr }
private

Definition at line 390 of file VKRenderer.h.

◆ fpGetSwapchainImagesKHR

PFN_vkGetSwapchainImagesKHR fpGetSwapchainImagesKHR { nullptr }
private

Definition at line 396 of file VKRenderer.h.

◆ fpQueuePresentKHR

PFN_vkQueuePresentKHR fpQueuePresentKHR { nullptr }
private

Definition at line 398 of file VKRenderer.h.

◆ frame

int64_t frame { 0 }
private

Definition at line 465 of file VKRenderer.h.

◆ framebufferPipelinesCache

framebuffer_pipelines_type* framebufferPipelinesCache { nullptr }
private

Definition at line 408 of file VKRenderer.h.

◆ framebufferPipelinesId

uint64_t framebufferPipelinesId { 0 }
private

Definition at line 407 of file VKRenderer.h.

◆ framebuffers

vector<framebuffer_object_type*> framebuffers { nullptr }
private

Definition at line 422 of file VKRenderer.h.

◆ framebuffersPipelines

vector<framebuffer_pipelines_type*> framebuffersPipelines
private

Definition at line 409 of file VKRenderer.h.

◆ freeBufferIds

vector<int32_t> freeBufferIds
private

Definition at line 421 of file VKRenderer.h.

◆ freeTextureIds

vector<int32_t> freeTextureIds
private

Definition at line 420 of file VKRenderer.h.

◆ gpuFeatures

VkPhysicalDeviceFeatures gpuFeatures
private

Definition at line 385 of file VKRenderer.h.

◆ gpuProperties

VkPhysicalDeviceProperties gpuProperties
private

Definition at line 384 of file VKRenderer.h.

◆ graphicsQueueNodeIndex

uint32_t graphicsQueueNodeIndex { 0 }
private

Definition at line 388 of file VKRenderer.h.

◆ imageAcquiredSemaphore

VkSemaphore imageAcquiredSemaphore { VK_NULL_HANDLE }
private

Definition at line 445 of file VKRenderer.h.

◆ instance

VkInstance instance { VK_NULL_HANDLE }
private

Definition at line 379 of file VKRenderer.h.

◆ lastSwapchainPresentMode

VkPresentModeKHR lastSwapchainPresentMode { VK_PRESENT_MODE_IMMEDIATE_KHR }
private

Definition at line 485 of file VKRenderer.h.

◆ lastWindowFramebufferIdx

uint32_t lastWindowFramebufferIdx { 0 }
private

Definition at line 403 of file VKRenderer.h.

◆ LINES_VERTEX_BUFFER_COUNT

constexpr int LINES_VERTEX_BUFFER_COUNT { 4 }
staticconstexprprivate

Definition at line 101 of file VKRenderer.h.

◆ lineWidth

float lineWidth { 1.0f }
private

Definition at line 464 of file VKRenderer.h.

◆ memoryProperties

VkPhysicalDeviceMemoryProperties memoryProperties
private

Definition at line 387 of file VKRenderer.h.

◆ OBJECTS_VERTEX_BUFFER_COUNT

constexpr int OBJECTS_VERTEX_BUFFER_COUNT { 10 }
staticconstexprprivate

Definition at line 99 of file VKRenderer.h.

◆ physicalDevice

VkPhysicalDevice physicalDevice { VK_NULL_HANDLE }
private

Definition at line 380 of file VKRenderer.h.

◆ pipelinesSpinLock

SpinLock pipelinesSpinLock
private

Definition at line 406 of file VKRenderer.h.

◆ POINTS_VERTEX_BUFFER_COUNT

constexpr int POINTS_VERTEX_BUFFER_COUNT { 9 }
staticconstexprprivate

Definition at line 100 of file VKRenderer.h.

◆ PROGRAMS_MAX

constexpr int PROGRAMS_MAX { 128 }
staticconstexprprivate

Definition at line 105 of file VKRenderer.h.

◆ programVector

vector<program_type*> programVector { nullptr }
private

Definition at line 416 of file VKRenderer.h.

◆ queue

VkQueue queue { VK_NULL_HANDLE }
private

Definition at line 383 of file VKRenderer.h.

◆ queueCount

uint32_t queueCount { 0 }
private

Definition at line 443 of file VKRenderer.h.

◆ queueProperties

VkQueueFamilyProperties* queueProperties { nullptr }
private

Definition at line 386 of file VKRenderer.h.

◆ queueSpinlock

SpinLock queueSpinlock
private

Definition at line 382 of file VKRenderer.h.

◆ renderPass

VkRenderPass renderPass { VK_NULL_HANDLE }
private

Definition at line 411 of file VKRenderer.h.

◆ scissor

VkRect2D scissor
private

Definition at line 454 of file VKRenderer.h.

◆ shaderIdx

int32_t shaderIdx { 1 }
private

Definition at line 413 of file VKRenderer.h.

◆ shaders

unordered_map<int32_t, shader_type*> shaders
private

Definition at line 417 of file VKRenderer.h.

◆ SHADERS_COMPUTE_MAX

constexpr int SHADERS_COMPUTE_MAX { 1 }
staticconstexprprivate

Definition at line 93 of file VKRenderer.h.

◆ SHADERS_MAX

constexpr int SHADERS_MAX { 100 }
staticconstexprprivate

Definition at line 92 of file VKRenderer.h.

◆ SHADERSSTAGES_MAX

constexpr int SHADERSSTAGES_MAX { 2 }
staticconstexprprivate

Definition at line 90 of file VKRenderer.h.

◆ surface

VkSurfaceKHR surface { VK_NULL_HANDLE }
private

Definition at line 377 of file VKRenderer.h.

◆ swapchainPresentMode

VkPresentModeKHR swapchainPresentMode { VK_PRESENT_MODE_IMMEDIATE_KHR }
private

Definition at line 484 of file VKRenderer.h.

◆ textureIdx

int32_t textureIdx { 1 }
private

Definition at line 415 of file VKRenderer.h.

◆ textures

array<texture_type*, TEXTURES_MAX + 1> textures
private

Definition at line 419 of file VKRenderer.h.

◆ TEXTURES_MAX

constexpr int TEXTURES_MAX { 65535 }
staticconstexprprivate

Definition at line 104 of file VKRenderer.h.

◆ texturesMutex

Mutex texturesMutex
private

Definition at line 425 of file VKRenderer.h.

◆ TEXTUREUNITS_MAX

constexpr int TEXTUREUNITS_MAX { 16 }
staticconstexprprivate

Definition at line 91 of file VKRenderer.h.

◆ VERBOSE

constexpr bool VERBOSE { false }
staticconstexprprivate

Definition at line 88 of file VKRenderer.h.

◆ viewport

VkViewport viewport
private

Definition at line 453 of file VKRenderer.h.

◆ vmaAllocator

VmaAllocator vmaAllocator { VK_NULL_HANDLE }
private

Definition at line 476 of file VKRenderer.h.

◆ vmaSpinlock

SpinLock vmaSpinlock
private

Definition at line 477 of file VKRenderer.h.

◆ vSync

bool vSync { false }
private

Definition at line 486 of file VKRenderer.h.

◆ whiteTextureSampler2dDefault

texture_type* whiteTextureSampler2dDefault { nullptr }
private

Definition at line 436 of file VKRenderer.h.

◆ whiteTextureSampler2dDefaultId

int whiteTextureSampler2dDefaultId { 0 }
private

Definition at line 435 of file VKRenderer.h.

◆ whiteTextureSamplerCubeDefault

texture_type* whiteTextureSamplerCubeDefault { nullptr }
private

Definition at line 438 of file VKRenderer.h.

◆ whiteTextureSamplerCubeDefaultId

int whiteTextureSamplerCubeDefaultId { 0 }
private

Definition at line 437 of file VKRenderer.h.

◆ windowColorSpace

VkColorSpaceKHR windowColorSpace { VK_COLOR_SPACE_SRGB_NONLINEAR_KHR }
private

Definition at line 430 of file VKRenderer.h.

◆ windowFormat

VkFormat windowFormat { VK_FORMAT_UNDEFINED }
private

Definition at line 429 of file VKRenderer.h.

◆ windowFramebufferBuffers

vector<window_frambuffer_buffer_type> windowFramebufferBuffers
private

Definition at line 402 of file VKRenderer.h.

◆ windowHeight

uint32_t windowHeight { 0 }
private

Definition at line 428 of file VKRenderer.h.

◆ windowSwapchain

VkSwapchainKHR windowSwapchain { VK_NULL_HANDLE }
private

Definition at line 401 of file VKRenderer.h.

◆ windowSwapchainImageCount

uint32_t windowSwapchainImageCount { 0 }
private

Definition at line 400 of file VKRenderer.h.

◆ windowWidth

uint32_t windowWidth { 0 }
private

Definition at line 427 of file VKRenderer.h.


The documentation for this class was generated from the following files: