This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#pragma once
#include "rbx/Boost.hpp"
namespace RBX{namespace Graphics{
typedef char dumyy4350583408;
class VisualEngine;
class IndexBuffer;
class VertexLayout;
class Technique;
class ShaderProgram;
struct EmitterShared
{
VisualEngine* visualEngine;
shared_ptr< VertexBuffer > vbuf;
shared_ptr< IndexBuffer > ibuf;
shared_ptr< VertexLayout > vlayout;
shared_ptr<ShaderProgram> shaders[5];
G3D::Random rnd;
bool colorBGR;
void* vblock;
void* vbptr;
void* vbend;
void init( VisualEngine* ve );
void* lock( int* retIndex, int cnt);
void flush();
};
}}