2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2013-04-24 21:29:19 +00:00
|
|
|
#include <locale.h>
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
#if defined(_WIN32) && defined(_DEBUG)
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-07-27 22:18:41 +00:00
|
|
|
#include "base/stringutil.h"
|
|
|
|
#include "GPU/ge_constants.h"
|
|
|
|
#include "GPU/GPUState.h"
|
|
|
|
#include "Core/Config.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-07-27 22:18:41 +00:00
|
|
|
#include "GPU/GLES/VertexShaderGenerator.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// SDL 1.2 on Apple does not have support for OpenGL 3 and hence needs
|
|
|
|
// special treatment in the shader generator.
|
|
|
|
#ifdef __APPLE__
|
|
|
|
#define FORCE_OPENGL_2_0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef WRITE
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
#define WRITE p+=sprintf
|
|
|
|
|
2013-04-15 20:57:54 +00:00
|
|
|
bool CanUseHardwareTransform(int prim) {
|
2012-12-21 10:08:54 +00:00
|
|
|
if (!g_Config.bHardwareTransform)
|
|
|
|
return false;
|
|
|
|
return !gstate.isModeThrough() && prim != GE_PRIM_RECTANGLES;
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-07-27 18:09:22 +00:00
|
|
|
int TranslateNumBones(int bones) {
|
|
|
|
if (!bones) return 0;
|
|
|
|
if (bones < 4) return 4;
|
|
|
|
// if (bones < 8) return 8; I get drawing problems in FF:CC with this!
|
|
|
|
return bones;
|
|
|
|
}
|
|
|
|
|
2012-12-05 03:45:28 +00:00
|
|
|
// prim so we can special case for RECTANGLES :(
|
2013-06-06 08:05:31 +00:00
|
|
|
void ComputeVertexShaderID(VertexShaderID *id, int prim, bool useHWTransform) {
|
2013-04-20 18:20:03 +00:00
|
|
|
const u32 vertType = gstate.vertType;
|
2013-04-09 12:42:40 +00:00
|
|
|
int doTexture = gstate.isTextureMapEnabled() && !gstate.isModeClear();
|
2013-04-17 19:41:47 +00:00
|
|
|
bool doTextureProjection = gstate.getUVGenMode() == 1;
|
2012-12-05 04:13:36 +00:00
|
|
|
|
2013-04-20 18:20:03 +00:00
|
|
|
bool hasColor = (vertType & GE_VTYPE_COL_MASK) != 0;
|
|
|
|
bool hasNormal = (vertType & GE_VTYPE_NRM_MASK) != 0;
|
|
|
|
bool hasBones = (vertType & GE_VTYPE_WEIGHT_MASK) != 0;
|
2013-01-20 23:34:37 +00:00
|
|
|
bool enableFog = gstate.isFogEnabled() && !gstate.isModeThrough() && !gstate.isModeClear();
|
2013-07-22 00:55:26 +00:00
|
|
|
bool lmode = gstate.isUsingSecondaryColor() && gstate.isLightingEnabled();
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
memset(id->d, 0, sizeof(id->d));
|
2013-01-22 20:57:47 +00:00
|
|
|
id->d[0] = lmode & 1;
|
2012-11-28 12:45:22 +00:00
|
|
|
id->d[0] |= ((int)gstate.isModeThrough()) << 1;
|
2013-01-21 18:11:32 +00:00
|
|
|
id->d[0] |= ((int)enableFog) << 2;
|
2012-12-05 04:13:36 +00:00
|
|
|
id->d[0] |= doTexture << 3;
|
2012-12-20 13:10:42 +00:00
|
|
|
id->d[0] |= (hasColor & 1) << 4;
|
2013-06-06 08:05:31 +00:00
|
|
|
if (doTexture) {
|
2013-02-14 23:30:02 +00:00
|
|
|
id->d[0] |= (gstate_c.flipTexture & 1) << 5;
|
2013-04-17 19:41:47 +00:00
|
|
|
id->d[0] |= (doTextureProjection & 1) << 6;
|
|
|
|
}
|
2013-02-14 23:30:02 +00:00
|
|
|
|
2013-06-06 08:05:31 +00:00
|
|
|
if (useHWTransform) {
|
2012-12-20 13:10:42 +00:00
|
|
|
id->d[0] |= 1 << 8;
|
|
|
|
id->d[0] |= (hasNormal & 1) << 9;
|
|
|
|
|
|
|
|
// UV generation mode
|
|
|
|
id->d[0] |= gstate.getUVGenMode() << 16;
|
|
|
|
|
|
|
|
// The next bits are used differently depending on UVgen mode
|
|
|
|
if (gstate.getUVGenMode() == 1) {
|
|
|
|
id->d[0] |= gstate.getUVProjMode() << 18;
|
|
|
|
} else if (gstate.getUVGenMode() == 2) {
|
|
|
|
id->d[0] |= gstate.getUVLS0() << 18;
|
|
|
|
id->d[0] |= gstate.getUVLS1() << 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bones
|
2013-07-27 18:09:22 +00:00
|
|
|
if (hasBones)
|
|
|
|
id->d[0] |= (TranslateNumBones(gstate.getNumBoneWeights()) - 1) << 22;
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-01-22 20:57:47 +00:00
|
|
|
// Okay, d[1] coming up. ==============
|
|
|
|
|
2013-04-15 20:57:54 +00:00
|
|
|
if (gstate.isLightingEnabled() || gstate.getUVGenMode() == 2) {
|
2013-01-22 20:57:47 +00:00
|
|
|
// Light bits
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2013-07-22 01:13:55 +00:00
|
|
|
id->d[1] |= gstate.getLightComputation(i) << (i * 4);
|
|
|
|
id->d[1] |= gstate.getLightType(i) << (i * 4 + 2);
|
2013-01-22 20:57:47 +00:00
|
|
|
}
|
|
|
|
id->d[1] |= (gstate.materialupdate & 7) << 16;
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2013-07-22 01:13:55 +00:00
|
|
|
id->d[1] |= (gstate.isLightChanEnabled(i) & 1) << (20 + i);
|
2013-01-22 20:57:47 +00:00
|
|
|
}
|
2012-12-21 20:49:09 +00:00
|
|
|
}
|
2013-07-27 18:09:22 +00:00
|
|
|
id->d[1] |= gstate.isLightingEnabled() << 24;
|
|
|
|
id->d[1] |= ((vertType & GE_VTYPE_WEIGHT_MASK) >> GE_VTYPE_WEIGHT_SHIFT) << 25;
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
|
2013-07-27 18:09:22 +00:00
|
|
|
static const char * const boneWeightAttrDecl[9] = {
|
|
|
|
"#ERROR#",
|
2013-05-18 18:44:25 +00:00
|
|
|
"attribute mediump float a_w1;\n",
|
|
|
|
"attribute mediump vec2 a_w1;\n",
|
|
|
|
"attribute mediump vec3 a_w1;\n",
|
|
|
|
"attribute mediump vec4 a_w1;\n",
|
|
|
|
"attribute mediump vec4 a_w1;\nattribute mediump float a_w2;\n",
|
|
|
|
"attribute mediump vec4 a_w1;\nattribute mediump vec2 a_w2;\n",
|
|
|
|
"attribute mediump vec4 a_w1;\nattribute mediump vec3 a_w2;\n",
|
2013-07-27 18:09:22 +00:00
|
|
|
"attribute mediump vec4 a_w1, a_w2;\n",
|
2012-12-20 13:10:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum DoLightComputation {
|
|
|
|
LIGHT_OFF,
|
2013-04-02 10:23:39 +00:00
|
|
|
LIGHT_SHADE,
|
2012-12-20 13:10:42 +00:00
|
|
|
LIGHT_FULL,
|
|
|
|
};
|
|
|
|
|
2013-06-06 08:05:31 +00:00
|
|
|
void GenerateVertexShader(int prim, char *buffer, bool useHWTransform) {
|
2012-11-01 15:19:01 +00:00
|
|
|
char *p = buffer;
|
2013-05-18 18:44:25 +00:00
|
|
|
|
2013-05-23 10:48:44 +00:00
|
|
|
// #define USE_FOR_LOOP
|
2013-05-18 18:44:25 +00:00
|
|
|
|
2012-11-26 03:25:14 +00:00
|
|
|
#if defined(USING_GLES2)
|
2013-05-26 12:03:02 +00:00
|
|
|
WRITE(p, "#version 100\n"); // GLSL ES 1.0
|
2012-12-20 13:10:42 +00:00
|
|
|
WRITE(p, "precision highp float;\n");
|
2013-05-18 18:44:25 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
#elif !defined(FORCE_OPENGL_2_0)
|
2013-01-07 09:07:00 +00:00
|
|
|
WRITE(p, "#version 110\n");
|
2013-03-03 22:57:29 +00:00
|
|
|
// Remove lowp/mediump in non-mobile implementations
|
|
|
|
WRITE(p, "#define lowp\n");
|
|
|
|
WRITE(p, "#define mediump\n");
|
|
|
|
#else
|
|
|
|
// Need to remove lowp/mediump for Mac
|
|
|
|
WRITE(p, "#define lowp\n");
|
|
|
|
WRITE(p, "#define mediump\n");
|
2012-11-01 15:19:01 +00:00
|
|
|
#endif
|
2013-04-20 18:20:03 +00:00
|
|
|
const u32 vertType = gstate.vertType;
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-07-22 00:55:26 +00:00
|
|
|
int lmode = gstate.isUsingSecondaryColor() && gstate.isLightingEnabled();
|
2013-04-09 12:42:40 +00:00
|
|
|
int doTexture = gstate.isTextureMapEnabled() && !gstate.isModeClear();
|
2012-12-05 03:45:28 +00:00
|
|
|
|
2013-06-06 08:05:31 +00:00
|
|
|
bool hasColor = (vertType & GE_VTYPE_COL_MASK) != 0 || !useHWTransform;
|
|
|
|
bool hasNormal = (vertType & GE_VTYPE_NRM_MASK) != 0 && useHWTransform;
|
2013-01-14 19:43:18 +00:00
|
|
|
bool enableFog = gstate.isFogEnabled() && !gstate.isModeThrough() && !gstate.isModeClear();
|
2013-04-20 18:20:03 +00:00
|
|
|
bool throughmode = (vertType & GE_VTYPE_THROUGH_MASK) != 0;
|
2013-02-14 23:30:02 +00:00
|
|
|
bool flipV = gstate_c.flipTexture;
|
2013-04-17 19:41:47 +00:00
|
|
|
bool doTextureProjection = gstate.getUVGenMode() == 1;
|
2012-12-20 13:10:42 +00:00
|
|
|
|
|
|
|
DoLightComputation doLight[4] = {LIGHT_OFF, LIGHT_OFF, LIGHT_OFF, LIGHT_OFF};
|
2013-06-06 08:05:31 +00:00
|
|
|
if (useHWTransform) {
|
2012-12-20 13:10:42 +00:00
|
|
|
int shadeLight0 = gstate.getUVGenMode() == 2 ? gstate.getUVLS0() : -1;
|
|
|
|
int shadeLight1 = gstate.getUVGenMode() == 2 ? gstate.getUVLS1() : -1;
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
if (i == shadeLight0 || i == shadeLight1)
|
2013-04-02 10:23:39 +00:00
|
|
|
doLight[i] = LIGHT_SHADE;
|
2013-07-22 01:13:55 +00:00
|
|
|
if (gstate.isLightingEnabled() && gstate.isLightChanEnabled(i))
|
2012-12-20 13:10:42 +00:00
|
|
|
doLight[i] = LIGHT_FULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-20 18:20:03 +00:00
|
|
|
if ((vertType & GE_VTYPE_WEIGHT_MASK) != GE_VTYPE_WEIGHT_NONE) {
|
2013-07-27 18:09:22 +00:00
|
|
|
WRITE(p, "%s", boneWeightAttrDecl[TranslateNumBones(gstate.getNumBoneWeights())]);
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
|
2013-06-06 08:05:31 +00:00
|
|
|
if (useHWTransform)
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, "attribute vec3 a_position;\n");
|
|
|
|
else
|
|
|
|
WRITE(p, "attribute vec4 a_position;\n"); // need to pass the fog coord in w
|
|
|
|
|
2013-06-24 17:11:04 +00:00
|
|
|
if (useHWTransform && hasNormal)
|
|
|
|
WRITE(p, "attribute mediump vec3 a_normal;\n");
|
|
|
|
|
2013-04-17 19:41:47 +00:00
|
|
|
if (doTexture) {
|
2013-06-06 08:05:31 +00:00
|
|
|
if (!useHWTransform && doTextureProjection)
|
2013-04-17 19:41:47 +00:00
|
|
|
WRITE(p, "attribute vec3 a_texcoord;\n");
|
|
|
|
else
|
|
|
|
WRITE(p, "attribute vec2 a_texcoord;\n");
|
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
if (hasColor) {
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "attribute lowp vec4 a_color0;\n");
|
2013-06-06 08:05:31 +00:00
|
|
|
if (lmode && !useHWTransform) // only software transform supplies color1 as vertex data
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "attribute lowp vec3 a_color1;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
|
2012-11-28 12:45:22 +00:00
|
|
|
if (gstate.isModeThrough()) {
|
2012-12-20 13:10:42 +00:00
|
|
|
WRITE(p, "uniform mat4 u_proj_through;\n");
|
2012-11-28 12:45:22 +00:00
|
|
|
} else {
|
2012-12-20 13:10:42 +00:00
|
|
|
WRITE(p, "uniform mat4 u_proj;\n");
|
2012-11-28 12:45:22 +00:00
|
|
|
// Add all the uniforms we'll need to transform properly.
|
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-06-06 08:05:31 +00:00
|
|
|
if (useHWTransform) {
|
2012-12-20 13:10:42 +00:00
|
|
|
// When transforming by hardware, we need a great deal more uniforms...
|
2012-12-21 10:08:54 +00:00
|
|
|
WRITE(p, "uniform mat4 u_world;\n");
|
|
|
|
WRITE(p, "uniform mat4 u_view;\n");
|
2013-06-23 22:28:54 +00:00
|
|
|
if (gstate.getUVGenMode() == 1)
|
2013-05-18 17:50:07 +00:00
|
|
|
WRITE(p, "uniform mediump mat4 u_texmtx;\n");
|
2013-04-20 18:20:03 +00:00
|
|
|
if ((vertType & GE_VTYPE_WEIGHT_MASK) != GE_VTYPE_WEIGHT_NONE) {
|
2013-07-27 18:09:22 +00:00
|
|
|
int numBones = TranslateNumBones(gstate.getNumBoneWeights());
|
2013-05-26 12:03:02 +00:00
|
|
|
#ifdef USE_BONE_ARRAY
|
2013-05-18 18:44:25 +00:00
|
|
|
WRITE(p, "uniform mediump mat4 u_bone[%i];\n", numBones);
|
2013-05-26 12:03:02 +00:00
|
|
|
#else
|
|
|
|
for (int i = 0; i < numBones; i++) {
|
2013-05-28 15:53:43 +00:00
|
|
|
WRITE(p, "uniform mat4 u_bone%i;\n", i);
|
2013-05-26 12:03:02 +00:00
|
|
|
}
|
|
|
|
#endif
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2013-07-09 23:22:15 +00:00
|
|
|
if (doTexture) {
|
2013-06-24 17:11:04 +00:00
|
|
|
WRITE(p, "uniform vec4 u_uvscaleoffset;\n");
|
2013-07-09 23:22:15 +00:00
|
|
|
}
|
2012-12-20 17:31:21 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
if (doLight[i] != LIGHT_OFF) {
|
2013-04-02 10:23:39 +00:00
|
|
|
// This is needed for shade mapping
|
2012-12-20 17:31:21 +00:00
|
|
|
WRITE(p, "uniform vec3 u_lightpos%i;\n", i);
|
|
|
|
}
|
|
|
|
if (doLight[i] == LIGHT_FULL) {
|
|
|
|
// These are needed for the full thing
|
2013-05-18 17:50:07 +00:00
|
|
|
WRITE(p, "uniform mediump vec3 u_lightdir%i;\n", i);
|
2013-07-22 01:13:55 +00:00
|
|
|
GELightType type = gstate.getLightType(i);
|
2013-04-02 10:23:39 +00:00
|
|
|
|
2013-05-19 14:07:48 +00:00
|
|
|
if (type != GE_LIGHTTYPE_DIRECTIONAL)
|
|
|
|
WRITE(p, "uniform mediump vec3 u_lightatt%i;\n", i);
|
|
|
|
|
|
|
|
if (type == GE_LIGHTTYPE_SPOT) {
|
|
|
|
WRITE(p, "uniform mediump float u_lightangle%i;\n", i);
|
|
|
|
WRITE(p, "uniform mediump float u_lightspotCoef%i;\n", i);
|
|
|
|
}
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "uniform lowp vec3 u_lightambient%i;\n", i);
|
|
|
|
WRITE(p, "uniform lowp vec3 u_lightdiffuse%i;\n", i);
|
2013-05-19 14:07:48 +00:00
|
|
|
|
2013-07-22 01:13:55 +00:00
|
|
|
if (gstate.isUsingSpecularLight(i))
|
2013-05-19 14:07:48 +00:00
|
|
|
WRITE(p, "uniform lowp vec3 u_lightspecular%i;\n", i);
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-19 14:07:48 +00:00
|
|
|
if (gstate.isLightingEnabled()) {
|
|
|
|
WRITE(p, "uniform lowp vec4 u_ambient;\n");
|
|
|
|
if ((gstate.materialupdate & 2) == 0)
|
|
|
|
WRITE(p, "uniform lowp vec3 u_matdiffuse;\n");
|
|
|
|
// if ((gstate.materialupdate & 4) == 0)
|
|
|
|
WRITE(p, "uniform lowp vec4 u_matspecular;\n"); // Specular coef is contained in alpha
|
|
|
|
WRITE(p, "uniform lowp vec3 u_matemissive;\n");
|
|
|
|
}
|
2013-06-23 22:28:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (useHWTransform || !hasColor)
|
|
|
|
WRITE(p, "uniform lowp vec4 u_matambientalpha;\n"); // matambient + matalpha
|
|
|
|
|
|
|
|
if (enableFog) {
|
|
|
|
WRITE(p, "uniform vec2 u_fogcoef;\n");
|
2012-11-28 12:45:22 +00:00
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "varying lowp vec4 v_color0;\n");
|
|
|
|
if (lmode) WRITE(p, "varying lowp vec3 v_color1;\n");
|
2013-04-17 19:41:47 +00:00
|
|
|
if (doTexture) {
|
|
|
|
if (doTextureProjection)
|
|
|
|
WRITE(p, "varying vec3 v_texcoord;\n");
|
|
|
|
else
|
|
|
|
WRITE(p, "varying vec2 v_texcoord;\n");
|
|
|
|
}
|
2013-01-14 19:43:18 +00:00
|
|
|
if (enableFog) WRITE(p, "varying float v_fogdepth;\n");
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
WRITE(p, "void main() {\n");
|
|
|
|
|
2013-06-06 08:05:31 +00:00
|
|
|
if (!useHWTransform) {
|
2012-12-20 13:10:42 +00:00
|
|
|
// Simple pass-through of vertex data to fragment shader
|
|
|
|
if (doTexture)
|
|
|
|
WRITE(p, " v_texcoord = a_texcoord;\n");
|
|
|
|
if (hasColor) {
|
|
|
|
WRITE(p, " v_color0 = a_color0;\n");
|
|
|
|
if (lmode)
|
|
|
|
WRITE(p, " v_color1 = a_color1;\n");
|
|
|
|
} else {
|
|
|
|
WRITE(p, " v_color0 = u_matambientalpha;\n");
|
|
|
|
if (lmode)
|
2013-03-27 10:21:02 +00:00
|
|
|
WRITE(p, " v_color1 = vec3(0.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2013-01-14 19:43:18 +00:00
|
|
|
if (enableFog) {
|
|
|
|
WRITE(p, " v_fogdepth = a_position.w;\n");
|
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
if (gstate.isModeThrough()) {
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " gl_Position = u_proj_through * vec4(a_position.xyz, 1.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
} else {
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " gl_Position = u_proj * vec4(a_position.xyz, 1.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Step 1: World Transform / Skinning
|
2013-04-20 18:20:03 +00:00
|
|
|
if ((vertType & GE_VTYPE_WEIGHT_MASK) == GE_VTYPE_WEIGHT_NONE) {
|
2012-12-20 13:10:42 +00:00
|
|
|
// No skinning, just standard T&L.
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " vec3 worldpos = (u_world * vec4(a_position.xyz, 1.0)).xyz;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
if (hasNormal)
|
2013-05-22 13:44:15 +00:00
|
|
|
WRITE(p, " vec3 worldnormal = normalize((u_world * vec4(a_normal, 0.0)).xyz);\n");
|
2013-05-04 20:23:50 +00:00
|
|
|
else
|
|
|
|
WRITE(p, " vec3 worldnormal = vec3(0.0, 0.0, 1.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
} else {
|
2013-07-27 18:09:22 +00:00
|
|
|
int numWeights = TranslateNumBones(gstate.getNumBoneWeights());
|
2013-05-18 18:44:25 +00:00
|
|
|
|
2013-07-27 20:14:34 +00:00
|
|
|
static const char *rescale[4] = {"", " * 1.9921875", " * 1.999969482421875", ""}; // 2*127.5f/128.f, 2*32767.5f/32768.f, 1.0f};
|
|
|
|
const char *factor = rescale[(vertType & GE_VTYPE_WEIGHT_MASK) >> GE_VTYPE_WEIGHT_SHIFT];
|
2013-05-22 13:44:15 +00:00
|
|
|
|
|
|
|
static const char * const boneWeightAttr[8] = {
|
2013-05-22 17:49:58 +00:00
|
|
|
"a_w1.x", "a_w1.y", "a_w1.z", "a_w1.w",
|
|
|
|
"a_w2.x", "a_w2.y", "a_w2.z", "a_w2.w",
|
2013-05-22 13:44:15 +00:00
|
|
|
};
|
2013-05-30 12:55:48 +00:00
|
|
|
|
2013-05-26 12:03:02 +00:00
|
|
|
#if defined(USE_FOR_LOOP) && defined(USE_BONE_ARRAY)
|
2013-05-22 13:44:15 +00:00
|
|
|
|
2013-05-18 18:44:25 +00:00
|
|
|
// To loop through the weights, we unfortunately need to put them in a float array.
|
|
|
|
// GLSL ES sucks - no way to directly initialize an array!
|
|
|
|
switch (numWeights) {
|
2013-05-22 17:49:58 +00:00
|
|
|
case 1: WRITE(p, " float w[1]; w[0] = a_w1;\n"); break;
|
|
|
|
case 2: WRITE(p, " float w[2]; w[0] = a_w1.x; w[1] = a_w1.y;\n"); break;
|
|
|
|
case 3: WRITE(p, " float w[3]; w[0] = a_w1.x; w[1] = a_w1.y; w[2] = a_w1.z;\n"); break;
|
|
|
|
case 4: WRITE(p, " float w[4]; w[0] = a_w1.x; w[1] = a_w1.y; w[2] = a_w1.z; w[3] = a_w1.w;\n"); break;
|
|
|
|
case 5: WRITE(p, " float w[5]; w[0] = a_w1.x; w[1] = a_w1.y; w[2] = a_w1.z; w[3] = a_w1.w; w[4] = a_w2;\n"); break;
|
|
|
|
case 6: WRITE(p, " float w[6]; w[0] = a_w1.x; w[1] = a_w1.y; w[2] = a_w1.z; w[3] = a_w1.w; w[4] = a_w2.x; w[5] = a_w2.y;\n"); break;
|
|
|
|
case 7: WRITE(p, " float w[7]; w[0] = a_w1.x; w[1] = a_w1.y; w[2] = a_w1.z; w[3] = a_w1.w; w[4] = a_w2.x; w[5] = a_w2.y; w[6] = a_w2.z;\n"); break;
|
|
|
|
case 8: WRITE(p, " float w[8]; w[0] = a_w1.x; w[1] = a_w1.y; w[2] = a_w1.z; w[3] = a_w1.w; w[4] = a_w2.x; w[5] = a_w2.y; w[6] = a_w2.z; w[7] = a_w2.w;\n"); break;
|
2013-05-18 18:44:25 +00:00
|
|
|
}
|
|
|
|
|
2013-05-19 22:15:15 +00:00
|
|
|
WRITE(p, " mat4 skinMatrix = w[0] * u_bone[0];\n");
|
|
|
|
if (numWeights > 1) {
|
|
|
|
WRITE(p, " for (int i = 1; i < %i; i++) {\n", numWeights);
|
|
|
|
WRITE(p, " skinMatrix += w[i] * u_bone[i];\n");
|
|
|
|
WRITE(p, " }\n");
|
|
|
|
}
|
2013-05-18 18:44:25 +00:00
|
|
|
|
|
|
|
#else
|
2013-05-26 12:03:02 +00:00
|
|
|
|
|
|
|
#ifdef USE_BONE_ARRAY
|
2013-05-19 22:15:15 +00:00
|
|
|
if (numWeights == 1)
|
2013-05-23 10:48:44 +00:00
|
|
|
WRITE(p, " mat4 skinMatrix = a_w1 * u_bone[0]");
|
2013-05-19 22:15:15 +00:00
|
|
|
else
|
2013-05-23 10:48:44 +00:00
|
|
|
WRITE(p, " mat4 skinMatrix = a_w1.x * u_bone[0]");
|
2013-05-19 22:15:15 +00:00
|
|
|
for (int i = 1; i < numWeights; i++) {
|
2012-12-20 17:31:21 +00:00
|
|
|
const char *weightAttr = boneWeightAttr[i];
|
|
|
|
// workaround for "cant do .x of scalar" issue
|
2013-05-23 10:48:44 +00:00
|
|
|
if (numWeights == 1 && i == 0) weightAttr = "a_w1";
|
|
|
|
if (numWeights == 5 && i == 4) weightAttr = "a_w2";
|
2013-05-22 13:44:15 +00:00
|
|
|
WRITE(p, " + %s * u_bone[%i]", weightAttr, i);
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2013-05-26 12:03:02 +00:00
|
|
|
#else
|
2013-06-06 08:05:31 +00:00
|
|
|
// Uncomment this to screw up bone shaders to check the vertex shader software fallback
|
|
|
|
// WRITE(p, "THIS SHOULD ERROR! #error");
|
2013-05-26 12:03:02 +00:00
|
|
|
if (numWeights == 1)
|
|
|
|
WRITE(p, " mat4 skinMatrix = a_w1 * u_bone0");
|
|
|
|
else
|
|
|
|
WRITE(p, " mat4 skinMatrix = a_w1.x * u_bone0");
|
|
|
|
for (int i = 1; i < numWeights; i++) {
|
|
|
|
const char *weightAttr = boneWeightAttr[i];
|
|
|
|
// workaround for "cant do .x of scalar" issue
|
|
|
|
if (numWeights == 1 && i == 0) weightAttr = "a_w1";
|
|
|
|
if (numWeights == 5 && i == 4) weightAttr = "a_w2";
|
|
|
|
WRITE(p, " + %s * u_bone%i", weightAttr, i);
|
|
|
|
}
|
2013-05-22 17:49:58 +00:00
|
|
|
#endif
|
2013-05-18 18:44:25 +00:00
|
|
|
|
2013-05-26 12:03:02 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
WRITE(p, ";\n");
|
|
|
|
|
2013-05-22 17:49:58 +00:00
|
|
|
// Trying to simplify this results in bugs in LBP...
|
2013-07-27 20:14:34 +00:00
|
|
|
WRITE(p, " vec3 skinnedpos = (skinMatrix * vec4(a_position, 1.0)).xyz %s;\n", factor);
|
2013-05-22 17:49:58 +00:00
|
|
|
WRITE(p, " vec3 worldpos = (u_world * vec4(skinnedpos, 1.0)).xyz;\n");
|
2013-05-19 22:15:15 +00:00
|
|
|
|
2013-05-22 17:49:58 +00:00
|
|
|
if (hasNormal) {
|
2013-07-27 20:14:34 +00:00
|
|
|
WRITE(p, " vec3 skinnednormal = (skinMatrix * vec4(a_normal, 0.0)).xyz %s;\n", factor);
|
2013-05-22 17:49:58 +00:00
|
|
|
WRITE(p, " vec3 worldnormal = normalize((u_world * vec4(skinnednormal, 0.0)).xyz);\n");
|
|
|
|
} else {
|
2013-05-22 13:44:15 +00:00
|
|
|
WRITE(p, " vec3 worldnormal = (u_world * (skinMatrix * vec4(0.0, 0.0, 1.0, 0.0))).xyz;\n");
|
2013-05-22 17:49:58 +00:00
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
|
2013-06-24 17:11:04 +00:00
|
|
|
WRITE(p, " vec4 viewPos = u_view * vec4(worldpos, 1.0);\n");
|
|
|
|
|
|
|
|
// Final view and projection transforms.
|
|
|
|
WRITE(p, " gl_Position = u_proj * viewPos;\n");
|
2013-05-22 13:44:15 +00:00
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
// TODO: Declare variables for dots for shade mapping if needed.
|
|
|
|
|
2013-05-19 12:45:56 +00:00
|
|
|
const char *ambientStr = (gstate.materialupdate & 1) ? (hasColor ? "a_color0" : "u_matambientalpha") : "u_matambientalpha";
|
2013-05-22 13:44:15 +00:00
|
|
|
const char *diffuseStr = (gstate.materialupdate & 2) ? (hasColor ? "a_color0.rgb" : "u_matambientalpha.rgb") : "u_matdiffuse";
|
|
|
|
const char *specularStr = (gstate.materialupdate & 4) ? (hasColor ? "a_color0.rgb" : "u_matambientalpha.rgb") : "u_matspecular.rgb";
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-05-19 12:36:07 +00:00
|
|
|
bool diffuseIsZero = true;
|
|
|
|
bool specularIsZero = true;
|
|
|
|
bool distanceNeeded = false;
|
2013-05-19 12:23:17 +00:00
|
|
|
|
2013-05-19 12:45:56 +00:00
|
|
|
if (gstate.isLightingEnabled()) {
|
|
|
|
WRITE(p, " lowp vec4 lightSum0 = u_ambient * %s + vec4(u_matemissive, 0.0);\n", ambientStr);
|
2013-05-19 11:52:47 +00:00
|
|
|
|
2013-05-19 12:45:56 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
if (doLight[i] != LIGHT_FULL)
|
|
|
|
continue;
|
|
|
|
diffuseIsZero = false;
|
2013-07-22 01:13:55 +00:00
|
|
|
if (gstate.isUsingSpecularLight(i))
|
2013-05-19 12:45:56 +00:00
|
|
|
specularIsZero = false;
|
2013-07-22 01:13:55 +00:00
|
|
|
GELightType type = gstate.getLightType(i);
|
2013-05-19 12:45:56 +00:00
|
|
|
if (type != GE_LIGHTTYPE_DIRECTIONAL)
|
|
|
|
distanceNeeded = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!specularIsZero) {
|
|
|
|
WRITE(p, " lowp vec3 lightSum1 = vec3(0.0);\n");
|
|
|
|
}
|
|
|
|
if (!diffuseIsZero) {
|
|
|
|
WRITE(p, " vec3 toLight;\n");
|
|
|
|
WRITE(p, " lowp vec3 diffuse;\n");
|
|
|
|
}
|
|
|
|
if (distanceNeeded) {
|
|
|
|
WRITE(p, " float distance;\n");
|
|
|
|
WRITE(p, " lowp float lightScale;\n");
|
|
|
|
}
|
2013-05-19 12:36:07 +00:00
|
|
|
}
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
// Calculate lights if needed. If shade mapping is enabled, lights may need to be
|
2012-12-26 19:47:09 +00:00
|
|
|
// at least partially calculated.
|
2012-12-20 13:10:42 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
2013-04-02 10:23:39 +00:00
|
|
|
if (doLight[i] != LIGHT_FULL)
|
2012-12-20 13:10:42 +00:00
|
|
|
continue;
|
2012-12-26 19:47:09 +00:00
|
|
|
|
2013-07-22 01:13:55 +00:00
|
|
|
GELightType type = gstate.getLightType(i);
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-06-20 21:30:21 +00:00
|
|
|
if (type == GE_LIGHTTYPE_DIRECTIONAL) {
|
|
|
|
// We prenormalize light positions for directional lights.
|
2013-06-24 17:11:04 +00:00
|
|
|
WRITE(p, " toLight = u_lightpos%i;\n", i);
|
2013-06-20 21:30:21 +00:00
|
|
|
} else {
|
2013-05-19 12:45:56 +00:00
|
|
|
WRITE(p, " toLight = u_lightpos%i - worldpos;\n", i);
|
2013-05-22 13:44:15 +00:00
|
|
|
WRITE(p, " distance = length(toLight);\n");
|
|
|
|
WRITE(p, " toLight /= distance;\n");
|
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-07-22 01:13:55 +00:00
|
|
|
bool doSpecular = gstate.isUsingSpecularLight(i);
|
|
|
|
bool poweredDiffuse = gstate.isUsingPoweredDiffuseLight(i);
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2012-12-20 17:31:21 +00:00
|
|
|
if (poweredDiffuse) {
|
2013-06-24 17:11:04 +00:00
|
|
|
WRITE(p, " mediump float dot%i = pow(dot(toLight, worldnormal), u_matspecular.a);\n", i);
|
2013-05-19 12:45:56 +00:00
|
|
|
} else {
|
2013-06-24 17:11:04 +00:00
|
|
|
WRITE(p, " mediump float dot%i = dot(toLight, worldnormal);\n", i);
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
2012-12-26 19:47:09 +00:00
|
|
|
|
2013-05-22 13:44:15 +00:00
|
|
|
const char *timesLightScale = " * lightScale";
|
2013-05-19 11:51:46 +00:00
|
|
|
|
2013-04-09 16:25:22 +00:00
|
|
|
// Attenuation
|
|
|
|
switch (type) {
|
|
|
|
case GE_LIGHTTYPE_DIRECTIONAL:
|
2013-05-22 13:44:15 +00:00
|
|
|
timesLightScale = "";
|
2013-04-09 16:25:22 +00:00
|
|
|
break;
|
|
|
|
case GE_LIGHTTYPE_POINT:
|
2013-05-19 12:36:07 +00:00
|
|
|
WRITE(p, " lightScale = clamp(1.0 / dot(u_lightatt%i, vec3(1.0, distance, distance*distance)), 0.0, 1.0);\n", i);
|
2013-04-09 16:25:22 +00:00
|
|
|
break;
|
|
|
|
case GE_LIGHTTYPE_SPOT:
|
2013-05-30 13:29:47 +00:00
|
|
|
WRITE(p, " lowp float angle%i = dot(normalize(u_lightdir%i), toLight);\n", i, i);
|
2013-04-09 16:25:22 +00:00
|
|
|
WRITE(p, " if (angle%i >= u_lightangle%i) {\n", i, i);
|
2013-05-19 12:36:07 +00:00
|
|
|
WRITE(p, " lightScale = clamp(1.0 / dot(u_lightatt%i, vec3(1.0, distance, distance*distance)), 0.0, 1.0) * pow(angle%i, u_lightspotCoef%i);\n", i, i, i);
|
|
|
|
WRITE(p, " } else {\n");
|
|
|
|
WRITE(p, " lightScale = 0.0;\n");
|
2013-05-30 13:29:47 +00:00
|
|
|
WRITE(p, " }\n");
|
2013-04-09 16:25:22 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// ILLEGAL
|
|
|
|
break;
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
2013-04-09 16:25:22 +00:00
|
|
|
|
2013-05-19 12:45:56 +00:00
|
|
|
WRITE(p, " diffuse = (u_lightdiffuse%i * %s) * max(dot%i, 0.0);\n", i, diffuseStr, i);
|
2012-12-20 17:31:21 +00:00
|
|
|
if (doSpecular) {
|
2013-07-27 16:16:32 +00:00
|
|
|
WRITE(p, " dot%i = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);\n", i);
|
2012-12-20 17:31:21 +00:00
|
|
|
WRITE(p, " if (dot%i > 0.0)\n", i);
|
2013-05-19 12:45:56 +00:00
|
|
|
WRITE(p, " lightSum1 += u_lightspecular%i * %s * (pow(dot%i, u_matspecular.a) %s);\n", i, specularStr, i, timesLightScale);
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
2013-06-05 05:54:19 +00:00
|
|
|
WRITE(p, " lightSum0.rgb += (u_lightambient%i * %s.rgb + diffuse)%s;\n", i, ambientStr, timesLightScale);
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-03-27 10:21:02 +00:00
|
|
|
if (gstate.isLightingEnabled()) {
|
2012-12-20 13:10:42 +00:00
|
|
|
// Sum up ambient, emissive here.
|
|
|
|
if (lmode) {
|
2013-05-19 12:23:17 +00:00
|
|
|
WRITE(p, " v_color0 = clamp(lightSum0, 0.0, 1.0);\n");
|
|
|
|
// v_color1 only exists when lmode = 1.
|
2013-05-19 12:36:07 +00:00
|
|
|
if (specularIsZero) {
|
2013-05-19 12:23:17 +00:00
|
|
|
WRITE(p, " v_color1 = vec3(0.0);\n");
|
|
|
|
} else {
|
|
|
|
WRITE(p, " v_color1 = clamp(lightSum1, 0.0, 1.0);\n");
|
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
} else {
|
2013-05-19 12:36:07 +00:00
|
|
|
if (specularIsZero) {
|
2013-05-19 12:23:17 +00:00
|
|
|
WRITE(p, " v_color0 = clamp(lightSum0, 0.0, 1.0);\n");
|
|
|
|
} else {
|
|
|
|
WRITE(p, " v_color0 = clamp(clamp(lightSum0, 0.0, 1.0) + vec4(lightSum1, 0.0), 0.0, 1.0);\n");
|
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Lighting doesn't affect color.
|
|
|
|
if (hasColor) {
|
2012-12-20 17:31:21 +00:00
|
|
|
WRITE(p, " v_color0 = a_color0;\n");
|
2012-12-26 19:47:09 +00:00
|
|
|
} else {
|
2013-01-12 00:24:05 +00:00
|
|
|
WRITE(p, " v_color0 = u_matambientalpha;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
if (lmode)
|
2013-03-27 10:21:02 +00:00
|
|
|
WRITE(p, " v_color1 = vec3(0.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Step 3: UV generation
|
|
|
|
if (doTexture) {
|
2013-07-27 21:21:48 +00:00
|
|
|
bool prescale = g_Config.bPrescaleUV && !throughmode && gstate.getTextureFunction() == 0;
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
switch (gstate.getUVGenMode()) {
|
|
|
|
case 0: // Scale-offset. Easy.
|
2013-07-27 21:21:48 +00:00
|
|
|
if (prescale) {
|
|
|
|
WRITE(p, " v_texcoord = a_texcoord;\n");
|
|
|
|
} else {
|
|
|
|
WRITE(p, " v_texcoord = a_texcoord * u_uvscaleoffset.xy + u_uvscaleoffset.zw;\n");
|
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // Projection mapping.
|
2013-05-19 22:15:15 +00:00
|
|
|
{
|
2013-07-27 22:18:41 +00:00
|
|
|
std::string temp_tc;
|
2013-05-19 22:15:15 +00:00
|
|
|
switch (gstate.getUVProjMode()) {
|
|
|
|
case 0: // Use model space XYZ as source
|
|
|
|
temp_tc = "vec4(a_position.xyz, 1.0)";
|
|
|
|
break;
|
|
|
|
case 1: // Use unscaled UV as source
|
2013-07-27 22:18:41 +00:00
|
|
|
{
|
|
|
|
static const char *rescaleuv[4] = {"", " * 1.9921875", " * 1.999969482421875", ""}; // 2*127.5f/128.f, 2*32767.5f/32768.f, 1.0f};
|
|
|
|
const char *factor = rescaleuv[(vertType & GE_VTYPE_TC_MASK) >> GE_VTYPE_TC_SHIFT];
|
|
|
|
temp_tc = StringFromFormat("vec4(a_texcoord.xy %s, 0.0, 1.0)", factor);
|
|
|
|
}
|
2013-05-19 22:15:15 +00:00
|
|
|
break;
|
|
|
|
case 2: // Use normalized transformed normal as source
|
|
|
|
if (hasNormal)
|
|
|
|
temp_tc = "vec4(normalize(a_normal), 1.0)";
|
|
|
|
else
|
|
|
|
temp_tc = "vec4(0.0, 0.0, 1.0, 1.0)";
|
|
|
|
break;
|
|
|
|
case 3: // Use non-normalized transformed normal as source
|
|
|
|
if (hasNormal)
|
|
|
|
temp_tc = "vec4(a_normal, 1.0)";
|
|
|
|
else
|
|
|
|
temp_tc = "vec4(0.0, 0.0, 1.0, 1.0)";
|
|
|
|
break;
|
|
|
|
}
|
2013-07-27 22:18:41 +00:00
|
|
|
WRITE(p, " v_texcoord = (u_texmtx * %s).xyz * vec3(u_uvscaleoffset.xy, 1.0);\n", temp_tc.c_str());
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2013-04-17 19:41:47 +00:00
|
|
|
// Transform by texture matrix. XYZ as we are doing projection mapping.
|
2012-12-20 13:10:42 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // Shade mapping - use dots from light sources.
|
2013-07-09 23:22:15 +00:00
|
|
|
WRITE(p, " v_texcoord = u_uvscaleoffset.xy * vec2(1.0 + dot(normalize(u_lightpos%i), worldnormal), 1.0 - dot(normalize(u_lightpos%i), worldnormal)) * 0.5;\n", gstate.getUVLS0(), gstate.getUVLS1());
|
2012-12-20 13:10:42 +00:00
|
|
|
break;
|
|
|
|
|
2012-12-26 19:47:09 +00:00
|
|
|
case 3:
|
2012-12-20 13:10:42 +00:00
|
|
|
// ILLEGAL
|
|
|
|
break;
|
|
|
|
}
|
2013-03-27 10:21:02 +00:00
|
|
|
|
2013-07-01 00:12:43 +00:00
|
|
|
if (flipV)
|
2013-07-06 20:49:58 +00:00
|
|
|
WRITE(p, " v_texcoord.y = 1.0 - v_texcoord.y;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2013-06-24 17:11:04 +00:00
|
|
|
|
|
|
|
// Compute fogdepth
|
|
|
|
if (enableFog)
|
|
|
|
WRITE(p, " v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;\n");
|
2012-11-28 12:45:22 +00:00
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
WRITE(p, "}\n");
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
|