Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6659981
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:05:53+00:00 2026-05-26T02:05:53+00:00

I’m trying to implement some shaders from online tutorials (lighthouse3d.com) in my OpenGL ES

  • 0

I’m trying to implement some shaders from online tutorials (lighthouse3d.com) in my OpenGL ES 2.0 engine.

The problem is that for some reason, ANY variables declared in the scope of main() causes the entire shader to fail. for example, this fails:

void main(){
    vec4 color;     
    gl_FragColor = vec4(1.0, 0.5, 0.5, 1.0);
}

but this works perfectly:

void main(){
    //vec4 color;       
    gl_FragColor = vec4(1.0, 0.5, 0.5, 1.0);
}

Same thing happens with my vertex shaders.(EDIT:nvm, only seems to happen with fragment shaders) The only way to use any type of non-constant value is to use attributes, varyings, uniforms, etc. for example, this works as you would expect:

uniform sampler2D texture;
varying lowp vec4 fragcol;
varying lowp vec2 texco;

void main(){
    gl_FragColor = fragcol * texture2D(texture, texco);
}

Also, I’m having a hell of a lot of trouble trying to find documentation or resources specifically about GLSL ES (or whatever this version is called). All I’ve been able to find is this: http://old.siggraph.org/publications/2006cn/course16/KhronosSpecs/ESLanguageSpec1.10.11.pdf

This is all I could find related to variable declarations:

[snip]There are no default types. All variable and function declarations
must have a declared type, and optionally qualifiers. A variable is
declared by specifying its type followed by one or more names
separated by commas.[snip]

And that is exactly what I did:

declared type: vec4

followed by one or more names: color;

vec4 color

I’m clueless

EDIT:
GLES20.glGetError() gives error 1282

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T02:05:53+00:00Added an answer on May 26, 2026 at 2:05 am

    GLSL ES differs from traditional GLSL in that it requires precision modifiers in order to specify a full type. Have you tried, e.g.:

    void main(){
        lowp vec4 color;     
        gl_FragColor = vec4(1.0, 0.5, 0.5, 1.0);
    }
    

    You can also throw something like this into the top of a source file:

    precision highp float;
    

    To set the default precision, so you can omit it later on.

    To get detailed information about an error compiling GLSL, you can use glGetProgramInfoLog (with assistance from glGetProgramiv). Most GL implementations return a meaningful error and a line number. I’m sadly backward with Java, but in C you might do:

        glCompileShader(shader);
    
        // check whether compilation was successful; if not
        // then dump the log to the console
        GLint status;
        glGetShaderiv(shader, GL_COMPILE_STATUS, &status);
        if(!status)
        {
            GLint logLength;
            glGetShaderiv(shader, GL_INFO_LOG_LENGTH, &logLength);
            if (logLength > 0)
            {
                GLchar *log = (GLchar *)malloc(logLength);
                glGetShaderInfoLog(shader, logLength, &logLength, log);
                printf("Shader compile log:\n%s", log);
                free(log);
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I am currently running into a problem where an element is coming back from
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.