The OpenGL ES specification page about the GLSL function modf() indicates that it should be supported by version 3.0, and not by version 1.0.
What about version 2.0? Does it support it?
Is modf() supported in OpenGL ES 2.0 Shader Language?
879 Views Asked by wip At
1
There are 1 best solutions below
Related Questions in OPENGL-ES-2.0
- Page Curl with best quality
- OpenGL ES 2.0 Framebuffer with render to texture iOS: nothing shown
- Generating a sphere in OpenGL without high level libraries - what's wrong with my code?
- Issue with Google Maps toScreenLocation() method Android
- iPhone OpenGL ES 2.0 render to texture multiplies color values rather than adding them
- OpenGL framebuffer android without GL_OES_packed_depth_stencil (on Nexus 7 2012)
- Fastest way to draw sprites in opengles 2.0 on android
- Android OpenGL es 2.0 Can not reload textures on object.
- Is this GLSL program correct? My cubes are solid black
- Multiple objects with same texture
- Blur frame buffer content
- GLSL noise function on devices with no high precision fragment shader
- getting youtube video surface texture onto a graphical surface
- Alpha channel in OpenGL shaders
- Shader looks terrible on iOS but fine on Windows
Related Questions in GLSLES
- Is there a performance penalty for enabling OpenGL ES extensions?
- Shader looks terrible on iOS but fine on Windows
- Save world transform for the same model in multiple pass rendering
- GLSL Circle gets eliptical on Rendering on screen?
- Parralax mapping does not work correctly using OpenGL and GLSL
- OpenGL ES 3.0 matrix array only using first matrix
- GLSL (ES 3.0): reference a uniform using another uniform's location and an offset
- Shadow mapping does not work correctly using GLSL and OpenGL
- GLSL ES 3.0 - uniform in both vertex and fragment shader, and max vertex/fragment uniform vectors
- Learning GLSL from glsl.heroku.com
- Quality loss (bluriness) in shader
- OpenGL ES3 Shadow map problems
- How do you pack one 32 bit integers into 4, 8bit ints in GLSL / WebGL?
- Float modulo operator that includes the upper value
- How can I get more helpful GLSL compilation errors?
Related Questions in FMODF
- Does fmodf() cause a hardfault in stm32?
- Where in the C++11 standard is std::fmodf stated?
- Equivalent of fmodf in C#?
- Objective C: Creating Long Double uses Decimal Method
- float fmodf(float_x, float_y) function, math.h, c++
- Is modf() supported in OpenGL ES 2.0 Shader Language?
- Is this a correct way of doing this in C?
- Can I pass NULL to modf/modff?
- Java 1.6.0_45 on Solaris 9 returns relocation error "symbol __fmodf: referenced symbol not found"
- fmod telling me fractional part of 1 is 1
- modf returns 1 as the fractional:
- Best way to get the Fractional Part of a Number
- Issue with fmodf for getting the Modulo
- modf does not work properly
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There is no version 2.0 of the Shading language accompanying any of the GLSL ES specifications. There is only 1.0x and 3.x. If your question then is, "is modf supported in versions lower than 3.0", it is not supported.