mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
- Wrap unused parameters as comments to prevent C1400 - Fix sized variable conversions with explicit casts
10 lines
365 B
C++
10 lines
365 B
C++
#pragma once
|
|
|
|
#include "../Common/ShaderParam.h"
|
|
#include "GLHelpers.h"
|
|
#include <ostream>
|
|
|
|
std::string getFloatTypeNameImpl(size_t elementCount);
|
|
std::string getFunctionImpl(FUNCTION f);
|
|
std::string compareFunctionImpl(COMPARE f, const std::string &Op0, const std::string &Op1);
|
|
void insert_glsl_legacy_function(std::ostream& OS, gl::glsl::program_domain domain);
|