Non-functional misc. changes. Slight increase in performance from moving two performance path methods into a header.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@27835 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
parent
5041bcb35d
commit
a7a68a9b32
8 changed files with 116 additions and 78 deletions
|
|
@ -33,3 +33,11 @@
|
|||
//POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#include "BilDisassemble.h"
|
||||
|
||||
namespace glbil {
|
||||
|
||||
void Disassemble(std::ostream& out, const std::vector<unsigned int>&)
|
||||
{
|
||||
}
|
||||
|
||||
}; // end glbil namespace
|
||||
|
|
|
|||
|
|
@ -32,5 +32,19 @@
|
|||
//ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
//POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#pragma once
|
||||
#ifndef BilDisassembler_H
|
||||
#define BilDisassembler_H
|
||||
|
||||
#include "Bil.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
namespace glbil {
|
||||
|
||||
void Disassemble(std::ostream& out, const std::vector<unsigned int>&);
|
||||
|
||||
}; // end glbil namespace
|
||||
|
||||
#endif // BilDisassembler_H
|
||||
|
|
|
|||
|
|
@ -43,7 +43,11 @@
|
|||
|
||||
namespace glslang {
|
||||
|
||||
void GlslangToBil(const glslang::TIntermediate& intermediate)
|
||||
void GlslangToBil(const glslang::TIntermediate& intermediate, std::vector<unsigned int> bil)
|
||||
{
|
||||
}
|
||||
|
||||
void OutputBil(const std::vector<unsigned int>& bil, const char* baseName)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -36,6 +36,8 @@
|
|||
|
||||
namespace glslang {
|
||||
|
||||
void GlslangToBil(const glslang::TIntermediate& intermediate);
|
||||
void GlslangToBil(const glslang::TIntermediate& intermediate, std::vector<unsigned int> bil);
|
||||
|
||||
void OutputBil(const std::vector<unsigned int>& bil, const char* baseName);
|
||||
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue