HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GR_ImageVK.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: GR_ImageVK ( GR Library, C++)
7  *
8  * COMMENTS:
9  * Simple renderer class for a 2D image
10  */
11 #ifndef GR_ImageVK_h
12 #define GR_ImageVK_h
13 
14 #include "GR_GeoRenderVK.h"
15 
17 #include <RV/RV_Render.h>
18 #include <RV/RV_VKImage.h>
19 #include <GA/GA_Names.h>
20 
21 #include <UT/UT_UniquePtr.h>
22 
23 class RV_Geometry;
24 class GEO_PrimVolume;
25 class GT_PrimVolume;
26 
28 {
29 public:
30  GR_ImageVK(GR_Primitive *prim);
31  ~GR_ImageVK() override;
32 
33  const char *className() const override { return "GR_ImageVK"; }
34 
35  RV_Geometry *getVkPickGeometry(unsigned int pick_mode) override;
36 
37  void update(RE_RenderContext rc,
38  const GT_PrimitiveHandle &primh,
39  const GR_UpdateParms &parms,
40  const char *cache_name) override;
41 
42  void draw(RE_RenderContext rc,
45  GR_DrawParms dp) override;
46 
47  exint getNumGLPrimitives() const override { return 1; }
48  bool hasTransparency() const override { return myHasAlpha; }
49 
50  static bool initShaders(RV_Instance* inst);
51  static void cleanupShaders();
52 private:
53  void fillImageFromImage(RV_Render *r,
54  const GEO_PrimVolume *vol);
55  void fillImageFromVolume(RV_Render *r,
56  const GT_PrimVolume *vol,
57  const GR_UpdateParms &p);
58 
59  UT_UniquePtr<RV_VKImage> myColorImage;
60  //UT_UniquePtr<RV_VKImage *> myDepthImage; // TODO: for COPs
62  bool myHasAlpha = false;
63 };
64 
65 #endif
GLbitfield flags
Definition: glcorearb.h:1596
virtual void draw(RE_RenderContext r, GR_RenderMode mode, GR_RenderFlags flags, GR_DrawParms draw_parms)=0
Normal drawing method. Only issue rendering commands.
int64 exint
Definition: SYS_Types.h:125
GT_API const UT_StringHolder cache_name
Object that represents drawable geometry. This object holds vertex, instancing and index buffers for ...
Definition: RV_Geometry.h:164
Temporary container for either a RV_Render and an RE_Render.
virtual RV_Geometry * getVkPickGeometry(unsigned int pick_mode)
Definition: GR_GeoRender.h:128
std::unique_ptr< T, Deleter > UT_UniquePtr
A smart pointer for unique ownership of dynamically allocated objects.
Definition: UT_UniquePtr.h:39
set of parameters sent to GR_Primitive::update()
bool hasTransparency() const override
returns true if this drawable renders some transparent elements
Definition: GR_ImageVK.h:48
GR_RenderMode
Definition: GR_Defines.h:47
#define GR_API
Definition: GR_API.h:10
GR_RenderFlags
Definition: GR_Defines.h:85
Handle to the main interface of Vulkan.
Definition: RV_Instance.h:36
GLenum mode
Definition: glcorearb.h:99
const char * className() const override
Definition: GR_ImageVK.h:33
virtual void update(RE_RenderContext r, const GT_PrimitiveHandle &primh, const GR_UpdateParms &p, const char *cache_name)=0
exint getNumGLPrimitives() const override
Definition: GR_ImageVK.h:47
GLboolean r
Definition: glcorearb.h:1222